ExternalStream.st
author Stefan Vogel <sv@exept.de>
Wed, 25 Apr 2018 15:27:19 +0200
changeset 22709 ac3bd46e88b9
parent 22697 e840d7085b3e
child 22713 a92c5ffef073
permissions -rw-r--r--
#BUGFIX by stefan class: ExternalStream class changed: #closeFiles https://expeccoalm.exept.de/D252305 do not close Stdin, Stdout and Stderr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
     1
"{ Encoding: utf8 }"
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
     2
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     3
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     4
 COPYRIGHT (c) 1988 by Claus Gittinger
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
     5
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    13
"
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
    14
"{ Package: 'stx:libbasic' }"
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
    15
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
    16
"{ NameSpace: Smalltalk }"
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
    17
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    18
ReadWriteStream subclass:#ExternalStream
18929
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    19
	instanceVariableNames:'handleType handle mode buffered binary eolMode hitEOF didWrite
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    20
		lastErrorNumber readAhead'
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    21
	classVariableNames:'Lobby LastErrorNumber InvalidReadSignal InvalidWriteSignal
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    22
		InvalidModeSignal OpenErrorSignal StreamNotOpenSignal
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    23
		InvalidOperationSignal DefaultEOLMode ReadMode ReadWriteMode
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    24
		WriteMode AppendMode CreateReadWriteMode StreamIOErrorSignal
21337
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
    25
		FileOpenTrace MaxNonTenurableExecutors DefaultCopyBufferSize'
18929
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    26
	poolDictionaries:''
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    27
	category:'Streams-External'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    28
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    29
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    30
!ExternalStream primitiveDefinitions!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    31
%{
10328
ad731a7584a3 ensure that win32_fwrite is used for stdout and stderr
Claus Gittinger <cg@exept.de>
parents: 9053
diff changeset
    32
#undef fwrite
ad731a7584a3 ensure that win32_fwrite is used for stdout and stderr
Claus Gittinger <cg@exept.de>
parents: 9053
diff changeset
    33
17078
f3ded8a6f9d9 include os defss
Claus Gittinger <cg@exept.de>
parents: 16912
diff changeset
    34
#include "stxOSDefs.h"
f3ded8a6f9d9 include os defss
Claus Gittinger <cg@exept.de>
parents: 16912
diff changeset
    35
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    36
#include <stdio.h>
437
claus
parents: 436
diff changeset
    37
#define _STDIO_H_INCLUDED_
claus
parents: 436
diff changeset
    38
2903
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    39
#ifndef NO_FCNTL_H
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    40
# include <fcntl.h>
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    41
# define _FCNTL_H_INCLUDED_
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    42
#endif
437
claus
parents: 436
diff changeset
    43
10
claus
parents: 5
diff changeset
    44
#include <errno.h>
437
claus
parents: 436
diff changeset
    45
#define _ERRNO_H_INCLUDED_
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    46
1141
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    47
#ifdef LINUX
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    48
  /* use inline string macros */
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    49
# define __STRINGDEFS__
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    50
# include <linuxIntern.h>
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    51
#endif
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    52
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
    53
#if !defined(MSDOS_LIKE) && !defined(__openVMS__)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
    54
# include <termios.h>
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
    55
#endif
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
    56
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    57
#ifdef hpux
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    58
# define fileno(f)      ((f->__fileH << 8) | (f->__fileL))
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    59
#endif
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    60
933
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    61
#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
    62
# 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
    63
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    64
#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
    65
# 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
    66
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    67
#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
    68
# 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
    69
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    70
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
    71
#if defined(__VMS__) || defined(__sparc__) || defined(__win32__)
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
    72
# define CLEAR_ERRNO            __threadErrno = 0;
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    73
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
    74
# define CLEAR_ERRNO            /* nothing */
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    75
#endif
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    76
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    77
#ifdef LATER
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    78
# define __isFilePointer(x)      (__Class(x) == ExternalStream__FilePointer)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    79
# define __CHANGECLASS(o, x)     (__qClass(o) = (x), o)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    80
# define __MKFILEPOINTER(f)      __CHANGECLASS(__MKEXTERNALADDRESS(f), ExternalStream__FilePointer)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    81
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    82
# define __MKFILEPOINTER(f)      __MKEXTERNALADDRESS(f)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    83
#endif
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    84
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
    85
#ifdef __win32__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    86
# define NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    87
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    88
# undef __HANDLE_INTERRUPTS__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    89
# define __HANDLE_INTERRUPTS__    /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    90
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    91
# undef __BEGIN_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    92
# define __BEGIN_INTERRUPTABLE__  /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    93
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    94
# undef __END_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    95
# define __END_INTERRUPTABLE__    /* nothing */
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
    96
#endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
    97
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
    98
# ifdef __i386__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    99
#  define _X86_
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   100
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   101
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
   102
#ifdef __win32__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   103
# undef INT
14644
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   104
# undef UINT
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   105
# undef Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   106
# undef Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   107
# undef Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   108
# undef Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   109
# undef Rectangle
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   110
# undef Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   111
# undef Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   112
# undef Date
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   113
# undef Delay
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   114
# undef Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   115
# undef Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   116
# undef Context
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   117
# undef Message
9024
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   118
# undef Process
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   119
# undef Processor
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   120
# undef String
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   121
# undef Character
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   122
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   123
# define NOATOM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   124
# define NOGDICAPMASKS
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   125
# define NOMETAFILE
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   126
# define NOMINMAX
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
   127
//# define NOOPENFILE
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   128
# define NOSOUND
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   129
# define NOWH
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   130
//# define NOCOMM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   131
# define NOKANJI
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   132
# define NOCRYPT
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   133
//# define NOMCX
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   134
# define WIN32_LEAN_AND_MEAN
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   135
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   136
# include <windows.h>
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
   137
# include <winsock2.h>
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   138
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   139
# ifdef __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   140
#  define Array __DEF_Array
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_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   143
#  define Number __DEF_Number
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_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   146
#  define Method __DEF_Method
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_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   149
#  define Point __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   150
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   151
# ifdef __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   152
#  define Block __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   153
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   154
# ifdef __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   155
#  define Time __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   156
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   157
# ifdef __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   158
#  define Date __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
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_Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   161
#  define Set __DEF_Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   162
# endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   163
# ifdef __DEF_Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   164
#  define Signal __DEF_Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   165
# endif
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   166
# ifdef __DEF_Delay
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   167
#  define Delay __DEF_Delay
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   168
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   169
# ifdef __DEF_Context
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   170
#  define Context __DEF_Context
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   171
# endif
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   172
# ifdef __DEF_Message
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   173
#  define Message __DEF_Message
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   174
# endif
9024
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   175
# ifdef __DEF_Process
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   176
#  define Process __DEF_Process
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   177
# endif
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   178
# ifdef __DEF_Processor
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   179
#  define Processor __DEF_Processor
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   180
# endif
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   181
# ifdef __DEF_String
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   182
#  define String __DEF_String
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   183
# endif
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   184
# ifdef __DEF_Character
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   185
#  define Character __DEF_Character
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   186
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   187
14644
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   188
# define INT    STX_INT
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   189
# define UINT   STX_UINT
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   190
# ifndef off_t
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   191
#  define off_t  long
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   192
# endif
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
   193
#endif /* __win32__ */
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   194
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   195
#ifndef NO_STDIO /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   196
# define STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   197
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   198
# define READ(f, cp, n)         read(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   199
# define WRITE(f, cp, n)        write(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   200
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   201
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   202
#endif /* use STDIO */
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   203
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   204
#ifdef DEBUGGING
4092
fee552eb3418 removed win32 stuff
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   205
  extern char *__survStartPtr, *__survEndPtr;
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   206
# define DEBUGBUFFER(buf)  \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   207
    if (((char *)(buf) >= __survStartPtr) \
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   208
     && ((char *)(buf) < __survEndPtr)) { \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   209
	__fatal0("read into survivor\n"); \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   210
    }
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   211
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   212
#else
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   213
# define DEBUGBUFFER(buf) /* nothing */
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   214
#endif
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   215
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   216
/*
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   217
 * stdio library requires an fseek before reading whenever a file
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   218
 * is open for read/write and the last operation was a write.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   219
 * (also vice-versa).
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   220
 * All code should use the following macro before doing reads:
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   221
 */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   222
#ifdef STDIO_NEEDS_FSEEK
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   223
# 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
   224
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   225
# 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
   226
#endif
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   227
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
   228
#ifdef __win32__
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   229
#  define READ(ret, f, cp, n, handleType) { \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   230
	if (handleType == @symbol(socketHandle)) { \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   231
	  (ret) = __STX_WSA_NOINT_CALL4("recv", recv, (f), (cp), (n), 0); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   232
	} else { \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   233
	  HANDLE h = _get_osfhandle(fileno(f)); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   234
	  if (handleType == @symbol(socketFilePointer)) { \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   235
	    (ret) = __STX_WSA_NOINT_CALL4("recv", recv, h, (cp), (n), 0);\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   236
	  } else { \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   237
	    int __res; \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   238
	    (ret) = __STX_API_NOINT_CALL5("ReadFile", ReadFile, h, (cp), (n), &__res, 0);\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   239
	    (ret) = (ret) > 0 ? __res : (__threadErrno == __WIN32_ERR(ERROR_BROKEN_PIPE) ? 0 : -1); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   240
	  } \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   241
	} \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   242
      }
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   243
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   244
#  define WRITE(ret, f, cp, n, handleType) { \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   245
	if (handleType == @symbol(socketHandle)) { \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   246
	  (ret) = __STX_WSA_NOINT_CALL4("send", send, (f), (cp), (n), 0); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   247
	} else {\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   248
	  HANDLE h = _get_osfhandle(fileno(f)); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   249
	  if (handleType == @symbol(socketFilePointer)) { \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   250
	    (ret) = __STX_WSA_NOINT_CALL4("send", send, h, (cp), (n), 0);\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   251
	  } else {\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   252
	    int __res; \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   253
	    (ret) = __STX_API_NOINT_CALL5("WriteFile", WriteFile, h, (cp), (n), &__res, 0);\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   254
	    (ret) = (ret) ? __res : -1; \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   255
	  } \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   256
	} \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   257
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   258
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   259
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   260
# undef STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   261
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   262
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   263
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   264
# define __READING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   265
    if ((__INST(didWrite) != false)              \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   266
     && (__INST(mode) == @symbol(readwrite))) {  \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   267
	__INST(didWrite) = false;                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   268
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   269
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   270
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   271
# define __WRITING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   272
    if ((__INST(didWrite) != true)               \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   273
     && (__INST(mode) == @symbol(readwrite))) {  \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   274
	__INST(didWrite) = true;                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   275
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   276
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   277
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   278
# define __UNGETC__(c, f, isBuffered)                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   279
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   280
	ungetc((c), (f));                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   281
    } else {                                            \
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   282
      __INST(readAhead) = __mkSmallInteger((c));        \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   283
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   284
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   285
# define __READBYTE__(ret, f, buf, isBuffered, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   286
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   287
	for (;;) {                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   288
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   289
	    (ret) = getc(f);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   290
	    if ((ret) >= 0) {                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   291
		*(buf) = (ret);                         \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   292
		(ret) = 1;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   293
	    } else if (ferror(f)) {                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   294
		if (__threadErrno == EINTR) {           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   295
		    clearerr(f);                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   296
		    continue;                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   297
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   298
	    } else {                                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   299
		(ret) = 0;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   300
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   301
	    break;                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   302
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   303
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   304
	OBJ rA = __INST(readAhead);                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   305
	if (rA != nil) {                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   306
	    *(buf) = (char)__intVal(rA);                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   307
	    __INST(readAhead) = nil;                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   308
	    (ret) = 1;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   309
	} else {                                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   310
	    for (;;) {                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   311
		CLEAR_ERRNO;                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   312
		READ((ret), f, buf, 1, handleType);       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   313
		if ((ret) >= 0 || __threadErrno != EINTR) \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   314
		    break;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   315
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   316
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   317
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   318
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   319
  /*
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   320
   * read_bytes into a c-buffer
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   321
   * (which may NOT move)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   322
   */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   323
# define __READBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   324
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   325
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   326
	int __offs = 0;                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   327
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   328
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   329
	    (ret) = getc(f);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   330
	    if ((ret) < 0) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   331
		if (ferror(f)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   332
		    if (__threadErrno == EINTR) {       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   333
			clearerr(f);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   334
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   335
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   336
		} else {                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   337
		    (ret) = 0;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   338
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   339
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   340
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   341
	    (buf)[__offs++] = (ret);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   342
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   343
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   344
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   345
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   346
	int __offs = 0;                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   347
							\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   348
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   349
	    OBJ rA = __INST(readAhead);                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   350
	    if (rA != nil) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   351
		(buf)[__offs] = __intVal(rA);           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   352
		__INST(readAhead) = nil;                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   353
		(ret) = 1;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   354
	    } else {                                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   355
		CLEAR_ERRNO;                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   356
		READ((ret), f, (buf)+__offs, (cnt)-__offs, handleType); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   357
		if ((ret) <= 0) {                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   358
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   359
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   360
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   361
		    break;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   362
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   363
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   364
	    __offs += (ret);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   365
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   366
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   367
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   368
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   369
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   370
# define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   371
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   372
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   373
    int oldFlags;                                       \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   374
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   375
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   376
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   377
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   378
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   379
	    (ret) = getc(f);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   380
	    if ((ret) < 0) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   381
		if (ferror(f)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   382
		    if (__threadErrno == EINTR) {       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   383
			clearerr(f);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   384
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   385
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   386
		} else {                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   387
		    (ret) = 0;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   388
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   389
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   390
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   391
	    (buf)[__offs++] = (ret);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   392
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   393
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   394
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   395
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   396
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   397
	    OBJ rA = __INST(readAhead);                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   398
	    if (rA != nil) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   399
		(buf)[__offs] = __intVal(rA);           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   400
		__INST(readAhead) = nil;                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   401
		(ret) = 1;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   402
		__offs ++;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   403
		continue;                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   404
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   405
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   406
	    {                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   407
	      int res = -1, ok = 0;                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   408
	      SOCKET sock = 0;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   409
	      if ((handleType == @symbol(socketFilePointer) && ((ok = ioctlsocket(sock = (SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res) == 0), 1)) \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   410
		  || (handleType == @symbol(socketHandle) && ((ok = ioctlsocket(sock = (SOCKET)(f), FIONREAD, &res) == 0), 1)) \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   411
		  || (handleType == @symbol(pipeFilePointer) && ((ok = PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)), 1))) { \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   412
		   if (!ok) {                                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   413
			__threadErrno = sock ? WSAGetLastError() : __WIN32_ERR(GetLastError()); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   414
			(ret) = __threadErrno == __WIN32_ERR(ERROR_BROKEN_PIPE) ? 0 : -1;   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   415
			break;                                                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   416
		   }                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   417
		  if (res > 0) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   418
		      if (res > ((cnt)-__offs))         \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   419
			  res = (cnt)-__offs;           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   420
		      READ((ret), f, (buf)+__offs, res, handleType); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   421
		  } else {                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   422
		      if (sock && send(sock, NULL, 0, 0) == SOCKET_ERROR) {     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   423
			(ret) = -1; __threadErrno = WSAGetLastError();          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   424
		      } else {                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   425
			(ret) = 0;                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   426
		      }                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   427
		      break;                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   428
		  }                                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   429
	      } else {                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   430
		  READ((ret), f, (buf)+__offs, (cnt)-__offs, handleType); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   431
	      }                                         \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   432
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   433
	    if ((ret) <= 0) {                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   434
		if ((ret) < 0 && __threadErrno == EINTR)\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   435
		    continue;                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   436
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   437
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   438
	    __offs += (ret);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   439
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   440
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   441
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   442
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   443
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   444
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   445
# define IO_BUFFER_SIZE        (8*1024)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   446
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   447
# 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
   448
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   449
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   450
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   451
    char *buf = (char *)(obj);                          \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   452
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   453
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   454
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   455
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   456
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   457
	    (ret) = getc(f);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   458
	    if ((ret) < 0) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   459
		if (ferror(f)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   460
		    if (__threadErrno == EINTR) {       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   461
			clearerr(f);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   462
			/* refetch */                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   463
			buf = (char *)(obj);            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   464
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   465
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   466
		} else {                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   467
		    (ret) = 0;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   468
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   469
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   470
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   471
	    (buf)[__ooffs+__offs] = (ret);              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   472
	    __offs++;                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   473
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   474
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   475
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   476
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   477
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   478
	    char __buf[IO_BUFFER_SIZE];                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   479
	    OBJ rA = __INST(readAhead);                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   480
	    if (rA != nil) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   481
		(buf)[__ooffs+__offs] = __intVal(rA);   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   482
		__INST(readAhead) = nil;                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   483
		(ret) = 1;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   484
	    } else {                                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   485
		int l;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   486
		CLEAR_ERRNO;                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   487
		l = (cnt)-__offs;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   488
		if ( l > IO_BUFFER_SIZE)                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   489
		  l = IO_BUFFER_SIZE;                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   490
		READ((ret),f, __buf, l, handleType);    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   491
		if ((ret) <= 0) {                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   492
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   493
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   494
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   495
		    break;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   496
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   497
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   498
	    if ((ret) > 0 ) {                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   499
		/* refetch */                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   500
		buf = (char *)(obj);                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   501
		memcpy((buf)+__ooffs+__offs,__buf,(ret));   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   502
		__offs += (ret);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   503
	    } else {                                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   504
		(ret) = 0;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   505
	    }                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   506
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   507
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   508
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   509
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   510
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   511
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   512
# 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
   513
  {                                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   514
    int __ooffs = obj_offs;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   515
    int __offs = 0;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   516
    char *buf = (char *)(obj);                       \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   517
						     \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   518
    (ret) = 0;                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   519
    if (isBuffered) {                                \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   520
	while (__offs < (cnt)) {                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   521
	    CLEAR_ERRNO;                             \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   522
	    (ret) = getc(f);                         \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   523
	    if ((ret) < 0) {                         \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   524
		if (ferror(f)) {                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   525
		    if (__threadErrno == EINTR) {    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   526
			clearerr(f);                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   527
			/* refetch */                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   528
			buf = (char *)(obj);         \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   529
			continue;                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   530
		    }                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   531
		} else {                             \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   532
		    (ret) = 0;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   533
		}                                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   534
		break;                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   535
	    }                                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   536
	    (buf)[__ooffs+__offs] = (ret);           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   537
	    __offs++;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   538
	}                                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   539
	if (__offs > 0)                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   540
	    (ret) = __offs;                          \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   541
    } else {                                         \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   542
	while (__offs < (cnt)) {                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   543
	    char __buf[IO_BUFFER_SIZE];              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   544
	    OBJ rA = __INST(readAhead);              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   545
	    if (rA != nil) {                         \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   546
		(buf)[__ooffs+__offs] = __intVal(rA);\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   547
		__INST(readAhead) = nil;             \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   548
		(ret) = 1;                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   549
		__offs++;                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   550
		continue;                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   551
	    }                                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   552
	    {                                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   553
		int res = -1, ok = 0;                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   554
		SOCKET sock = 0;                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   555
		int l = (cnt)-__offs;                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   556
		CLEAR_ERRNO;                         \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   557
		if (l > IO_BUFFER_SIZE) l = IO_BUFFER_SIZE;              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   558
		if ((handleType == @symbol(socketFilePointer) && ((ok = ioctlsocket(sock = (SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res) == 0), 1)) \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   559
		    || (handleType == @symbol(socketHandle) && ((ok = ioctlsocket(sock = (SOCKET)(f), FIONREAD, &res) == 0), 1)) \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   560
		    || (handleType == @symbol(pipeFilePointer) && ((ok = PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)), 1))) { \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   561
		   if (!ok) {                                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   562
			__threadErrno = sock ? WSAGetLastError() : __WIN32_ERR(GetLastError()); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   563
			(ret) = __threadErrno == __WIN32_ERR(ERROR_BROKEN_PIPE) ? 0 : -1;   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   564
			break;                                                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   565
		   }                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   566
		   if (res > 0) {                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   567
			if (res > l) res = l;       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   568
			READ((ret), f, __buf, res, handleType); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   569
		   } else {                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   570
		       if (sock && send(sock, NULL, 0, 0) == SOCKET_ERROR) {     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   571
			 (ret) = -1; __threadErrno = WSAGetLastError();          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   572
		       } else {                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   573
			 (ret) = 0;                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   574
		       }                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   575
		       break;                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   576
		   }                                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   577
		} else {                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   578
		    READ((ret), f, __buf, l, handleType); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   579
		}                                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   580
		if ((ret) <= 0) {                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   581
		    if ((ret) < 0 && __threadErrno == EINTR) \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   582
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   583
		    break;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   584
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   585
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   586
	    if ((ret) > 0) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   587
		buf = (char *)(obj);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   588
		memcpy((buf)+__ooffs+__offs, __buf, (ret)); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   589
		__offs += (ret);                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   590
	    } else {                                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   591
		(ret) = 0;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   592
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   593
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   594
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   595
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   596
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   597
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   598
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   599
# define __WRITEBYTE__(ret, f, buf, isBuffered, handleType)         \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   600
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   601
	for (;;) {                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   602
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   603
	    ret = putc(*(buf), f);                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   604
	    if ((ret) >= 0) {                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   605
		(ret) = 1;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   606
	    } else if (ferror(f)) {                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   607
		if (__threadErrno == EINTR) {           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   608
		    clearerr(f);                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   609
		    continue;                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   610
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   611
	    } else                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   612
		(ret) = 0;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   613
	    break;                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   614
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   615
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   616
	for (;;) {                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   617
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   618
	    WRITE(ret,f, buf, 1, handleType);           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   619
	    if ((ret) >= 0 || __threadErrno != EINTR)   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   620
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   621
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   622
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   623
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   624
# define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)   \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   625
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   626
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   627
	int __offs = 0;                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   628
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   629
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   630
	    (ret) = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   631
	    if ((ret) <= 0) {                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   632
		if (ferror(f)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   633
		    if (__threadErrno == EINTR) {       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   634
			clearerr(f);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   635
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   636
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   637
		    break;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   638
		} else {                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   639
		    (ret) = 0;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   640
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   641
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   642
	    __offs += (ret);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   643
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   644
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   645
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   646
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   647
	int __offs = 0;                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   648
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   649
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   650
	    WRITE((ret),f, (buf)+__offs, (cnt)-__offs, handleType);   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   651
	    if ((ret) <= 0) {                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   652
		if ((ret) < 0 && __threadErrno == EINTR) { \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   653
		    continue;                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   654
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   655
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   656
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   657
	    __offs += (ret);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   658
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   659
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   660
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   661
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   662
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   663
# 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
   664
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   665
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   666
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   667
    char *buf = (char *)(obj);                          \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   668
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   669
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   670
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   671
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   672
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   673
	    ret = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   674
	    if ((ret) <= 0) {                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   675
		if (ferror(f)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   676
		    if (__threadErrno == EINTR) {       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   677
			/* refetch */                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   678
			buf = (char *)(obj);            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   679
			clearerr(f);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   680
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   681
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   682
		    break;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   683
		} else {                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   684
		    (ret) = 0;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   685
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   686
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   687
	    __offs += (ret);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   688
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   689
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   690
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   691
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   692
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   693
	    char __buf[IO_BUFFER_SIZE];                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   694
	    int l;                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   695
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   696
	    l = (cnt)-__offs;                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   697
	    if ( l > IO_BUFFER_SIZE)                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   698
	      l = IO_BUFFER_SIZE;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   699
	    /* refetch */                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   700
	    buf = (char *)(obj);                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   701
	    memcpy(__buf,(buf)+__ooffs+__offs,l);       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   702
	    WRITE(ret,f, __buf, l, handleType);         \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   703
	    if ((ret) <= 0) {                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   704
		if ((ret) < 0 && __threadErrno == EINTR) { \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   705
		    continue;                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   706
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   707
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   708
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   709
	    __offs += (ret);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   710
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   711
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   712
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   713
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   714
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   715
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
   716
#else /* ! __win32__ */
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   717
/* ========================   UNIX / LINUX ====================================================== */
16373
9b9827530bf4 Adapt previous change for linux
Stefan Vogel <sv@exept.de>
parents: 16368
diff changeset
   718
typedef int SOCKET;
9b9827530bf4 Adapt previous change for linux
Stefan Vogel <sv@exept.de>
parents: 16368
diff changeset
   719
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   720
# define __READING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   721
    if ((__INST(didWrite) != false)              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   722
     && (__INST(mode) == @symbol(readwrite))) {  \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   723
	__INST(didWrite) = false;                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   724
	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
   725
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   726
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   727
# define __WRITING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   728
    if ((__INST(didWrite) != true)               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   729
     && (__INST(mode) == @symbol(readwrite))) {  \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   730
	__INST(didWrite) = true;                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   731
	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
   732
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   733
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   734
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   735
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   736
#  define __UNGETC__(c, f, isBuffered)                  \
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   737
    __INST(readAhead) = __mkSmallInteger((c));
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   738
# else /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   739
#  define __UNGETC__(c, f, isBuffered)                  \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   740
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   741
	ungetc((c), (f));                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   742
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   743
	__INST(readAhead) = __mkSmallInteger((c));          \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   744
    }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   745
# endif /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   746
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   747
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   748
#  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
   749
    {                                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   750
	OBJ rA = __INST(readAhead);                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   751
	if (rA != nil) {                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   752
	    *(buf) = __intVal(rA);                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   753
	    DEBUGBUFFER(buf);                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   754
	    __INST(readAhead) = nil;                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   755
	    (ret) = 1;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   756
	} else {                                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   757
	    for (;;) {                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   758
		CLEAR_ERRNO;                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   759
		(ret) = READ(f, buf, 1, handleType);    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   760
		DEBUGBUFFER(buf);                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   761
		if ((ret) >= 0) break;                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   762
		if (errno != EINTR) {                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   763
		    break;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   764
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   765
		__HANDLE_INTERRUPTS__;                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   766
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   767
	}                                               \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   768
    }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   769
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   770
#  define __READBYTE__(ret, f, buf, isBuffered, handleType)         \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   771
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   772
	for (;;) {                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   773
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   774
	    (ret) = getc(f);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   775
	    if ((ret) >= 0) {                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   776
		DEBUGBUFFER(buf);                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   777
		*(buf) = (ret);                         \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   778
		(ret) = 1;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   779
	    } else if (ferror(f)) {                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   780
		if (errno == EINTR) {                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   781
		    __HANDLE_INTERRUPTS__;              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   782
		    clearerr(f);                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   783
		    continue;                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   784
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   785
	    } else                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   786
		(ret) = 0;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   787
	    break;                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   788
	}                                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   789
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   790
	OBJ rA = __INST(readAhead);                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   791
	if (rA != nil) {                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   792
	    *(buf) = __intVal(rA);                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   793
	    DEBUGBUFFER(buf);                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   794
	    __INST(readAhead) = nil;                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   795
	    (ret) = 1;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   796
	} else {                                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   797
	    for (;;) {                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   798
		CLEAR_ERRNO;                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   799
		(ret) = read(fileno(f), buf, 1);        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   800
		DEBUGBUFFER(buf);                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   801
		if ((ret) >= 0) break;                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   802
		if (errno != EINTR) {                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   803
		    break;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   804
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   805
		__HANDLE_INTERRUPTS__;                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   806
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   807
	}                                               \
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   808
   }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   809
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   810
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   811
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   812
 * 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
   813
 * (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
   814
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   815
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   816
#  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
   817
    {                                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   818
	int __offs = 0, __cnt;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   819
							\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   820
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   821
	    OBJ rA = __INST(readAhead);                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   822
	    if (rA != nil) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   823
		(buf)[__offs] = __intVal(rA);           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   824
		DEBUGBUFFER(buf);                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   825
		__INST(readAhead) = nil;                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   826
		__offs++;                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   827
	    } else {                                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   828
		CLEAR_ERRNO;                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   829
		__cnt = READ(f, (buf)+__offs, (cnt)-__offs, handleType); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   830
		DEBUGBUFFER(buf);                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   831
		if (__cnt <= 0) {                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   832
		    if (__cnt < 0 && errno == EINTR) {  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   833
			__HANDLE_INTERRUPTS__;          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   834
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   835
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   836
		    break;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   837
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   838
		__offs += __cnt;                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   839
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   840
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   841
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   842
	    (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   843
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   844
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   845
#  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
   846
    (ret) = 0;                                          \
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   847
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   848
	int __offs = 0;                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   849
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   850
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   851
	    (ret) = getc(f);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   852
	    if ((ret) < 0) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   853
		if (ferror(f)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   854
		    if (errno == EINTR) {               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   855
			__HANDLE_INTERRUPTS__;          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   856
			clearerr(f);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   857
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   858
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   859
		} else {                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   860
		    (ret) = 0;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   861
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   862
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   863
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   864
	    DEBUGBUFFER(buf);                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   865
	    (buf)[__offs++] = (ret);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   866
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   867
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   868
	    (ret) = __offs;                             \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   869
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   870
	int __offs = 0, __cnt;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   871
	int fd = fileno(f);                             \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   872
							\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   873
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   874
	    OBJ rA = __INST(readAhead);                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   875
	    if (rA != nil) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   876
		DEBUGBUFFER(buf);                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   877
		(buf)[__offs] = __intVal(rA);           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   878
		__INST(readAhead) = nil;                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   879
		__offs++;                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   880
	    } else {                                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   881
		CLEAR_ERRNO;                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   882
		__cnt = read(fd, (buf)+__offs, (cnt)-__offs);  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   883
		DEBUGBUFFER(buf);                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   884
		if (__cnt <= 0) {                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   885
		    if (__cnt < 0 && errno == EINTR) {  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   886
			__HANDLE_INTERRUPTS__;          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   887
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   888
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   889
		    break;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   890
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   891
		__offs += __cnt;                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   892
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   893
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   894
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   895
	    (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   896
   }
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   897
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   898
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   899
/*
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   900
 * 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
   901
 */
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   902
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   903
#  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
   904
#   define SETFLAGS(fd, flags) \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   905
	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
   906
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   907
#   if defined(O_NONBLOCK)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   908
#    define __STX_NONBLOCK_FLAG O_NONBLOCK
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   909
#   else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   910
#    if defined(O_NDELAY)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   911
#     define __STX_NONBLOCK_FLAG O_NDELAY
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   912
#    else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   913
#     define __STX_NONBLOCK_FLAG FNDELAY
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   914
#    endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   915
#   endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   916
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   917
#   define SETNONBLOCKING(fd, oldFlags) \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   918
	{ \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   919
	    int flags = fcntl(fd, F_GETFL, 0); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   920
	    if (flags >= 0) { \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   921
		fcntl(fd, F_SETFL, flags | __STX_NONBLOCK_FLAG); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   922
	    } \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   923
	    oldFlags = flags; \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   924
	}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   925
#  else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   926
#   define SETFLAGS(fd, flags) /* nothing */
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   927
#   define SETNONBLOCKING(fd, oldFlags) /* nothing */
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   928
#  endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   929
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   930
#  define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered, handleType) \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   931
  {                                                     \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   932
    int __offs = 0, __cnt;                              \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   933
    int oldFlags;                                       \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   934
							\
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   935
    (ret) = 0;                                          \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   936
    SETNONBLOCKING(fileno(f), oldFlags);                \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   937
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   938
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   939
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   940
	    (ret) = getc(f);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   941
	    if ((ret) < 0) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   942
		if (ferror(f)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   943
		    if (errno == EINTR) {               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   944
			(ret) = 0;                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   945
			clearerr(f);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   946
			break;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   947
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   948
		} else {                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   949
		    (ret) = 0;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   950
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   951
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   952
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   953
	    (buf)[__offs++] = (ret);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   954
	    DEBUGBUFFER(buf);                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   955
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   956
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   957
	    (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   958
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   959
	int fd = fileno(f);                             \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   960
							\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   961
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   962
	    OBJ rA = __INST(readAhead);                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   963
	    if (rA != nil) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   964
		(buf)[__offs] = __intVal(rA);           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   965
		DEBUGBUFFER(buf);                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   966
		__INST(readAhead) = nil;                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   967
		__offs++;                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   968
		continue;                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   969
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   970
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   971
	    __cnt = read(fd, (buf)+__offs, (cnt)-__offs); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   972
	    DEBUGBUFFER(buf);                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   973
	    if (__cnt > 0) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   974
		__offs += __cnt;                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   975
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   976
	    break;                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   977
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   978
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   979
	    (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   980
    }                                                   \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   981
    SETFLAGS(fileno(f), oldFlags);                      \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   982
  }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   983
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   984
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   985
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   986
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   987
 * 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
   988
 * (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
   989
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   990
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   991
#  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
   992
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   993
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   994
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
   995
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   996
    char *buf = (char *)(obj);                          \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
   997
							\
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   998
    (ret) = 0;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   999
    {                                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1000
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1001
	    OBJ rA = __INST(readAhead);                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1002
	    if (rA != nil) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1003
		(buf)[__ooffs+__offs] = __intVal(rA);   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1004
		DEBUGBUFFER(buf);                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1005
		__INST(readAhead) = nil;                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1006
		__offs++;                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1007
	    } else {                                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1008
		CLEAR_ERRNO;                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1009
		__cnt = READ(f, (buf)+__ooffs+__offs, (cnt)-__offs, handleType); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1010
		DEBUGBUFFER(buf);                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1011
		if (__cnt <= 0) {                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1012
		    if (__cnt < 0 && errno == EINTR) {  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1013
			__HANDLE_INTERRUPTS__;          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1014
			/* refetch */                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1015
			buf = (char *)(obj);            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1016
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1017
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1018
		    break;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1019
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1020
		__offs += __cnt;                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1021
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1022
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1023
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1024
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1025
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1026
  }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  1027
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1028
# else /* use STDIO */
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  1029
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1030
#  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
  1031
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1032
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1033
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
  1034
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1035
    char *buf = (char *)(obj);                          \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1036
							\
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1037
    (ret) = 0;                                          \
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1038
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1039
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1040
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1041
	    (ret) = getc(f);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1042
	    if ((ret) < 0) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1043
		if (ferror(f)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1044
		    if (errno == EINTR) {               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1045
			__HANDLE_INTERRUPTS__;          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1046
			clearerr(f);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1047
			/* refetch */                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1048
			buf = (char *)(obj);            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1049
			DEBUGBUFFER(buf);               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1050
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1051
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1052
		} else {                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1053
		    (ret) = 0;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1054
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1055
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1056
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1057
	    (buf)[__ooffs+__offs] = (ret);              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1058
	    DEBUGBUFFER(buf);                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1059
	    __offs++;                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1060
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1061
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1062
	    (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
  1063
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1064
	int fd = fileno(f);                             \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1065
							\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1066
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1067
	    OBJ rA = __INST(readAhead);                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1068
	    if (rA != nil) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1069
		(buf)[__ooffs+__offs] = __intVal(rA);   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1070
		DEBUGBUFFER(buf);                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1071
		__INST(readAhead) = nil;                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1072
		__offs++;                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1073
	    } else {                                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1074
		CLEAR_ERRNO;                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1075
		__cnt = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1076
		DEBUGBUFFER(buf);                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1077
		if (__cnt <= 0) {                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1078
		    if (__cnt < 0 && errno == EINTR) {  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1079
			__HANDLE_INTERRUPTS__;          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1080
			/* refetch */                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1081
			buf = (char *)(obj);            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1082
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1083
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1084
		    break;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1085
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1086
		__offs += __cnt;                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1087
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1088
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1089
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1090
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1091
    }                                                   \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1092
  }
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1093
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1094
# 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
  1095
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1096
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1097
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
  1098
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1099
    char *buf = (char *)(obj);                          \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
  1100
    int oldFlags;                                       \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1101
							\
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1102
    (ret) = 0;                                          \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
  1103
    SETNONBLOCKING(fileno(f), oldFlags);                \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1104
							\
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1105
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1106
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1107
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1108
	    (ret) = getc(f);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1109
	    if ((ret) < 0) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1110
		if (ferror(f)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1111
		    if (errno == EINTR) {               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1112
			clearerr(f);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1113
			/* refetch */                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1114
			buf = (char *)(obj);            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1115
			(ret) = 0;                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1116
			break;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1117
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1118
		} else {                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1119
		    (ret) = 0;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1120
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1121
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1122
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1123
	    (buf)[__ooffs+__offs] = (ret);              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1124
	    DEBUGBUFFER(buf);                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1125
	    __offs++;                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1126
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1127
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1128
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1129
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1130
	int fd = fileno(f);                             \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1131
							\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1132
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1133
	    OBJ rA = __INST(readAhead);                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1134
	    if (rA != nil) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1135
		(buf)[__ooffs+__offs] = __intVal(rA);   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1136
		DEBUGBUFFER(buf);                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1137
		__INST(readAhead) = nil;                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1138
		__offs++;                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1139
		continue;                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1140
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1141
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1142
	    __cnt = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1143
	    DEBUGBUFFER(buf);                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1144
	    if (__cnt > 0) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1145
		__offs += __cnt;                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1146
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1147
	    break;                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1148
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1149
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1150
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1151
    }                                                   \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
  1152
    SETFLAGS(fileno(f), oldFlags);                      \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1153
  }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1154
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1155
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1156
# endif /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1157
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1158
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1159
#  define __WRITEBYTE__(ret, f, buf, isBuffered, handleType)          \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1160
	for (;;) {                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1161
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1162
	    (ret) = WRITE(f, buf, 1, handleType);       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1163
	    if ((ret) >= 0) break;                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1164
	    if (errno != EINTR) {                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1165
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1166
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1167
	    __HANDLE_INTERRUPTS__;                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1168
	}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1169
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1170
#  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
  1171
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1172
	for (;;) {                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1173
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1174
	    ret = putc(*(buf), f);                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1175
	    if ((ret) >= 0) {                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1176
		(ret) = 1;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1177
	    } else if (ferror(f)) {                     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1178
		/* SOLARIS/SPARC (2.6) generates spurious errors with errno = 0 */ \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1179
		if (errno == EINTR || errno == 0) {     \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1180
		    __HANDLE_INTERRUPTS__;              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1181
		    clearerr(f);                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1182
		    continue;                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1183
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1184
	    } else                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1185
		(ret) = 0;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1186
	    break;                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1187
	}                                               \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  1188
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1189
	for (;;) {                                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1190
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1191
	    (ret) = write(fileno(f), buf, 1);           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1192
	    if ((ret) >= 0) break;                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1193
	    if (errno != EINTR) {                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1194
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1195
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1196
	    __HANDLE_INTERRUPTS__;                      \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1197
	}                                               \
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1198
   }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1199
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1200
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1201
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1202
 * write_bytes from 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
  1203
 * (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
  1204
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1205
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1206
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1207
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1208
    {                                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1209
	int __offs = 0;                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1210
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1211
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1212
	    ret = WRITE(f, (buf)+__offs, (cnt)-__offs, handleType); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1213
	    if (ret <= 0) {                             \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1214
		if (ret < 0 && errno == EINTR) {        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1215
		    __HANDLE_INTERRUPTS__;              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1216
		    continue;                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1217
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1218
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1219
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1220
	    __offs += (ret);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1221
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1222
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1223
	    (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1224
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1225
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1226
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1227
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1228
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1229
	int __offs = 0;                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1230
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1231
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1232
	    (ret) = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1233
	    if ((ret) <= 0) {                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1234
		if (ferror(f)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1235
		    if (errno == EINTR) {               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1236
			__HANDLE_INTERRUPTS__;          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1237
			clearerr(f);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1238
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1239
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1240
		} else {                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1241
		    (ret) = 0;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1242
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1243
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1244
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1245
	    __offs += (ret);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1246
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1247
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1248
	    (ret) = __offs;                             \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1249
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1250
	int __offs = 0;                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1251
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1252
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1253
	    (ret) = write(fileno(f), (buf)+__offs, (cnt)-__offs);\
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1254
	    if ((ret) <= 0) {                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1255
		if ((ret) < 0) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1256
		    if (errno == EINTR) {               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1257
			__HANDLE_INTERRUPTS__;          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1258
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1259
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1260
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1261
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1262
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1263
	    __offs += (ret);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1264
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1265
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1266
	    (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1267
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1268
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1269
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1270
/*
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1271
 * 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
  1272
 * (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
  1273
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1274
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1275
#  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
  1276
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1277
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1278
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1279
    char *buf = (char *)(obj);                          \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1280
							\
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1281
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1282
    {                                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1283
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1284
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1285
	    ret = WRITE(f, (buf)+__ooffs+__offs, (cnt)-__offs, handleType); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1286
	    if (ret <= 0) {                             \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1287
		if (ret < 0 && errno == EINTR) {        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1288
		    __HANDLE_INTERRUPTS__;              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1289
		    /* refetch */                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1290
		    buf = (char *)(obj);                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1291
		    continue;                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1292
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1293
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1294
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1295
	    __offs += (ret);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1296
	}                                               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1297
	if (__offs > 0)                                 \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1298
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1299
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1300
  }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1301
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1302
#  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
  1303
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1304
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1305
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1306
    char *buf = (char *)(obj);                          \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1307
							\
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1308
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1309
    if (isBuffered) {                                   \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1310
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1311
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1312
	    (ret) = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f);  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1313
	    if ((ret) <= 0) {                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1314
		if (ferror(f)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1315
		    if (errno == EINTR) {               \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1316
			__HANDLE_INTERRUPTS__;          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1317
			/* refetch */                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1318
			buf = (char *)(obj);            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1319
			clearerr(f);                    \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1320
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1321
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1322
		    break;                              \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1323
		} else {                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1324
		    (ret) = 0;                          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1325
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1326
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1327
	    __offs += (ret);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1328
	}                                               \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1329
    } else {                                            \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1330
	while (__offs < (cnt)) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1331
	    CLEAR_ERRNO;                                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1332
	    (ret) = write(fileno(f), (buf)+__ooffs+__offs, (cnt)-__offs); \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1333
	    if ((ret) <= 0) {                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1334
		if ((ret) < 0) {                        \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1335
		    if (errno == EINTR){                \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1336
			__HANDLE_INTERRUPTS__;          \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1337
			/* refetch */                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1338
			buf = (char *)(obj);            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1339
			continue;                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1340
		    }                                   \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1341
		}                                       \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1342
		break;                                  \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1343
	    }                                           \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1344
	    __offs += (ret);                            \
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1345
	}                                               \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1346
    }                                                   \
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  1347
    if (__offs > 0)                                     \
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1348
	(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
  1349
  }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1350
# endif /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1351
#endif /* unix */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1352
%}
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1353
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1354
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1355
!ExternalStream class methodsFor:'documentation'!
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1356
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1357
copyright
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1358
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1359
 COPYRIGHT (c) 1988 by Claus Gittinger
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1360
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1361
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1362
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1363
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1364
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1365
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1366
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1367
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1368
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1369
!
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1370
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1371
documentation
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1372
"
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1373
    ExternalStream defines protocol common to Streams which have a file-descriptor and
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1374
    represent some file or communicationChannel of the underlying OperatingSystem.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1375
    ExternalStream is abstract; concrete classes are FileStream, PipeStream etc.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1376
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1377
    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
  1378
    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
  1379
    while in binary-mode the basic elements are bytes which read/write as SmallIntegers
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1380
    in the range 0..255.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1381
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1382
    Also, the stream can be either in buffered or unbuffered mode. In buffered mode,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1383
    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
  1384
    is sent (in both modes).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1385
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1386
    The underlying OperatingSystem streams may either be closed explicitely (sending a close)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1387
    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
  1388
    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
  1389
    happens - so it is recommended, that you close your files when no longer needed).
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1390
    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
  1391
    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
  1392
    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
  1393
    a noop in one of the superclasses).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1394
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1395
    Most of the methods found here redefine inherited methods for better performance,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1396
    since I/O from/to files should be fast.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1397
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1398
    Recovering a snapshot:
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1399
      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
  1400
      reOpen in subclasses for more information.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1401
      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
  1402
      reestablish the stream upon image restart (make someone dependent on ObjectMemory).
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1403
      FileStreams are reopened and positioned to their offset they had at snapshot time.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1404
      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
  1405
      if the contents changed in the meantime.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1406
      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
  1407
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1408
    [Instance variables:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1409
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1410
	handleType      <Symbol>        desribes what handle is:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1411
					    win32: #fileHandle, #socketHandle,
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1412
						   #filePointer, #socketFilePointer, #pipeFilePointer
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1413
					    unix: #filePointer, #socketFilePointer, #pipeFilePointer
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1414
					needed for win32, which uses different APIs for the different handles (sigh)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1415
	handle          <Integer>       used to be always a filePointer somehow mapped to an integer (FILE* - not the fd);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1416
					now, either a filePointer or a handle (win32)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1417
	mode            <Symbol>        #readwrite, #readonly or #writeonly
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1418
	buffered        <Boolean>       true, if buffered (i.e. collects characters - does
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1419
					not output immediately)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1420
	binary          <Boolean>       true if in binary mode (reads bytes instead of chars)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1421
	eolMode         <Symbol>        one of nil, #nl, #cr or #crlf.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1422
					determines how lines should be terminated.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1423
					nil -> newLine (as in Unix);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1424
					#crlf -> with cr-lf (as in MSDOS)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1425
					#cr -> with cr (as in VMS)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1426
	hitEOF          <Boolean>       true, if EOF was reached
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1427
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1428
	lastErrorNumber <Integer>       the value of errno (only valid right after the error -
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1429
					updated with next i/o operation)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1430
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1431
    [Class variables:]
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1432
	Lobby           <Registry>      keeps track of used ext-streams (to free up FILE*'s)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1433
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1434
	StreamErrorSignal       <Signal> parent of all stream errors (see Stream class)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1435
	InvalidReadSignal       <Signal> raised on read from writeonly stream
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1436
	InvalidWriteSignal      <Signal> raised on write to readonly stream
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1437
	InvalidModeSignal       <Signal> raised on text I/O with binary-stream
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1438
					 or binary I/O with text-stream
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1439
	OpenErrorSignal         <Signal> raised if open fails
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1440
	StreamNotOpenSignal     <Signal> raised on I/O with non-open stream
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1441
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1442
    Additional notes:
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1443
      This class is implemented using the underlying stdio-c library package, which
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1444
      has both advantages and disadvantages: since it is portable (posix defined), porting
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1445
      ST/X to non-Unix machines is simplified. The disadvantage is that the stdio library
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1446
      has big problems handling unbounded Streams, since the EOF handling in stdio is
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1447
      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
  1448
      a complete rewrite for UnboundedStream ...
325
claus
parents: 308
diff changeset
  1449
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1450
      Also, depending on the system, the stdio library behaves infriendly when signals
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1451
      occur while reading (for example, timer interrupts) - on real unixes (i.e. BSD) the signal
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1452
      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
  1453
      an error and errno is set to EINTR.
20411
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1454
      That's what the ugly code around all getc-calls is for ...
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1455
      Since things get more and more ugly - we will rewrite ExternalStream
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1456
      completely, to NOT use any stdio stuff (and do its buffering itself).
325
claus
parents: 308
diff changeset
  1457
claus
parents: 308
diff changeset
  1458
      Notice that typical stdio's use a single errno global variable to return an error code,
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1459
      this was bad design in the stdio lib (right from the very beginning), since it's much
325
claus
parents: 308
diff changeset
  1460
      harder to deal with this in the presence of lightweight processes, where errno gets
claus
parents: 308
diff changeset
  1461
      overwritten by an I/O operation done in another thread. (stdio should have been written
claus
parents: 308
diff changeset
  1462
      to return errno as a negative number ...).
claus
parents: 308
diff changeset
  1463
      To deal with this, the scheduler treats errno like a per-thread private variable,
claus
parents: 308
diff changeset
  1464
      and saves/restores the errno setting when switching to another thread.
claus
parents: 308
diff changeset
  1465
      (Notice that some thread packages do this also, but ST/X's thread implementation
claus
parents: 308
diff changeset
  1466
      does not depend on those, but instead uses a portable private package).
claus
parents: 308
diff changeset
  1467
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1468
      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
  1469
      fseek whenever we are about to read after write and vice versa.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1470
      Two macros (__READING__ and __WRITING__) have been defined to be used before every
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1471
      fread/fgetc and fwrite/putc respectively.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1472
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1473
    [author:]
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1474
	Claus Gittinger
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1475
	Stefan Vogel (many, many fixes ...)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1476
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1477
    [see also:]
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1478
	FileStream Socket PipeStream
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1479
	Filename OperatingSystem
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1480
"
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1481
!
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1482
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1483
examples
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1484
"
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1485
    open a file, read the contents and display it in a textView:
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1486
									[exBegin]
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1487
	|topView scrollPane textView fileStream text|
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1488
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1489
	topView := StandardSystemView new.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1490
	topView label:'contents of Makefile'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1491
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1492
	scrollPane := HVScrollableView in:topView.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1493
	scrollPane origin:0.0@0.0 corner:1.0@1.0.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1494
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1495
	textView := EditTextView new.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1496
	scrollPane scrolledView:textView.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1497
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1498
	fileStream := 'Makefile' asFilename readStream.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1499
	text := fileStream upToEnd.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1500
	fileStream close.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1501
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1502
	textView contents:text.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1503
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1504
	topView open.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1505
									[exEnd]
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1506
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1507
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1508
    Notice, all of the above can also be done (simply) as:
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1509
									[exBegin]
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1510
	EditTextView openOn:'Makefile'
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1511
									[exEnd]
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1512
"
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1513
! !
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1514
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1515
!ExternalStream class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1516
18636
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1517
closeFiles
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1518
    "close all files.
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1519
     To be called on exit of Smalltalk."
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1520
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1521
    Lobby do:[:eachFileStream |
22709
ac3bd46e88b9 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22697
diff changeset
  1522
        (eachFileStream ~~ Stdin 
ac3bd46e88b9 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22697
diff changeset
  1523
         and:[eachFileStream ~~ Stdout 
ac3bd46e88b9 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22697
diff changeset
  1524
         and:[eachFileStream ~~ Stderr]]) ifTrue:[
ac3bd46e88b9 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22697
diff changeset
  1525
            eachFileStream close
ac3bd46e88b9 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22697
diff changeset
  1526
        ].
18636
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1527
    ].
22709
ac3bd46e88b9 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22697
diff changeset
  1528
ac3bd46e88b9 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22697
diff changeset
  1529
    "Modified: / 25-04-2018 / 15:23:41 / stefan"
18636
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1530
!
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1531
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1532
initDefaultEOLMode
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1533
    OperatingSystem isUNIXlike ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1534
	"/ unix EOL conventions
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1535
	DefaultEOLMode := #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1536
    ] ifFalse:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1537
	OperatingSystem isVMSlike ifTrue:[
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1538
	    "/ vms EOL conventions
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1539
	    DefaultEOLMode := #cr
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1540
	] ifFalse:[
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1541
	    "/ msdos EOL conventions
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1542
	    "/ msdos uses #crlf.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1543
	    "/ the following breaks all programs, which do not explicitly
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1544
	    "/ change th eolMode when writing/reading binary files (zip reader)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1545
	    "/ MUST change all classes before doing the following.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1546
	    "/ Anyway: for backward compatibility (swisscom), it is left in this
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1547
	    "/ mode (for a while, I hope).
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1548
	    DefaultEOLMode := #crlf.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1549
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1550
	    "/ DefaultEOLMode := #nl
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1551
	]
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1552
    ]
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1553
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1554
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1555
initModeStrings
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1556
    "initialize modeStrings which are passed down to the underlying
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1557
     fopen/fdopen functions."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1558
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1559
    OperatingSystem isMSDOSlike ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1560
	ReadMode := 'rb'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1561
	ReadWriteMode := 'rb+'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1562
	WriteMode := 'wb'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1563
	AppendMode := 'ab+'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1564
	CreateReadWriteMode := 'wb+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1565
    ] ifFalse:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1566
	ReadMode := 'r'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1567
	ReadWriteMode := 'r+'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1568
	WriteMode := 'w'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1569
	AppendMode := 'a+'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1570
	CreateReadWriteMode := 'w+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1571
    ]
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1572
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1573
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1574
initialize
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 583
diff changeset
  1575
    OpenErrorSignal isNil ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1576
	OpenErrorSignal := OpenError.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1577
	OpenErrorSignal notifierString:'open error'.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1578
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1579
	InvalidReadSignal := InvalidReadError.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1580
	InvalidReadSignal notifierString:'stream does not support reading'.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1581
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1582
	InvalidWriteSignal := InvalidWriteError.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1583
	InvalidWriteSignal notifierString:'stream does not support writing'.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1584
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1585
	InvalidModeSignal := InvalidModeError.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1586
	InvalidModeSignal notifierString:'binary/text mode mismatch'.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1587
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1588
	InvalidOperationSignal := InvalidOperationError.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1589
	InvalidOperationSignal notifierString:'unsupported file operation'.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1590
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1591
	StreamNotOpenSignal := StreamNotOpenError.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1592
	StreamNotOpenSignal notifierString:'stream is not open'.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1593
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1594
	StreamIOErrorSignal := StreamIOError.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1595
	StreamIOErrorSignal notifierString:'I/O error'.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1596
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1597
	"/ self patchByteOrderOptimizedMethods
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1598
    ].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1599
31
75f2b9f78be2 *** empty log message ***
claus
parents: 25
diff changeset
  1600
    Lobby isNil ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1601
	Lobby := Registry new.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1602
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1603
	"want to get informed when returning from snapshot"
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1604
	ObjectMemory addDependent:self
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1605
    ].
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1606
    DefaultEOLMode isNil ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1607
	self initDefaultEOLMode.
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1608
    ].
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1609
    ReadMode isNil ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1610
	self initModeStrings.
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1611
    ].
18790
7277f699c8f6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18783
diff changeset
  1612
7277f699c8f6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18783
diff changeset
  1613
    "limit the amount of newspace to be used for non-tenurable executors to 5%"
18929
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
  1614
    "/ MaxNonTenurableExecutors := ObjectMemory newSpaceSize // (Socket sizeOfInst:0) // 20.
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
  1615
    "/ cg: changed because Socket is not in libbasic. Thus, standalone (libbasic only)
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
  1616
    "/ programs would fail to start.
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1617
    MaxNonTenurableExecutors := (ObjectMemory newSpaceSize // 20 min:2000).
18790
7277f699c8f6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18783
diff changeset
  1618
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1619
    "Modified: / 21.5.1998 / 16:33:53 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1620
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1621
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1622
patchByteOrderOptimizedMethods
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1623
    "EXPERIMENTAL (not yet done by default):
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1624
     change the underlying implementation of
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1625
	nextPutInt16MSB / nextPutInt16LSB
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1626
	nextPutInt32MSB / nextPutInt32LSB
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1627
     to the corresponding NATIVE methods."
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1628
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1629
    |native16 native32|
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1630
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1631
    native16 := self compiledMethodAt:#nextPutInt16NATIVE:.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1632
    native32 := self compiledMethodAt:#nextPutInt32NATIVE:.
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1633
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1634
    UninterpretedBytes isBigEndian ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1635
	(self compiledMethodAt:#nextPutInt16MSB:) code:(native16 code).
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1636
	(self compiledMethodAt:#nextPutInt32MSB:) code:(native32 code).
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1637
    ] ifFalse:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1638
	(self compiledMethodAt:#nextPutInt16LSB:) code:(native16 code).
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1639
	(self compiledMethodAt:#nextPutInt32LSB:) code:(native32 code).
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1640
    ].
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1641
!
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1642
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1643
reOpenFiles
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1644
    "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
  1645
     This is invoked via the #earlyRestart change notification."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1646
18636
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1647
    Lobby do:[:eachFileStream |
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1648
	eachFileStream reOpen
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1649
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1650
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1651
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1652
update:something with:aParameter from:changedObject
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1653
    "have to reopen files when returning from snapshot"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1654
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1655
    something == #earlyRestart ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1656
	self reOpenFiles.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1657
	self initDefaultEOLMode
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1658
    ]
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1659
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1660
    "Created: 15.6.1996 / 15:19:59 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1661
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1662
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1663
!ExternalStream class methodsFor:'instance creation'!
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1664
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1665
forFileDescriptor:aFileDescriptor mode:modeSymbol
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1666
    "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
  1667
     to operate on this fd.
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1668
     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
  1669
     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
  1670
     primitive code, or to wrap pipe-fds into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1671
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1672
    ^ self forFileDescriptor:aFileDescriptor mode:modeSymbol buffered:true handleType:nil
7002
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
    "
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1675
     the example below will probably fail (15 is a random FD):
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1676
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1677
     |s|
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1678
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1679
     s := ExternalStream forFileDescriptor:15 mode:'r'.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1680
     s next.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1681
    "
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1682
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1683
    "Created: 29.2.1996 / 18:05:00 / cg"
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1684
    "Modified: 29.2.1996 / 18:17:07 / cg"
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1685
!
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1686
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1687
forFileDescriptor:aFileDescriptor mode:modeSymbol buffered:buffered handleType:handleTypeSymbol
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1688
    "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
  1689
     to operate on this fd.
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1690
     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
  1691
     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
  1692
     primitive code, or to wrap pipe-fds into externalStreams."
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1693
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  1694
    ^ self new
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1695
	buffered:buffered;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1696
	connectTo:aFileDescriptor withMode:modeSymbol handleType:handleTypeSymbol.
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1697
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1698
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1699
     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
  1700
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1701
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1702
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  1703
     s := ExternalStream forFileDescriptor:15 mode:#readonly buffered:false handleType:#filePointer.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1704
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1705
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1706
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1707
    "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
  1708
    "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
  1709
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1710
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1711
forReadWriteToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1712
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1713
     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
  1714
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1715
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1716
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1717
    ^ self forFileDescriptor:aFileDescriptor mode:#readWrite
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1718
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1719
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1720
     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
  1721
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1722
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1723
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1724
     s := ExternalStream forReadWriteToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1725
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1726
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1727
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1728
    "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
  1729
    "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
  1730
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1731
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1732
forReadingFromFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1733
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1734
     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
  1735
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1736
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1737
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1738
    ^ self forFileDescriptor:aFileDescriptor mode:#readonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1739
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1740
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1741
     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
  1742
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1743
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1744
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1745
     s := ExternalStream forReadingFromFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1746
     s next.
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
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
     |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
  1751
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1752
     'create OS pipe ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1753
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1754
     pipe := OperatingSystem makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1755
     readFd := pipe at:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1756
     writeFd := pipe at:2.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1757
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1758
     'connect Smalltalk streams ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1759
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1760
     rs := ExternalStream forReadingFromFileDescriptor:readFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1761
     ws := ExternalStream forWritingToFileDescriptor:writeFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1762
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1763
     'read ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1764
     [
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1765
	 1 to:10 do:[:i |
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1766
	     Transcript showCR:rs nextLine
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1767
	 ].
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1768
	 rs close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1769
     ] forkAt:7.
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
     'write ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1772
     [
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1773
	 1 to:10 do:[:i |
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1774
	     ws nextPutAll:'hello world '; nextPutAll:i printString; cr
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1775
	 ].
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1776
	 ws close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1777
     ] fork.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1778
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1779
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1780
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1781
    "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
  1782
    "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
  1783
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1784
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1785
forWritingToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1786
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1787
     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
  1788
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1789
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1790
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1791
    ^ self forFileDescriptor:aFileDescriptor mode:#writeonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1792
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1793
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1794
     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
  1795
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1796
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1797
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1798
     s := ExternalStream forWritingToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1799
     s binary.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1800
     s nextPut:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1801
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1802
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1803
    "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
  1804
    "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
  1805
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1806
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1807
new
15918
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  1808
    "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
  1809
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  1810
    ^ self basicNew initialize.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1811
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1812
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1813
!ExternalStream class methodsFor:'Signal constants'!
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1814
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1815
inaccessibleSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1816
    "ST-80 compatibility: return openErrorSignal"
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1817
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1818
    ^ self openErrorSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1819
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1820
    "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
  1821
!
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1822
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1823
invalidModeSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1824
    "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
  1825
     or binary-I/O with a text stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1826
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1827
    ^ InvalidModeError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1828
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1829
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1830
invalidOperationSignal
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1831
    "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
  1832
     I/O operation is attempted"
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1833
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1834
    ^ InvalidOperationError
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1835
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1836
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1837
invalidReadSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1838
    "return the signal raised when reading from writeonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1839
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1840
    ^ InvalidReadError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1841
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1842
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1843
invalidWriteSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1844
    "return the signal raised when writing to readonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1845
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1846
    ^ InvalidWriteError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1847
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1848
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1849
openErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1850
    "return the signal raised when a file open failed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1851
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1852
    ^ OpenErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1853
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1854
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1855
streamIOErrorSignal
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1856
    "return the signal raised when an I/O error occurs.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1857
     (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
  1858
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1859
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1860
    ^ StreamIOError
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1861
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1862
    "Created: / 21.5.1998 / 16:32:55 / cg"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1863
!
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1864
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1865
streamNotOpenSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1866
    "return the signal raised on I/O with closed streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1867
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1868
    ^ StreamNotOpenError
2
claus
parents: 1
diff changeset
  1869
! !
claus
parents: 1
diff changeset
  1870
22697
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1871
!ExternalStream class methodsFor:'accessing'!
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1872
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1873
openStreams
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1874
    "answer a collection of open Streams having this class"
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1875
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1876
    |openStreams|
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1877
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1878
    openStreams := OrderedCollection new.
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1879
    Lobby keysDo:[:eachStream| 
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1880
                    (eachStream isKindOf:self) ifTrue:[
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1881
                        openStreams add:eachStream
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1882
                    ]
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1883
                ].
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1884
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1885
    ^ openStreams
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1886
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1887
    "
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1888
        self openStreams
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1889
        Socket openStreams
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1890
        NonPositionableExternalStream openStreams
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1891
    "
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1892
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1893
    "Created: / 24-04-2018 / 09:23:33 / stefan"
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1894
! !
e840d7085b3e #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22694
diff changeset
  1895
21337
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1896
!ExternalStream class methodsFor:'defaults'!
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1897
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1898
bufferSizeForBulkFileCopy
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1899
    "return the size of buffer used when copying big files/buld data from one stream to another.
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1900
     Due to a bug on older Windows systems, the default used
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1901
     is chosen very conservatively, as the copy used to fail with big buffers.
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1902
     However, modern Windows systems seem to not suffer from that bug,
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1903
     and bigger buffer sizes will dramatically increase the performance of
21337
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1904
     copies to/from network drives.
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1905
     Setting DefaultCopyBufferSize allows for fine tuning,
21337
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1906
     in case you run into performance problems, or network buffer failures.
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1907
     When nil, a somewhat conservative compromise is used."
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1908
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1909
    DefaultCopyBufferSize notNil ifTrue:[^ DefaultCopyBufferSize].
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1910
21337
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1911
    OperatingSystem isMSDOSlike ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1912
	OperatingSystem isWin7Like ifTrue:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1913
	    ^ 64*1024
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1914
	] ifFalse:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1915
	    "/ mhmh - NT hangs, when copying bigger blocks to a network drive - why ?
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1916
	    ^ 1 * 1024.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1917
	].
21337
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1918
    ].
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1919
    ^ 32 * 1024.
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1920
!
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1921
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1922
defaultCopyBufferSize:anInteger
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1923
    "allows changing the size of buffer used when copying big
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1924
     files/buld data from one stream to another.
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1925
     Due to a bug on older Windows systems, the default used in copyToEndInto:
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1926
     is chosen very conservatively, as the copy used to fail with big buffers.
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1927
     However, modern Windows systems seem to not suffer from that bug,
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1928
     and bigger buffer sizes will dramatically increase the performance of
21337
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1929
     copies to/from network drives.
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1930
     This method allows for fine tuning, in case you run into performance problems,
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1931
     or network buffer failures.
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1932
     When nil, a somewhat conservative compromise is used."
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1933
21337
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1934
    ^ DefaultCopyBufferSize
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1935
! !
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  1936
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1937
!ExternalStream class methodsFor:'error handling'!
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1938
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1939
errorReporter
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1940
    "I know about error codes"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1941
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1942
    ^ self
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1943
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1944
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1945
lastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1946
    "return the errno of the last error"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1947
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1948
    ^ LastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1949
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1950
    "
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1951
     ExternalStream lastErrorNumber
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1952
    "
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1953
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1954
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1955
lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1956
    "return a message string describing the last error"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1957
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1958
    ^ OperatingSystem errorTextForNumber:LastErrorNumber
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1959
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1960
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1961
     ExternalStream lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1962
    "
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1963
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1964
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1965
reportOn:anErrorSymbolOrNumber
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  1966
    "an error occurred.
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1967
     Report it via an Exception"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1968
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1969
    anErrorSymbolOrNumber isInteger ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1970
	StreamError
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1971
	    raiseRequestWith:anErrorSymbolOrNumber
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1972
	    errorString:(' - os error:' , (OperatingSystem errorTextForNumber:anErrorSymbolOrNumber))
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1973
    ].
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1974
    (self respondsTo:anErrorSymbolOrNumber) ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1975
	self perform:anErrorSymbolOrNumber
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1976
    ] ifFalse:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1977
	StreamError
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1978
	    raiseRequestWith:anErrorSymbolOrNumber
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  1979
	    errorString:(' - ' , anErrorSymbolOrNumber printString)
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1980
    ].
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1981
    ^ false
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1982
! !
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1983
20987
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1984
!ExternalStream class methodsFor:'finalization'!
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1985
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1986
finalizationLobby
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1987
    "answer the registry used for finalization.
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1988
     ExternalStreams have their own Registry"
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1989
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1990
    ^ Lobby
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1991
! !
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1992
7497
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1993
!ExternalStream class methodsFor:'obsolete'!
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1994
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1995
makePTYPair
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1996
    "obsolete since 12-07-2003"
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1997
    <resource:#obsolete>
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1998
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1999
    self obsoleteMethodWarning:'use NonPositionableExternalStream makePTYPair'.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  2000
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  2001
    ^ NonPositionableExternalStream makePTYPair.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  2002
!
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  2003
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  2004
makePipe
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  2005
    "obsolete since 12-07-2003"
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  2006
    <resource:#obsolete>
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  2007
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  2008
    self obsoleteMethodWarning:'use NonPositionableExternalStream makePipe'.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  2009
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  2010
    ^ NonPositionableExternalStream makePipe.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  2011
! !
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  2012
21037
152fe5102be0 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21032
diff changeset
  2013
!ExternalStream class methodsFor:'testing'!
152fe5102be0 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21032
diff changeset
  2014
152fe5102be0 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21032
diff changeset
  2015
isAbstract
152fe5102be0 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21032
diff changeset
  2016
    ^ self == ExternalStream
152fe5102be0 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21032
diff changeset
  2017
! !
152fe5102be0 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21032
diff changeset
  2018
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7195
diff changeset
  2019
!ExternalStream methodsFor:'Compatibility-Dolphin'!
6474
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  2020
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  2021
beText
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  2022
    self text
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  2023
! !
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  2024
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7195
diff changeset
  2025
!ExternalStream methodsFor:'Compatibility-Squeak'!
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  2026
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  2027
nextInto:aByteArrayOrString
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  2028
    "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
  2029
     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
  2030
     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
  2031
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  2032
    |n nWanted|
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  2033
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  2034
    nWanted := aByteArrayOrString byteSize.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  2035
    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
  2036
    n == nWanted ifTrue:[^ aByteArrayOrString].
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  2037
    ^ aByteArrayOrString copyTo:n
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  2038
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  2039
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  2040
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  2041
readInto:aContainer startingAt:index count:nElements
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  2042
    "same as #nextBytes:into:startingAt: for ByteArrays;
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  2043
     for LongArrays, nelements longs are read.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  2044
     Squeak compatibility."
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  2045
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  2046
    |elementSize n|
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  2047
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  2048
    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
  2049
    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
  2050
    ^ n // elementSize
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  2051
13940
12eb1c056d5e fixed: #readInto:startingAt:count:; offset was wrong for non-byte elements
Claus Gittinger <cg@exept.de>
parents: 13927
diff changeset
  2052
    "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
  2053
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  2054
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  2055
readOnly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  2056
    "Squeak compatibility: make the stream readOnly"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  2057
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  2058
    mode := #readonly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  2059
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  2060
    "Modified: 20.10.1997 / 19:23:04 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  2061
    "Created: 20.10.1997 / 19:23:19 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  2062
! !
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  2063
5187
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2064
!ExternalStream methodsFor:'Signal constants'!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2065
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2066
invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2067
    ^ self class invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2068
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2069
    "Created: / 3.12.1998 / 15:12:06 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2070
!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2071
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2072
invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2073
    ^ self class invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2074
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2075
    "Created: / 3.12.1998 / 15:12:10 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2076
! !
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2077
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2078
!ExternalStream methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2079
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2080
binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2081
    "switch to binary mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2082
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2083
    binary := true
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2084
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2085
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2086
buffered:aBoolean
10
claus
parents: 5
diff changeset
  2087
    "turn buffering on or off - default is on"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2088
10
claus
parents: 5
diff changeset
  2089
    buffered := aBoolean
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2090
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2091
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2092
contents
2
claus
parents: 1
diff changeset
  2093
    "return the contents of the file from the current position up-to
claus
parents: 1
diff changeset
  2094
     the end. If the stream is in binary mode, a ByteArray containing
claus
parents: 1
diff changeset
  2095
     the byte values is returned.
claus
parents: 1
diff changeset
  2096
     In text-mode, a collection of strings, each representing one line,
claus
parents: 1
diff changeset
  2097
     is returned."
claus
parents: 1
diff changeset
  2098
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  2099
    |text|
2
claus
parents: 1
diff changeset
  2100
claus
parents: 1
diff changeset
  2101
    binary ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2102
	^ self upToEnd.
2
claus
parents: 1
diff changeset
  2103
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2104
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  2105
    "/ text mode
244
9faa2da0650a Text <-> StringCollection
claus
parents: 223
diff changeset
  2106
    text := StringCollection new.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2107
    [self atEnd] whileFalse:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2108
	|line|
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2109
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2110
	line := self nextLine.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2111
	line isNil ifTrue:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2112
	    ^ text
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2113
	].
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2114
	text add:line
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2115
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2116
    ^ text
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2117
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2118
11751
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2119
contentsAsString
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2120
    "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
  2121
     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
  2122
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  2123
    ^ self upToEnd
11751
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2124
!
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2125
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2126
contentsOfEntireFile
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  2127
    "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
  2128
     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
  2129
6305
53b87502fc21 Fix #contentsOfEntireFile
Stefan Vogel <sv@exept.de>
parents: 6269
diff changeset
  2130
    ^ self upToEnd
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  2131
3876
a680b41a014c comment
Claus Gittinger <cg@exept.de>
parents: 3872
diff changeset
  2132
    "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
  2133
    "Modified: / 27.11.1998 / 16:29:43 / cg"
2
claus
parents: 1
diff changeset
  2134
!
claus
parents: 1
diff changeset
  2135
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2136
contentsSpecies
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2137
    "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
  2138
     (such as upTo)"
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2139
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  2140
    binary ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2141
	^ ByteArray
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2142
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2143
    ^ String
2
claus
parents: 1
diff changeset
  2144
!
claus
parents: 1
diff changeset
  2145
16776
fd62ae0ff6fa class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16551
diff changeset
  2146
eolMode
fd62ae0ff6fa class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16551
diff changeset
  2147
    "return how end-of-line (EOL) is to be marked.
fd62ae0ff6fa class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16551
diff changeset
  2148
     Returns one one of:
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2149
	#crlf         -> add a CR-NL, as in MSDOS
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2150
	#cr           -> add a CR, as in VMS
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2151
	#nl           -> add a NL, as in Unix
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2152
	#eot          -> add an EOT (= 0x04, as used in some modems/protocols)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2153
	#etx          -> add an ETX (= 0x03, as used in some modems/protocols)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2154
	#nl           -> add a NL, as in Unix
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2155
	nil           -> transparent
16776
fd62ae0ff6fa class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16551
diff changeset
  2156
    "
fd62ae0ff6fa class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16551
diff changeset
  2157
17115
2ef08a902c34 did report error in close always as writeError - although it could also happen on a readonly stream
Claus Gittinger <cg@exept.de>
parents: 17078
diff changeset
  2158
    ^ eolMode
21097
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2159
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2160
    "Modified (comment): / 06-12-2016 / 14:26:24 / cg"
16776
fd62ae0ff6fa class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16551
diff changeset
  2161
!
fd62ae0ff6fa class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16551
diff changeset
  2162
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2163
eolMode:aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2164
    "specify how end-of-line (EOL) is to be marked.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2165
     The argument may be one of:
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2166
	#crlf         -> add a CR-NL, as in MSDOS
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2167
	#cr           -> add a CR, as in VMS
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2168
	#nl           -> add a NL, as in Unix
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2169
	#eot          -> add an EOT (= 0x04, as used in some modems/protocols)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2170
	#etx          -> add an ETX (= 0x03, as used in some modems/protocols)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2171
	anyOther      -> like #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2172
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2173
17462
6448b4559e12 ouch: eolMode
Claus Gittinger <cg@exept.de>
parents: 17432
diff changeset
  2174
    aSymbolOrNil == #crnl ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2175
	eolMode := #crlf
17462
6448b4559e12 ouch: eolMode
Claus Gittinger <cg@exept.de>
parents: 17432
diff changeset
  2176
    ] ifFalse:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2177
	aSymbolOrNil == #lf ifTrue:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2178
	    eolMode := #nl
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2179
	] ifFalse:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2180
	    eolMode := aSymbolOrNil
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2181
	]
17462
6448b4559e12 ouch: eolMode
Claus Gittinger <cg@exept.de>
parents: 17432
diff changeset
  2182
    ].
21097
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2183
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2184
    "Modified (comment): / 06-12-2016 / 14:26:37 / cg"
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2185
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2186
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2187
fileDescriptor
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2188
    "return the fileDescriptor of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2189
     notice: this one returns the underlying OSs fileDescriptor -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2190
     this may not be available on all platforms (i.e. non unix systems)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2191
21742
163e1cd20c32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21689
diff changeset
  2192
    |fileClosed|
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2193
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3956
diff changeset
  2194
%{
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2195
    OBJ _handle  = __INST(handle);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2196
21742
163e1cd20c32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21689
diff changeset
  2197
    fileClosed = false;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2198
    if (_handle != nil) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2199
	if ((__INST(handleType) == @symbol(fileHandle))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2200
	 || (__INST(handleType) == @symbol(socketHandle))) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2201
	    RETURN (_handle);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2202
	}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2203
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2204
	if ((__INST(handleType) == nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2205
	 || (__INST(handleType) == @symbol(filePointer))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2206
	 || (__INST(handleType) == @symbol(socketFilePointer))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2207
	 || (__INST(handleType) == @symbol(pipeFilePointer))) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2208
	    FILE *file = __FILEVal(_handle);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2209
	    if (file != NULL) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2210
		int fileNo = fileno(file);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2211
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2212
		if (fileNo >= 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2213
		    RETURN ( __MKINT(fileNo));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2214
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2215
		fileClosed = true;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2216
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2217
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2218
    }
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2219
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2220
    handle isNil ifTrue:[^ self errorNotOpen].
21742
163e1cd20c32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21689
diff changeset
  2221
    fileClosed ifTrue:[handle := nil. ^ self errorNotOpen].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2222
    ^ self fileDescriptorOfFile:handle
21689
0fb84562d69d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21688
diff changeset
  2223
21742
163e1cd20c32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21689
diff changeset
  2224
    "Modified: / 05-05-2017 / 16:27:34 / cg"
163e1cd20c32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21689
diff changeset
  2225
!
163e1cd20c32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21689
diff changeset
  2226
163e1cd20c32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21689
diff changeset
  2227
fileDescriptorOfFile:aHandle
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2228
    "for migration to rel5 only:
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2229
     return the fileDescriptor of the argument handle -
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2230
     notice: this one returns the underlying OSs fileDescriptor -
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2231
     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
  2232
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  2233
%{
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  2234
#ifdef __SCHTEAM__
21742
163e1cd20c32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21689
diff changeset
  2235
    return context._RETURN(aHandle);
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  2236
#endif
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  2237
%}.
21742
163e1cd20c32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21689
diff changeset
  2238
    ^ nil
163e1cd20c32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21689
diff changeset
  2239
163e1cd20c32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21689
diff changeset
  2240
    "Modified: / 05-05-2017 / 16:20:20 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2241
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2242
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2243
fileHandle
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2244
    "return the fileHandle of the receiver.
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2245
     Under unix, this is the fileDescriptor; under windows, this is the Handle."
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2246
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2247
%{
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2248
    OBJ _handle  = __INST(handle);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2249
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2250
    if (_handle != nil) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2251
	if ((__INST(handleType) == @symbol(fileHandle))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2252
	 || (__INST(handleType) == @symbol(socketHandle))) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2253
	    RETURN (_handle);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2254
	}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2255
	if (__INST(handleType) == @symbol(pipeFilePointer)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2256
	    RETURN (__MKINT(fileno(__FILEVal(_handle))));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2257
	}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2258
	if ((__INST(handleType) == nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2259
	 || (__INST(handleType) == @symbol(filePointer))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2260
	 || (__INST(handleType) == @symbol(socketFilePointer))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2261
	 || (__INST(handleType) == @symbol(pipeFilePointer))) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  2262
#ifdef __win32__
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2263
	    RETURN(__MKEXTERNALADDRESS(_get_osfhandle(fileno(__FILEVal(_handle)))));
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2264
#else
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2265
	    FILE *file = __FILEVal(_handle);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2266
	    if (file != NULL) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2267
		int fileNo = fileno(file);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2268
		if (fileNo >= 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2269
		    RETURN (__MKINT(fileNo));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2270
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2271
	    }
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2272
#endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2273
	}
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2274
    }
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2275
%}.
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2276
    ^ handle
21688
2dde43c27c68 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21362
diff changeset
  2277
2dde43c27c68 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21362
diff changeset
  2278
    "Modified: / 07-04-2017 / 16:34:40 / cg"
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2279
!
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2280
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2281
filePointer
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2282
    "return the filePointer of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2283
     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
  2284
     a FILE * - not a fileDescriptor.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2285
     (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
  2286
     You cannot do much with the returned value
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2287
     - except passing it to a primitive, for example."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2288
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2289
    (handleType isNil or:[handleType == #filePointer]) ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2290
	^ handle
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2291
    ].
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2292
    ^ self error:'not a FILE*'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2293
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2294
21229
683f7b03f4d6 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 21224
diff changeset
  2295
handle
683f7b03f4d6 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 21224
diff changeset
  2296
    ^ handle
683f7b03f4d6 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 21224
diff changeset
  2297
!
683f7b03f4d6 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 21224
diff changeset
  2298
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2299
handleType
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2300
    ^ handleType
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2301
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2302
5323
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2303
lineEndCRLF
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2304
    eolMode := #crlf
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2305
!
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2306
17672
758c3ff0c9e0 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 17634
diff changeset
  2307
lineEndLF
758c3ff0c9e0 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 17634
diff changeset
  2308
    eolMode := #nl
758c3ff0c9e0 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 17634
diff changeset
  2309
!
758c3ff0c9e0 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 17634
diff changeset
  2310
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2311
lineEndTransparent
17426
6e49243ce4e0 fix: code treated everything but nl,cr,crnl symbols als cr (by accident).
Claus Gittinger <cg@exept.de>
parents: 17420
diff changeset
  2312
    eolMode := #nl
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2313
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2314
8069
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2315
pathName
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2316
    "answer the pathName of the stream.
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2317
     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
  2318
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2319
    ^ ''
8069
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2320
!
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2321
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2322
readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2323
    "set access mode to readonly"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2324
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2325
    mode := #readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2326
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2327
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2328
readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2329
    "set access mode to readwrite"
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
    mode := #readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2332
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2333
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2334
text
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2335
    "switch to text mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2336
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2337
    binary := false
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2338
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2339
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2340
useCRLF:aBoolean
20147
bf474597127c #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 20106
diff changeset
  2341
    <resource: #obsolete>
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2342
    "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
  2343
     This method is provided for backward compatibility - see #eolMode:
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2344
     which offers another choice."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2345
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2346
    aBoolean ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2347
	eolMode := #crlf
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2348
    ] ifFalse:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2349
	eolMode := #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2350
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2351
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2352
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2353
writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2354
    "set access mode to writeonly"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2355
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2356
    mode := #writeonly
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
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2359
!ExternalStream methodsFor:'closing'!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2360
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2361
abortAndClose
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2362
    "close the stream - added for protocol compatibility with Socket and PipeStream.
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2363
     see comment there"
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2364
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2365
    self close.
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2366
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2367
    "Modified: 30.8.1996 / 00:39:21 / cg"
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2368
!
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2369
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2370
close
20106
f2f009eeee26 #DOCUMENTATION by mawalch
mawalch
parents: 20104
diff changeset
  2371
    "Close the stream.
f2f009eeee26 #DOCUMENTATION by mawalch
mawalch
parents: 20104
diff changeset
  2372
     No error if the stream is not open."
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2373
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2374
    self isOpen ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2375
	self unregisterForFinalization.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2376
	self isOpen ifTrue:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2377
	    self closeFile.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2378
	].
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  2379
    ].
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2380
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2381
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2382
shutDown
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2383
    "close the stream - added for protocol compatibility with Socket.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2384
     see comment there"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2385
19072
dd63f674181c #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19008
diff changeset
  2386
    self close.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2387
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2388
    "Modified: 30.8.1996 / 00:39:21 / cg"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2389
! !
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2390
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2391
!ExternalStream methodsFor:'copying'!
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2392
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2393
copy
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2394
    "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
  2395
     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
  2396
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2397
    |copy|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2398
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2399
    copy := super copy.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2400
    copy dupFd.
18779
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2401
    copy registerForFinalization.
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2402
    ^ copy
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2403
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2404
    "
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2405
       |stream1 stream2|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2406
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2407
       stream1 := Filename newTemporary writeStream.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2408
       stream2 := stream1 copy.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2409
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2410
       stream1 inspect.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2411
       stream2 inspect.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2412
    "
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2413
! !
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2414
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2415
!ExternalStream methodsFor:'error handling'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2416
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2417
argumentMustBeCharacter
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2418
    "report an error, that the argument must be a character in 0..FF"
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2419
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2420
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2421
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2422
    ArgumentError raiseErrorString:' - argument must be a single byte character'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2423
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2424
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2425
argumentMustBeInteger
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2426
    "report an error, that the argument must be an integer"
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2427
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2428
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2429
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2430
    ArgumentError raiseErrorString:' - argument must be an integer'
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2431
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2432
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2433
argumentMustBeString
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2434
    "report an error, that the argument must be a string"
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2435
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2436
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2437
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2438
    ArgumentError raiseErrorString:' - argument must be a string'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2439
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2440
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2441
errorAlreadyOpen
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2442
    "{ Pragma: +optSpace }"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2443
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2444
    "report an error, that the stream is already opened"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2445
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2446
    ^ OpenError
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2447
	raiseRequestWith:self
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2448
	errorString:' - stream is already open'
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2449
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2450
    "
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2451
      self new errorAlreadyOpen
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2452
    "
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2453
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2454
    "Modified: / 8.5.1999 / 20:12:30 / cg"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2455
!
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2456
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2457
errorBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2458
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2459
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2460
    "report an error, that the stream is in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2461
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2462
    ^ InvalidModeError
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2463
	raiseRequestWith:self
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2464
	errorString:(self class name , ' is in binary mode')
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2465
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2466
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2467
    "Modified: / 8.5.1999 / 20:12:43 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2468
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2469
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2470
errorNotBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2471
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2472
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2473
    "report an error, that the stream is not in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2474
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2475
    ^ InvalidModeError
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2476
	raiseRequestWith:self
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2477
	errorString:(self class name , ' is not in binary mode')
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2478
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2479
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2480
    "Modified: / 8.5.1999 / 20:12:40 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2481
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2482
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2483
errorNotBuffered
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2484
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2485
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2486
    "report an error, that the stream is not in buffered mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2487
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2488
    ^ StreamError
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2489
	raiseRequestWith:self
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2490
	errorString:(self class name , ' is unbuffered - operation not allowed')
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2491
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2492
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2493
    "Modified: / 8.5.1999 / 20:12:36 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2494
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2495
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2496
errorReadOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2497
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2498
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2499
    "report an error, that the stream is a readOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2500
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2501
    ^ 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
  2502
4468
8c67b4f973d8 raise vs. raiseRequest
Claus Gittinger <cg@exept.de>
parents: 4456
diff changeset
  2503
    "Modified: / 30.7.1999 / 17:08:19 / cg"
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
6255
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2506
errorReporter
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2507
    "ST-80 mimicry."
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2508
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  2509
    ^ self class
6255
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2510
!
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2511
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2512
errorUnsupportedOperation
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2513
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2514
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2515
    "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
  2516
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2517
    ^ 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
  2518
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2519
    "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
  2520
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2521
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2522
errorWriteOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2523
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2524
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2525
    "report an error, that the stream is a writeOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2526
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2527
    ^ 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
  2528
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2529
    "Modified: / 8.5.1999 / 20:12:20 / cg"
2
claus
parents: 1
diff changeset
  2530
!
claus
parents: 1
diff changeset
  2531
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2532
ioError
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2533
    "report an error, that some I/O error occurred.
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2534
     (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
  2535
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2536
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2537
    "{ Pragma: +optSpace }"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2538
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2539
    self ioError:lastErrorNumber
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2540
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2541
    "Modified: / 8.5.1999 / 20:12:16 / cg"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2542
!
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2543
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2544
ioError:errorNumber
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2545
    "report an error, that some I/O error occurred.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2546
     (for example, a device-IO-error, or reading an NFS-dir,
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2547
     which is no longer available and has been mounted soft)"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2548
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2549
    "{ Pragma: +optSpace }"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2550
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2551
    ^ StreamIOError newException
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2552
	errorCode:errorNumber;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2553
	osErrorHolder:(OperatingSystem errorHolderForNumber:errorNumber);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2554
	parameter:self;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2555
	raiseRequest
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2556
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2557
    "Modified: / 8.5.1999 / 20:12:16 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2558
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2559
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2560
lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2561
    "return the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2562
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2563
    ^ lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2564
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2565
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2566
lastErrorString
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2567
    "return a message string describing the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2568
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2569
    (lastErrorNumber isNil or:[lastErrorNumber == 0]) ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2570
	^ 'I/O error'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2571
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2572
    ^ OperatingSystem errorTextForNumber:lastErrorNumber
2
claus
parents: 1
diff changeset
  2573
!
claus
parents: 1
diff changeset
  2574
10932
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2575
lastErrorSymbol
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2576
    "return an error symbol describing the last error"
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2577
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2578
    ^ OperatingSystem errorSymbolForNumber:lastErrorNumber
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2579
!
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2580
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2581
openError
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2582
    "report an error, that the open failed"
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2583
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2584
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2585
14438
a4280b8038c0 changed:
Stefan Vogel <sv@exept.de>
parents: 14068
diff changeset
  2586
    ^ self openError:lastErrorNumber.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2587
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2588
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2589
openError:errorNumber
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2590
    "report an error, that the open failed"
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2591
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2592
    "{ Pragma: +optSpace }"
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2593
15496
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2594
    |exClass errorHolder|
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2595
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2596
    errorHolder := OperatingSystem errorHolderForNumber:errorNumber.
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2597
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2598
    exClass := (errorHolder errorCategory == #nonexistentSignal)
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2599
	ifTrue:[ FileDoesNotExistException ]
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2600
	ifFalse:[ OpenError ].
13673
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2601
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2602
    ^ exClass newException
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2603
	errorCode:errorNumber;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2604
	osErrorHolder:errorHolder;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2605
	"/ cg: initialized lazily - see OpenError>>#description
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2606
	"/ errorString:(' : ' , errorHolder errorString);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2607
	parameter:self;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2608
	raiseRequest
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2609
	"/ in:thisContext sender
13673
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2610
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2611
    "Modified: / 09-09-2011 / 07:22:49 / cg"
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2612
!
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2613
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2614
readError
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2615
    "report an error, that some read error occurred"
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2616
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2617
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2618
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2619
    ^ self readError:lastErrorNumber
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2620
!
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2621
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2622
readError:errorNumber
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2623
    "report an error, that some read error occurred"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2624
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2625
    "{ Pragma: +optSpace }"
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2626
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2627
    ^ ReadError newException
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2628
	errorCode:errorNumber;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2629
	osErrorHolder:(OperatingSystem errorHolderForNumber:errorNumber);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2630
	parameter:self;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2631
	raiseRequest
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2632
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2633
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2634
writeError
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2635
    "report an error, that some write error occurred"
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2636
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2637
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2638
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2639
    ^ self writeError:lastErrorNumber
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2640
!
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2641
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2642
writeError:errorNumber
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2643
    "report an error, that some write error occurred"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2644
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2645
    "{ Pragma: +optSpace }"
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2646
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2647
    ^ WriteError newException
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2648
	errorCode:errorNumber;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2649
	osErrorHolder:(OperatingSystem errorHolderForNumber:errorNumber);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2650
	parameter:self;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2651
	raiseRequest
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2652
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2653
6461
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2654
!ExternalStream methodsFor:'finalization'!
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2655
22694
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2656
beExecutor
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2657
    "mark myself as being an executor for finalization.
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2658
     We mis-use the mode symbol for this."
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2659
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2660
    mode := #executor.
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2661
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2662
    "Created: / 23-04-2018 / 18:17:01 / stefan"
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2663
!
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2664
15468
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2665
executor
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2666
    "return a copy for finalization-registration;
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2667
     since all we need at finalization time is the fileDescriptor,
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2668
     a cheaper copy is possible."
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2669
22694
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2670
    ^ self class basicNew
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2671
                    beExecutor;
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2672
                    setAccessor:handleType to:handle;
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2673
                    yourself.
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2674
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  2675
    "Modified: / 23-04-2018 / 18:34:38 / stefan"
15468
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2676
!
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2677
6461
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2678
finalize
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2679
    "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
  2680
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2681
    self closeFile
18779
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2682
!
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2683
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2684
reRegisterForFinalization
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2685
    Lobby registerChange:self.
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2686
!
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2687
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2688
registerForFinalization
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2689
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2690
    "keep myself in newSpace, so it will be finalized early"
18790
7277f699c8f6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18783
diff changeset
  2691
    Lobby size < MaxNonTenurableExecutors ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2692
	ObjectMemory preventTenureOf:self.
18790
7277f699c8f6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18783
diff changeset
  2693
    ].
18779
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2694
    Lobby register:self.
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2695
!
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2696
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2697
unregisterForFinalization
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2698
    Lobby unregister:self.
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2699
     "probably the object will be collected soon..."
18793
19f35dc98859 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18790
diff changeset
  2700
    ObjectMemory allowTenureOf:self
6461
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2701
! !
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2702
15918
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2703
!ExternalStream methodsFor:'initialization'!
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2704
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2705
initialize
15921
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2706
    position := 0.
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2707
    binary := false.
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2708
    buffered := true.
19687
041f74a69c35 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19622
diff changeset
  2709
    self initializeEOLMode.
041f74a69c35 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19622
diff changeset
  2710
    hitEOF := false.
041f74a69c35 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19622
diff changeset
  2711
!
041f74a69c35 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19622
diff changeset
  2712
041f74a69c35 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19622
diff changeset
  2713
initializeEOLMode
15921
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2714
    eolMode := DefaultEOLMode.
15918
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2715
! !
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2716
2
claus
parents: 1
diff changeset
  2717
!ExternalStream methodsFor:'line reading/writing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2718
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2719
nextLine
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2720
    "read the next line (characters up to newline).
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2721
     Return a string containing those characters excluding the newline.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2722
     If the previous-to-last character is a cr, this is also removed,
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2723
     so it's 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
  2724
     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
  2725
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2726
    |line error|
971
eb70f5674303 max lineLength (in nextLine) increased to 16k
Claus Gittinger <cg@exept.de>
parents: 933
diff changeset
  2727
12873
f6b24aa46bb1 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 12710
diff changeset
  2728
%{  /* STACK:100000 */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2729
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2730
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2731
    int len, ret;
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  2732
    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
  2733
    char *rslt, *nextPtr, *limit;
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2734
    int fd, ch;
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  2735
    int _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  2736
    OBJ fp;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2737
    int lineTooLong = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2738
    int cutOff = 0;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2739
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2740
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2741
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2742
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2743
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2744
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2745
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2746
	if (((fp = __INST(handle)) != nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2747
	    && (__INST(mode) != @symbol(writeonly))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2748
	    && (__INST(binary) != true)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2749
	) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2750
	    f = __FILEVal(fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2751
	    buffer[0] = '\0';
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2752
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2753
	    _buffered = (__INST(buffered) == true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2754
	    if (_buffered) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2755
		__READING__(f);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2756
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2757
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2758
	    rslt = nextPtr = buffer;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2759
	    limit = buffer + sizeof(buffer) - 2;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2760
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2761
	    for (;;) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2762
		__READBYTE__(ret, f, nextPtr, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2763
		if (ret <= 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2764
		    if (nextPtr == buffer)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2765
			rslt = NULL;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2766
		    if (ret == 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2767
			__INST(hitEOF) = true;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2768
			break;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2769
		    } else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2770
			error = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2771
			goto err;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2772
		    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2773
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2774
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2775
		if (*nextPtr == '\n') {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2776
		    cutOff = 1;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2777
		    *nextPtr = '\0';
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2778
		    break;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2779
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2780
		if (*nextPtr == '\r') {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2781
		    char peekChar;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2782
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2783
		    /*
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2784
		     * peek ahead for a newLine ...
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2785
		     */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2786
		    __READBYTE__(ret, f, &peekChar, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2787
		    if (ret <= 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2788
			cutOff = 1;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2789
			*nextPtr = '\0';
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2790
			if (ret == 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2791
			    __INST(hitEOF) = true;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2792
			    break;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2793
			}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2794
			error = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2795
			goto err;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2796
		    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2797
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2798
		    if (peekChar == '\n') {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2799
			cutOff = 2;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2800
			*nextPtr = '\0';
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2801
			break;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2802
		    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2803
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2804
		    __UNGETC__(peekChar, f, _buffered);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2805
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2806
		    cutOff = 1;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2807
		    *nextPtr = '\0';
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2808
		    break;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2809
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2810
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2811
		nextPtr++;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2812
		if (nextPtr >= limit) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2813
		    *nextPtr = '\0';
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2814
		    lineTooLong = 1;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2815
		    // signalled below anyway; so no need to print on stderr
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2816
#if 0
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2817
		    if (@global(InfoPrinting) == true) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2818
			fprintf(stderr, "ExtStream [warning]: line truncated in nextLine\n");
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2819
		    }
20744
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2820
#endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2821
		    break;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2822
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2823
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2824
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2825
	    if (rslt != NULL) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2826
		len = nextPtr-buffer;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2827
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2828
		if (__isSmallInteger(__INST(position))) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2829
		    INT np = __intVal(__INST(position)) + len + cutOff;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2830
		    OBJ t;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2831
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2832
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2833
		} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2834
		    __INST(position) = nil; /* i.e. do not know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2835
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2836
		/* remove any EOL character */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2837
		if (len != 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2838
		    if (buffer[len-1] == '\n') {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2839
			buffer[--len] = '\0';
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2840
		    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2841
		    if ((len != 0) && (buffer[len-1] == '\r')) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2842
			buffer[--len] = '\0';
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2843
		    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2844
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2845
		line = __MKSTRING_L(buffer, len);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2846
		if (! lineTooLong) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2847
		    RETURN ( line );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2848
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2849
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2850
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2851
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  2852
err: ;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2853
%}.
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2854
    line notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2855
	"/ the line as read is longer than 32k characters (boy - what a line)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2856
	"/ The exception could be handled by reading more and returning the
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2857
	"/ concatenation in your exception handler (the receiver and the partial
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2858
	"/ line are passed as parameter)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2859
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2860
	LineTooLongErrorSignal isHandled ifTrue:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2861
	    ^ LineTooLongErrorSignal
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2862
		raiseRequestWith:(Array with:self with:line)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2863
		     errorString:('line too long read error')
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2864
	].
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2865
	'ExternalStream [warning]: line truncated in nextLine' infoPrintCR.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2866
	^ line , self nextLine
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2867
    ].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2868
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  2869
    hitEOF ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2870
    error notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2871
	lastErrorNumber := error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  2872
	^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2873
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2874
    handle isNil ifTrue:[^ self errorNotOpen].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2875
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  2876
    binary ifTrue:[^ self errorBinary].
5431
24ce291c71f2 migration support
Claus Gittinger <cg@exept.de>
parents: 5430
diff changeset
  2877
    ^ super nextLine
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2878
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2879
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2880
nextPutLine:aString
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2881
    "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
  2882
     (LF, CR or CRLF - depending in the setting of eolMode)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2883
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2884
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2885
%{
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2886
    OBJ fp;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2887
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2888
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2889
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2890
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2891
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2892
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2893
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2894
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2895
	    && (__INST(mode) != @symbol(readonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2896
	    && (__INST(binary) != true)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2897
	    && __isStringLike(aString)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2898
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2899
	    int _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2900
	    int len = __stringSize(aString);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2901
	    int cnt, len1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2902
	    FILEPOINTER f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2903
	    char *cp;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2904
	    int o_offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2905
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2906
	    if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2907
		__WRITING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2908
	    }
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  2909
#ifdef __win32__
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2910
	    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2911
		cnt = __win32_fwrite(__stringVal(aString), 1, len, f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2912
	    } else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2913
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2914
	    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2915
		o_offs = (char *)__stringVal(aString)-(char *)aString;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2916
		__WRITEBYTES_OBJ__(cnt, f, aString, o_offs, len, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2917
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2918
	    if (cnt == len) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2919
		OBJ mode = __INST(eolMode);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2920
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2921
		len1 = len;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2922
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2923
		if (mode == @symbol(cr)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2924
		    cp = "\r"; len = 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2925
		} else if (mode == @symbol(crlf)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2926
		    cp = "\r\n"; len = 2;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2927
		} else if (mode == @symbol(eot)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2928
		    cp = "\004"; len = 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2929
		} else if (mode == @symbol(etx)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2930
		    cp = "\003"; len = 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2931
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2932
		    cp = "\n"; len = 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2933
		}
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  2934
#ifdef __win32__
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2935
		if ((f == __win32_stdout()) || (f == __win32_stderr())) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2936
		    cnt = __win32_fwrite(cp, 1, len, f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2937
		} else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2938
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2939
		{
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2940
		    __WRITEBYTES__(cnt, f, cp, len, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2941
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2942
		if (cnt > 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2943
		    if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2944
			INT np = __intVal(__INST(position)) + cnt;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2945
			OBJ t;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2946
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2947
			t = __MKINT(np); __INST(position) = t; __STORE(self, t);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2948
		    } else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2949
			__INST(position) = nil; /* i.e. do not know */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2950
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2951
		    RETURN ( self );
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2952
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2953
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2954
	    error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2955
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2956
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2957
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2958
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2959
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2960
	self writeError:error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2961
	^ self
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2962
    ].
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  2963
    super nextPutLine:aString.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2964
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2965
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2966
nextPutLinesFrom:aStream upToLineStartingWith:aStringOrNil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2967
    "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
  2968
     and append all lines to self.
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2969
     Can be used to copy/create large files or copy from a pipe/socket.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2970
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2971
     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
  2972
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2973
    |line|
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2974
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2975
    [aStream atEnd] whileFalse:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2976
	line := aStream nextLine.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2977
	line isNil ifTrue:[
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2978
	    ^ self.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2979
	].
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2980
	self nextPutLine:line.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2981
	(aStringOrNil notNil and:[line startsWith:aStringOrNil]) ifTrue:[
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2982
	    ^ self
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2983
	]
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2984
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2985
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2986
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2987
peekForLineStartingWith:aString
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2988
    "read ahead for next line starting with aString;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2989
     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
  2990
     If matched, do not advance position beyond that line
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2991
     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
  2992
     If not matched, reposition to original position for further reading."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2993
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2994
    |firstPos lastPos line|
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2995
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2996
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2997
    handle isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2998
    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
  2999
    buffered ifFalse:[^ self errorNotBuffered].
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  3000
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3001
    firstPos := self position.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3002
    [self atEnd] whileFalse:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3003
	lastPos := self position.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3004
	line := self nextLine.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3005
	line isNil ifTrue:[
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3006
	    self position:firstPos.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3007
	    ^ nil
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3008
	].
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3009
	(line startsWith:aString) ifTrue:[
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3010
	    self position:lastPos.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3011
	    ^ line
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3012
	]
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3013
    ].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3014
    self position:firstPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3015
    ^ nil
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3016
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3017
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3018
peekForLineStartingWithAny:aCollectionOfStrings
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3019
    "read ahead for next line starting with any of aCollectionOfStrings;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3020
     return the index in aCollection if found, nil otherwise..
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3021
     If no match, do not change position; otherwise advance right before the
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3022
     matched line so that nextLine will return this line."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3023
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3024
    |line startPos linePos index|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3025
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3026
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3027
    handle isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  3028
    binary ifTrue:[^ self errorBinary].
claus
parents: 1
diff changeset
  3029
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3030
    startPos := self position.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3031
    [self atEnd] whileFalse:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3032
	linePos := self position.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3033
	line := self nextLine.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3034
	line notNil ifTrue:[
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3035
	    index := 1.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3036
	    aCollectionOfStrings do:[:prefix |
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3037
		(line startsWith:prefix) ifTrue:[
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3038
		    self position:linePos.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3039
		    ^ index
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3040
		].
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3041
		index := index + 1
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3042
	    ]
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3043
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3044
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3045
    self position:startPos.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3046
    ^ nil
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3047
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3048
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3049
!ExternalStream methodsFor:'misc functions'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3050
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3051
async:aBoolean
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3052
    "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
  3053
     the receiver will trigger an ioInterrupt.
779
0e41a665038a commentary
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  3054
     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
  3055
     Notice:
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3056
	not every OS supports this
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3057
	- check with OS>>supportsIOInterrupts before using"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3058
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3059
    |fd|
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3060
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3061
    OperatingSystem supportsIOInterrupts ifFalse:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3062
	^ self errorUnsupportedOperation
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3063
    ].
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3064
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3065
    fd := self fileDescriptor.
22195
54aa183fe57f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22177
diff changeset
  3066
    "self fileDescriptor may set handle to nil"
54aa183fe57f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22177
diff changeset
  3067
    handle isNil ifTrue:[^ self errorNotOpen].
54aa183fe57f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22177
diff changeset
  3068
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3069
    aBoolean ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3070
	^ OperatingSystem enableIOInterruptsOn:fd
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3071
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3072
    ^ OperatingSystem disableIOInterruptsOn:fd
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3073
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3074
    "Modified: 11.1.1997 / 17:50:21 / cg"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3075
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3076
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3077
blocking:aBoolean
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3078
    "set/clear the blocking attribute - if set (which is the default)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3079
     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
  3080
     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
  3081
     nil.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3082
     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
  3083
     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
  3084
     in advance. However, the data must then be read using #nextBytes:
8616
6014ed5c67f9 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8614
diff changeset
  3085
     methods, in order to avoid other (pastEndRead) exceptions."
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3086
22195
54aa183fe57f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22177
diff changeset
  3087
    |fd|
54aa183fe57f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22177
diff changeset
  3088
54aa183fe57f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22177
diff changeset
  3089
    fd := self fileDescriptor.
54aa183fe57f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22177
diff changeset
  3090
    "self fileDescriptor may set handle to nil"
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3091
    handle isNil ifTrue:[^ self errorNotOpen].
22195
54aa183fe57f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22177
diff changeset
  3092
    ^ OperatingSystem setBlocking:aBoolean on:fd.
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3093
3174
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  3094
    "Modified: / 11.1.1997 / 17:48:01 / cg"
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  3095
    "Modified: / 15.1.1998 / 11:49:48 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3096
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3097
17618
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3098
copyToEndFrom:inStream
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3099
    "read from inStream, and write all data up to the end to the receiver.
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3100
     Return the number of bytes which have been transferred.
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3101
     Same functionality as copyToEnd:, but reversed arg and receiver
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3102
     (useful in a cascade message of the writeStream)"
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3103
21337
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  3104
    ^ inStream copyToEndInto:self bufferSize:(self class bufferSizeForBulkFileCopy)
17618
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3105
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3106
    "
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3107
     |in out|
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3108
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3109
     in := 'Makefile' asFilename readStream.
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3110
     out := Stdout.
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3111
     in copyToEndInto:out.
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3112
     in close.
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3113
    "
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3114
!
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3115
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  3116
copyToEndInto:outStream
7017
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  3117
    "copy the data into another stream."
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  3118
21337
f229bd8f95d3 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 21253
diff changeset
  3119
    ^ self copyToEndInto:outStream bufferSize:(self class bufferSizeForBulkFileCopy)
7700
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3120
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3121
    "
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3122
     |in out|
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3123
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3124
     in := 'Makefile' asFilename readStream.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3125
     out := Stdout.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3126
     in copyToEndInto:out.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3127
     in close.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3128
    "
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  3129
!
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  3130
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3131
ioctl:ioctlNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3132
    "to provide a simple ioctl facility - an ioctl is performed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3133
     on the underlying file; no arguments are passed."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3134
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3135
    ^ self ioctl:ioctlNumber with:nil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3136
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3137
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3138
ioctl:ioctlNumber with:arg
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3139
    "to provide a simple ioctl facility - an ioctl is performed
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3140
     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
  3141
     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
  3142
     - for example, to control proprietrary I/O devices.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3143
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3144
     Since the type of the argument depends on the ioctl being
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3145
     performed, different arg types are allowed here.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3146
     If the argument is nil, an ioctl without argument is performed.
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3147
     If the argument is an integral number, it's directly passed;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3148
     if it's a kind of ByteArray (ByteArray, String or Structure),
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3149
     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
  3150
     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
  3151
     This allows performing most ioctls
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3152
     - however, it might be tricky to setup the buffer.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3153
     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
  3154
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3155
    |error|
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3156
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3157
%{
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3158
#if !defined(MSDOS_LIKE) && !defined(__openVMS__)
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3159
    int fd;
10552
d52aa8e066e5 #ioctl:with: accept 32-bit integers as arguments
Stefan Vogel <sv@exept.de>
parents: 10469
diff changeset
  3160
    int ret;
d52aa8e066e5 #ioctl:with: accept 32-bit integers as arguments
Stefan Vogel <sv@exept.de>
parents: 10469
diff changeset
  3161
    unsigned int ioNum;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3162
    INT ioArg;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3163
    OBJ fp = __INST(handle);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3164
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3165
    if (fp == nil)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3166
	goto out;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3167
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3168
    if (!__isInteger(ioctlNumber)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3169
	 || (!__isInteger(arg)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3170
	     && (arg != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3171
	     && !__isBytes(arg)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3172
	     && !__isExternalBytesLike(arg)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3173
	     && !__isExternalAddress(arg))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3174
	error = @symbol(badArgument);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3175
	goto out;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3176
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3177
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3178
    if (__INST(handleType) == @symbol(socketHandle)) {
19993
67164d044887 compiler warnings
Claus Gittinger <cg@exept.de>
parents: 19866
diff changeset
  3179
	fd = (int)((SOCKET)(__FILEVal(fp)));
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3180
    } else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3181
	if ((__INST(handleType) == nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3182
	 || (__INST(handleType) == @symbol(filePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3183
	 || (__INST(handleType) == @symbol(socketFilePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3184
	 || (__INST(handleType) == @symbol(pipeFilePointer))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3185
	fd = fileno(__FILEVal(fp));
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3186
    } else {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3187
	error = @symbol(badHandleType);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3188
	goto out;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3189
    }
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3190
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3191
    ioNum = __unsignedLongIntVal(ioctlNumber);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3192
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3193
    __BEGIN_INTERRUPTABLE__
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3194
    do {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3195
	__threadErrno = 0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3196
	if (arg == nil) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3197
	    ioArg = 0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3198
	} else if (__isSmallInteger(arg)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3199
	    ioArg = __intVal(arg);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3200
	} else if (__isInteger(arg)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3201
	    ioArg = __unsignedLongIntVal(arg);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3202
	} else if (__isExternalBytesLike(arg)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3203
	    ioArg = (INT)(__externalBytesAddress(arg));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3204
	} else if (__isExternalAddress(arg)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3205
	    ioArg = (INT)(__externalAddressVal(arg));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3206
	} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3207
	    ioArg = (INT)(__ByteArrayInstPtr(arg)->ba_element);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3208
	}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3209
	ret = ioctl(fd, ioNum, ioArg);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3210
    } while (ret < 0 && __threadErrno == EINTR);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3211
    __END_INTERRUPTABLE__
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3212
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3213
    if (ret >= 0) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3214
	RETURN ( __mkSmallInteger(ret) );
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3215
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3216
    error = __mkSmallInteger(__threadErrno);
791
b1c153b1c719 WIN32 has no ioctl
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
  3217
#endif
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3218
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3219
out:;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3220
%}.
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3221
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3222
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3223
	^ self ioError:error.
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3224
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3225
    handle isNil ifTrue:[^ self errorNotOpen].
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3226
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3227
    "/ the system does not support ioctl (MSDOS or VMS)
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3228
    ^ self errorUnsupportedOperation
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3229
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3230
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3231
reset
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3232
    "set the read position to the beginning of the collection"
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3233
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3234
    self position:0
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3235
!
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3236
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3237
setToEnd
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3238
    "redefined since it must be implemented differently"
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3239
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3240
    ^ self subclassResponsibility
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3241
!
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3242
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3243
sync
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3244
    "make sure, that the OS writes cached data to the disk"
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3245
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3246
    |error|
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3247
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3248
    self flush.
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3249
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3250
%{
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3251
#if !defined(__openVMS__)
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3252
    int fd;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3253
    int ret;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3254
    OBJ fp = __INST(handle);
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3255
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3256
    if (fp == nil)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3257
	goto out;
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3258
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3259
    if (__INST(handleType) == @symbol(socketHandle)) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3260
	// syncing a socket to disk ?
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3261
	error = @symbol(badHandleType);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3262
	goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3263
	// fd = __FILEVal(fp);
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3264
    } else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3265
	if ((__INST(handleType) == nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3266
	       || (__INST(handleType) == @symbol(filePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3267
	       || (__INST(handleType) == @symbol(socketFilePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3268
	       || (__INST(handleType) == @symbol(pipeFilePointer))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3269
	fd = fileno(__FILEVal(fp));
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3270
    } else {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3271
	error = @symbol(badHandleType);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3272
	goto out;
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3273
    }
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3274
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3275
#ifdef __win32__
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3276
     __threadErrno = 0;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3277
     ret = __STX_API_NOINT_CALL1( "FlushFileBuffers", FlushFileBuffers, _get_osfhandle(fd));
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3278
     if (ret) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3279
	 RETURN (self);
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3280
     }
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3281
#else
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3282
     __BEGIN_INTERRUPTABLE__
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3283
     do {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3284
	 ret = fsync(fd);
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3285
     } while ((ret < 0) && (__threadErrno == EINTR));
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3286
     __END_INTERRUPTABLE__
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3287
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3288
     if (ret >= 0) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3289
	 RETURN (self);
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3290
     }
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3291
#endif /* ! __win32__ */
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3292
     error = __mkSmallInteger(__threadErrno);
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3293
#endif /* ! __openVMS__ */
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3294
out:;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3295
%}.
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3296
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3297
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3298
	self ioError:error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3299
	^ self.
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3300
    ].
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3301
    handle isNil ifTrue:[self errorNotOpen].
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3302
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3303
    "
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3304
	|f|
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3305
	f := 'x' asFilename writeStream.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3306
	f nextPutAll:'hallo'; sync; syncData; close
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3307
    "
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3308
!
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3309
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3310
syncData
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3311
    "make sure, that the OS writes cached data to the disk.
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3312
     In this case, metadata is only written, if it is
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3313
     required to read the file's data (so metadata will not be written,
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3314
     if only access/modification time has changed)."
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3315
    |error|
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3316
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3317
    self flush.
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3318
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3319
%{
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3320
#if !defined(__openVMS__)
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3321
    int fd;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3322
    int ret;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3323
    OBJ fp = __INST(handle);
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3324
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3325
    if (fp == nil)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3326
	goto out;
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3327
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3328
    if (__INST(handleType) == @symbol(socketHandle)) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3329
	// syncing a socket to disk ?
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3330
	error = @symbol(badHandleType);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3331
	goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3332
	// fd = __FILEVal(fp);
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3333
    } else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3334
	if ((__INST(handleType) == nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3335
	       || (__INST(handleType) == @symbol(filePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3336
	       || (__INST(handleType) == @symbol(socketFilePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3337
	       || (__INST(handleType) == @symbol(pipeFilePointer))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3338
	fd = fileno(__FILEVal(fp));
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3339
    } else {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3340
	error = @symbol(badHandleType);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3341
	goto out;
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3342
    }
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3343
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3344
#ifdef __win32__
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3345
     __threadErrno = 0;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3346
     ret = __STX_API_NOINT_CALL1( "FlushFileBuffers", FlushFileBuffers, _get_osfhandle(fd));
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3347
     if (ret) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3348
	 RETURN (self);
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3349
     }
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3350
#else
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3351
     __BEGIN_INTERRUPTABLE__
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3352
     do {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3353
	 ret = fdatasync(fd);
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3354
     } while ((ret < 0) && (__threadErrno == EINTR));
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3355
     __END_INTERRUPTABLE__
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3356
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3357
     if (ret >= 0) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3358
	 RETURN (self);
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3359
     }
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3360
#endif /* ! __win32__ */
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3361
     error = __mkSmallInteger(__threadErrno);
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3362
#endif /* ! __openVMS__ */
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3363
out:;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3364
%}.
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3365
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3366
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3367
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3368
	self ioError:error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3369
	^ self.
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3370
    ].
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3371
    handle isNil ifTrue:[^ self errorNotOpen].
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3372
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3373
    "if notdef HAS_DATASYNC, fall back"
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3374
    self sync.
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3375
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3376
    "
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3377
	|f|
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3378
	f := 'x' asFilename writeStream.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3379
	f nextPutAll:'hallo'; sync; syncData; close
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3380
    "
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3381
!
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3382
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3383
tcgetattr
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3384
    "unix only:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3385
     provide the information of a tcgetattr call as a dictionary.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3386
     This provides terminal setting values of a tty or pty.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3387
     Used by terminal emulators.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3388
     On non-unix systems, an unsupported operation error is raised"
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3389
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3390
    |error ret
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3391
     iflags "/ input flags
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3392
     ignbrk brkint ignpar parmrk inpck istrip inlcr igncr
16509
2cf139885242 Fixed ExternalStream>>tcgetattr
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16508
diff changeset
  3393
     icrnl iuclc ixon ixoff ixany imaxbel iutf8
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3394
     oflags "/ output flags
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3395
     opost onlcr ocrnl olcuc onocr onlret oxtabs onoteot
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3396
     cflags "/ control flags
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3397
     csize cstopb cread parenb parodd hupcl clocal
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3398
     lflags "/ local flags
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3399
     echoke echoe echok echo echonl echoprt echoctl
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3400
     isig icanon altwerase iexten extproc tostop
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3401
     |
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3402
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3403
%{
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3404
#if !defined(MSDOS_LIKE) && !defined(__openVMS__)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3405
    int fd;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3406
    int _ret;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3407
    OBJ fp = __INST(handle);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3408
    struct termios t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3409
    int sz;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3410
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3411
    if (fp == nil)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3412
	goto out;
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3413
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3414
    if (__INST(handleType) == @symbol(socketHandle)) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3415
	// cg: termina attributes of a socket?
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3416
	error = @symbol(badHandleType);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3417
	goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3418
	// fd = __FILEVal(fp);
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3419
    } else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3420
	if ((__INST(handleType) == nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3421
	 || (__INST(handleType) == @symbol(filePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3422
	 || (__INST(handleType) == @symbol(socketFilePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3423
	 || (__INST(handleType) == @symbol(pipeFilePointer))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3424
	fd = fileno(__FILEVal(fp));
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3425
    } else {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3426
	error = @symbol(badHandleType);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3427
	goto out;
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3428
    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3429
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3430
    __BEGIN_INTERRUPTABLE__
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3431
    do {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3432
	__threadErrno = 0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3433
	_ret = tcgetattr(fd, &t);
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3434
    } while (_ret < 0 && __threadErrno == EINTR);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3435
    __END_INTERRUPTABLE__
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3436
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3437
    if (_ret < 0) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3438
	error = __mkSmallInteger(__threadErrno);
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3439
    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3440
    ignbrk = t.c_iflag & IGNBRK ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3441
    brkint = t.c_iflag & BRKINT ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3442
    ignpar = t.c_iflag & IGNPAR ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3443
    parmrk = t.c_iflag & PARMRK ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3444
    inpck = t.c_iflag & INPCK ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3445
    istrip = t.c_iflag & ISTRIP ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3446
    inlcr = t.c_iflag & INLCR ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3447
    ixon = t.c_iflag & IXON ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3448
    ixoff = t.c_iflag & IXOFF ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3449
    ixany = t.c_iflag & IXANY ? true : false;
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3450
# ifdef IMAXBEL
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3451
    imaxbel = t.c_iflag & IMAXBEL ? true : false;
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3452
# endif
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3453
# ifdef IUCLC
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3454
    iuclc = t.c_iflag & IUCLC ? true : false;
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3455
# endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3456
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3457
    opost = t.c_oflag & OPOST ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3458
    onlcr = t.c_oflag & ONLCR ? true : false;
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3459
# ifdef OXTABS
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3460
    oxtabs = t.c_oflag & OXTABS ? true : false;
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3461
# endif
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3462
# ifdef ONOTEOT
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3463
    onoteot = t.c_oflag & ONOTEOT ? true : false;
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3464
# endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3465
    ocrnl = t.c_oflag & OCRNL ? true : false;
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3466
# ifdef OLCUC
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3467
    olcuc = t.c_oflag & OLCUC ? true : false;
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3468
# endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3469
    onocr = t.c_oflag & ONOCR ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3470
    onlret = t.c_oflag & ONLRET ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3471
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3472
    sz = t.c_cflag & CSIZE;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3473
    switch (sz) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3474
	case CS5:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3475
	    csize = @symbol(cs5);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3476
	    break;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3477
	case CS6:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3478
	    csize = @symbol(cs6);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3479
	    break;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3480
	case CS7:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3481
	    csize = @symbol(cs7);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3482
	    break;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3483
	case CS8:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3484
	    csize = @symbol(cs8);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3485
	    break;
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3486
    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3487
    cstopb = t.c_cflag & CSTOPB ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3488
    cread = t.c_cflag & CREAD ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3489
    parenb = t.c_cflag & PARENB ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3490
    parodd = t.c_cflag & PARODD ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3491
    hupcl = t.c_cflag & HUPCL ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3492
    clocal = t.c_cflag & CLOCAL ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3493
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3494
    echoke = t.c_lflag & ECHOKE ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3495
    echoe = t.c_lflag & ECHOE ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3496
    echo = t.c_lflag & ECHO ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3497
    echonl = t.c_lflag & ECHONL ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3498
    echoctl = t.c_lflag & ECHOCTL ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3499
    isig = t.c_lflag & ISIG ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3500
    icanon = t.c_lflag & ICANON ? true : false;
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3501
# ifdef ALTWERASE
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3502
    altwerase = t.c_lflag & ALTWERASE ? true : false;
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3503
# endif
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3504
# ifdef IEXTEN
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3505
    iexten = t.c_lflag & IEXTEN ? true : false;
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3506
# endif
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3507
# ifdef EXTPROC
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3508
    extproc = t.c_lflag & EXTPROC ? true : false;
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3509
# endif
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3510
# ifdef TOSTOP
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3511
    tostop = t.c_lflag & TOSTOP ? true : false;
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3512
# endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3513
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3514
#else
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3515
    error = @symbol(unsupportedOperation);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3516
#endif
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3517
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3518
out:;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3519
%}.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3520
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3521
	error == #unsupportedOperation ifTrue:[
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3522
	    "/ the system does not support tcgetattr
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3523
	    ^ self errorUnsupportedOperation
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3524
	].
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3525
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3526
	^ self ioError:error.
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3527
    ].
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3528
    handle isNil ifTrue:[^ self errorNotOpen].
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3529
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3530
    "/ construct a dictionary...
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3531
    ret := Dictionary new.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3532
    ret at:#iflags put:(iflags := Dictionary new).
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3533
    ret at:#oflags put:(oflags := Dictionary new).
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3534
    ret at:#cflags put:(cflags := Dictionary new).
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3535
    ret at:#lflags put:(lflags := Dictionary new).
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3536
    iflags at:#ignbrk put:ignbrk.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3537
    iflags at:#brkint put:brkint.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3538
    iflags at:#ignpar put:ignpar.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3539
    iflags at:#parmrk put:parmrk.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3540
    iflags at:#inpck put:inpck.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3541
    iflags at:#istrip put:istrip.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3542
    iflags at:#inlcr put:inlcr.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3543
    iflags at:#igncr put:igncr.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3544
    iflags at:#icrnl put:icrnl.
16509
2cf139885242 Fixed ExternalStream>>tcgetattr
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16508
diff changeset
  3545
    iflags at:#uiclc put:iuclc.
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3546
    iflags at:#ixon put:ixon.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3547
    iflags at:#ixoff put:ixoff.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3548
    iflags at:#ixany put:ixany.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3549
    iflags at:#imaxbel put:imaxbel.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3550
    iflags at:#iutf8 put:iutf8.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3551
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3552
    oflags at:#opost put:opost.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3553
    oflags at:#onlcr put:onlcr.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3554
    oflags at:#oxtabs put:oxtabs.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3555
    oflags at:#onoteot put:onoteot.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3556
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3557
    cflags at:#csize put:csize.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3558
    cflags at:#cstopb put:cstopb.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3559
    cflags at:#cread put:cread.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3560
    cflags at:#parenb put:parenb.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3561
    cflags at:#parodd put:parodd.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3562
    cflags at:#hupcl put:hupcl.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3563
    cflags at:#clocal put:clocal.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3564
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3565
    lflags at:#echoke put:echoke.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3566
    lflags at:#echoe put:echoe.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3567
    lflags at:#echok put:echok.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3568
    lflags at:#echo put:echo.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3569
    lflags at:#echonl put:echonl.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3570
    lflags at:#echoprt put:echoprt.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3571
    lflags at:#echoctl put:echoctl.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3572
    lflags at:#isig put:isig.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3573
    lflags at:#icanon put:icanon.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3574
    lflags at:#altwerase put:altwerase.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3575
    lflags at:#iexten put:iexten.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3576
    lflags at:#extproc put:extproc.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3577
    lflags at:#tostop put:tostop.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3578
    ^ ret
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3579
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3580
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3581
!ExternalStream methodsFor:'non homogenous reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3582
17609
b06cbfcc4a11 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17608
diff changeset
  3583
next:count into:aCollection startingAt:start
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3584
    "return the next count bytes or characters from the stream."
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3585
17609
b06cbfcc4a11 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17608
diff changeset
  3586
    |readCount|
b06cbfcc4a11 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17608
diff changeset
  3587
b06cbfcc4a11 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17608
diff changeset
  3588
    readCount := self nextBytes:count into:aCollection startingAt:start.
b06cbfcc4a11 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17608
diff changeset
  3589
    readCount = count ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3590
	^ aCollection.
17609
b06cbfcc4a11 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17608
diff changeset
  3591
    ].
b06cbfcc4a11 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17608
diff changeset
  3592
    ^ aCollection copyFrom:1 to:start+readCount-1.
15254
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3593
!
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3594
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3595
nextAvailable:count
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3596
    "return the next count elements of the stream as aCollection.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3597
     If the stream reaches the end before count elements have been read,
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3598
     return what is available. (i.e. a shorter collection).
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3599
     The type of collection is specified in #contentsSpecies."
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3600
3956
51f1a9a4d63f changes for egcs (stdio uses __new / utsname)
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3601
    |buffer n|
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3602
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3603
    buffer := self contentsSpecies uninitializedNew:count.
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3604
    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
  3605
    n == 0 ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3606
	binary ifTrue:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3607
	    ^ #[]
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3608
	].
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3609
	^ ''
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3610
    ].
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3611
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3612
    n ~~ count ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3613
	^ buffer copyTo:n
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3614
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3615
    ^ buffer.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3616
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3617
    "
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3618
     (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
  3619
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:10
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3620
     (ReadStream on:'hello') nextAvailable:3
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3621
     (ReadStream on:'hello') nextAvailable:10
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3622
    "
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3623
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3624
    "Modified: / 16.6.1998 / 15:52:41 / cg"
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3625
!
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3626
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  3627
nextAvailable:count into:aCollection startingAt:pos
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  3628
    "return the next count elements of the stream into aCollection at position pos."
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  3629
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  3630
    ^ self nextAvailableBytes:count into:aCollection startingAt:pos.
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  3631
!
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  3632
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3633
nextAvailableBytes:count into:anObject startingAt:start
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3634
    "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
  3635
     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
  3636
     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
  3637
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3638
     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
  3639
     is raised if the connection is broken.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3640
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3641
     Notice, that in contrast to other methods,
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3642
     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
  3643
     Thus allowing read of partial blocks.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3644
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3645
     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
  3646
     (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
  3647
     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
  3648
     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
  3649
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3650
     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
  3651
     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
  3652
     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
  3653
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3654
    |error|
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3655
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3656
%{
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3657
    FILEPOINTER f;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3658
    int cnt, offs, ret, _buffered;
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3659
    int objSize, nInstBytes;
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3660
    char *cp;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3661
    char *extPtr;
7195
755c46f9b774 also handle subclasses of ExternalBytes (Mapped..)
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
  3662
    OBJ fp;
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3663
    int o_offs;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3664
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3665
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3666
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3667
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3668
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3669
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3670
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3671
	if (((fp = __INST(handle)) != nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3672
	    && (__INST(mode) != @symbol(writeonly))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3673
	    && __bothSmallInteger(count, start)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3674
	) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3675
	    f = __FILEVal(fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3676
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3677
	    cnt = __intVal(count);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3678
	    offs = __intVal(start) - 1;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3679
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3680
	    if (__isExternalBytesLike(anObject)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3681
		OBJ sz;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3682
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3683
		nInstBytes = 0;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3684
		extPtr = (char *)(__externalBytesAddress(anObject));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3685
		if (extPtr == NULL) goto bad;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3686
		sz = __externalBytesSize(anObject);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3687
		if (__isSmallInteger(sz)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3688
		    objSize = __intVal(sz);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3689
		} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3690
		    objSize = 0; /* unknown */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3691
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3692
	    } else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3693
		OBJ oClass = __Class(anObject);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3694
		int nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3695
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3696
		nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3697
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3698
		switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3699
		    case BYTEARRAY:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3700
		    case WORDARRAY:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3701
		    case LONGARRAY:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3702
		    case SWORDARRAY:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3703
		    case SLONGARRAY:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3704
		    case FLOATARRAY:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3705
			break;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3706
		    case DOUBLEARRAY:
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3707
#ifdef __NEED_DOUBLE_ALIGN
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3708
			nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1);
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3709
#endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3710
			break;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3711
		    case LONGLONGARRAY:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3712
		    case SLONGLONGARRAY:
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3713
#ifdef __NEED_LONGLONG_ALIGN
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3714
			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
  3715
#endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3716
			break;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3717
		    default:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3718
			goto bad;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3719
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3720
		extPtr = (char *)0;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3721
		objSize = __Size(anObject) - nInstBytes;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3722
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3723
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3724
	    if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3725
		_buffered = (__INST(buffered) == true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3726
		if (_buffered) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3727
		    __READING__(f);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3728
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3729
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3730
		if (extPtr) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3731
		    __READAVAILBYTES__(ret, f, extPtr+offs, cnt, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3732
		} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3733
		    /*
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3734
		     * on interrupt, anObject may be moved to another location.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3735
		     * So we pass (char *)__InstPtr(anObject) + nInstBytes + offs to the macro __READ_BYTES__,
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3736
		     * to get a new address.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3737
		     */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3738
		    offs += nInstBytes;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3739
		    __READAVAILBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3740
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3741
		/* 0 is NOT an EOF condition here ... */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3742
		if (ret >= 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3743
		    if (__isSmallInteger(__INST(position))) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3744
			INT np = __intVal(__INST(position)) + ret;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3745
			OBJ t;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3746
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3747
			t = __MKINT(np); __INST(position) = t; __STORE(self, t);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3748
		    } else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3749
			__INST(position) = nil; /* i.e. do not know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3750
		    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3751
		    RETURN (__mkSmallInteger(ret));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3752
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3753
		__INST(position) = nil;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3754
		error = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3755
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3756
	}
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3757
    }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3758
bad: ;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3759
%}.
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3760
    hitEOF ifTrue:[^ 0].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3761
    error notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3762
	lastErrorNumber := error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3763
	^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3764
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3765
    handle isNil ifTrue:[^ self errorNotOpen].
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3766
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3767
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3768
     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
  3769
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3770
    ^ self primitiveFailed
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3771
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3772
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3773
nextByte
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3774
    "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
  3775
     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
  3776
     bytes binary value as an integer in 0..255."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3777
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3778
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3779
%{
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  3780
#ifdef __SCHTEAM__
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  3781
    STObject handle = self.instVarAt(I_handle);
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  3782
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  3783
    if (handle != STObject.Nil) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3784
	STObject next;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3785
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3786
	next = handle.nextByte();
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3787
	if (next != STObject.EOF) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3788
	    self.instVarAt_put(I_position, STObject.Nil);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3789
	    return __c__._RETURN( next );
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3790
	}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3791
	self.instVarAt_put(I_hitEOF, STObject.True);
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  3792
    }
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  3793
#else
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3794
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3795
    unsigned char byte;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3796
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3797
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3798
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3799
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3800
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3801
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3802
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3803
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3804
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3805
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3806
	 && (__INST(mode) != @symbol(writeonly))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3807
	    f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3808
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3809
	    _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3810
	    if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3811
		__READING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3812
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3813
	    __READBYTE__(ret, f, &byte, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3814
	    if (ret > 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3815
		if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3816
		    INT np = __intVal(__INST(position)) + 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3817
		    OBJ t;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3818
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3819
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3820
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3821
		    __INST(position) = nil; /* i.e. do not know */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3822
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3823
		RETURN (__mkSmallInteger(byte));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3824
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3825
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3826
	    if (ret == 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3827
		__INST(hitEOF) = true;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3828
	    } else /* ret < 0 */ {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3829
		__INST(position) = nil;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3830
		error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3831
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3832
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3833
    }
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  3834
#endif /* not SCHTEAM */
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3835
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3836
    hitEOF ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3837
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3838
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3839
	^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3840
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3841
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3842
    ^ self errorWriteOnly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3843
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3844
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3845
nextBytes:count into:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3846
    "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
  3847
     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
  3848
     If the receiver is some socket/pipe-like stream, an exception
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3849
     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
  3850
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3851
     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
  3852
     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
  3853
     to only read whats there.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3854
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3855
     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
  3856
     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
  3857
     Thus allowing read of partial blocks.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3858
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3859
     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
  3860
     (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
  3861
     or an externalBytes object (with known size).
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3862
     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
  3863
     fastest possible physical I/O (since no new objects are allocated).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3864
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3865
     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
  3866
     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
  3867
     architectures (unless you prepared the buffer with care),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3868
     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
  3869
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3870
    |error|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3871
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3872
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3873
    int cnt, offs, ret, _buffered;
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3874
    int objSize, nInstBytes;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3875
    char *extPtr;
7195
755c46f9b774 also handle subclasses of ExternalBytes (Mapped..)
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
  3876
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3877
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3878
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3879
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3880
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3881
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3882
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3883
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3884
	if (((fp = __INST(handle)) != nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3885
	    && (__INST(mode) != @symbol(writeonly))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3886
	    && __bothSmallInteger(count, start)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3887
	) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3888
	    f = __FILEVal(fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3889
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3890
	    cnt = __intVal(count);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3891
	    offs = __intVal(start) - 1;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3892
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3893
	    if (__isExternalBytesLike(anObject)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3894
		OBJ sz;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3895
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3896
		nInstBytes = 0;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3897
		extPtr = (char *)(__externalBytesAddress(anObject));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3898
		if (extPtr == NULL) goto bad;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3899
		sz = __externalBytesSize(anObject);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3900
		if (__isSmallInteger(sz)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3901
		    objSize = __intVal(sz);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3902
		} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3903
		    objSize = 0; /* unknown */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3904
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3905
	    } else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3906
		OBJ oClass = __Class(anObject);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3907
		int nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3908
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3909
		nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3910
		switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3911
		    case BYTEARRAY:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3912
		    case WORDARRAY:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3913
		    case LONGARRAY:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3914
		    case SWORDARRAY:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3915
		    case SLONGARRAY:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3916
		    case FLOATARRAY:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3917
			break;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3918
		    case DOUBLEARRAY:
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3919
#ifdef __NEED_DOUBLE_ALIGN
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3920
			nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1);
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3921
#endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3922
			break;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3923
		    case LONGLONGARRAY:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3924
		    case SLONGLONGARRAY:
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3925
#ifdef __NEED_LONGLONG_ALIGN
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3926
			nInstBytes = (nInstBytes-1+__LONGLONG_ALIGN) &~ (__LONGLONG_ALIGN-1);
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3927
#endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3928
			break;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3929
		    default:
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3930
			goto bad;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3931
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3932
		extPtr = (char *)0;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3933
		objSize = __Size(anObject) - nInstBytes;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3934
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3935
	    if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3936
		_buffered = (__INST(buffered) == true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3937
		if (_buffered) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3938
		    __READING__(f);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3939
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3940
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3941
		if (extPtr) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3942
		    __READBYTES__(ret, f, extPtr+offs, cnt, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3943
		} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3944
		    /*
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3945
		     * on interrupt, anObject may be moved to another location.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3946
		     * So we pass anObject, and the offset to the __READBYTES_OBJ__ macro.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3947
		     */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3948
		    offs += nInstBytes;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3949
		    __READBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3950
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3951
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3952
		if (ret > 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3953
		    if (__isSmallInteger(__INST(position))) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3954
			INT np = __intVal(__INST(position)) + ret;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3955
			OBJ t = __MKINT(np); __INST(position) = t; __STORE(self, t);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3956
		    } else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3957
			__INST(position) = nil; /* i.e. do not know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3958
		    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3959
		    RETURN (__mkSmallInteger(ret));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3960
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3961
		if (ret == 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3962
		    __INST(hitEOF) = true;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3963
		} else /* ret < 0 */ {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3964
		    __INST(position) = nil;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3965
		    error = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3966
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3967
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3968
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3969
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3970
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3971
%}.
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3972
    hitEOF ifTrue:[^ 0].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3973
    error notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3974
	lastErrorNumber := error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  3975
	^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3976
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3977
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3978
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3979
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3980
     count not integer or arg not bit-like (String, ByteArray etc)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3981
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3982
    ^ self primitiveFailed
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3983
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3984
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3985
nextInt16MSB:msbFlag
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3986
    "Read two bytes and return the value as a 16-bit signed Integer.
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3987
     If msbFlag is true, value is read with most-significant byte first,
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3988
     otherwise least-significant byte comes first.
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3989
     A nil is returned if EOF is reached (also when EOF is hit after the first byte).
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3990
     Works in both binary and text modes."
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3991
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3992
    |error|
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3993
%{
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3994
    OBJ fp;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3995
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3996
    __INST(lastErrorNumber) = nil;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3997
    if ((__INST(handleType) == nil)
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3998
     || (__INST(handleType) == @symbol(filePointer))
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3999
     || (__INST(handleType) == @symbol(socketFilePointer))
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4000
     || (__INST(handleType) == @symbol(socketHandle))
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4001
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4002
	if (((fp = __INST(handle)) != nil)
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4003
	    && (__INST(mode) != @symbol(writeonly))
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4004
	) {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4005
	    FILEPOINTER f;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4006
	    int ret, _buffered;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4007
	    short value;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4008
	    union {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4009
		unsigned char buffer[2];
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4010
		short shortVal;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4011
	    } u;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4012
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4013
	    f = __FILEVal(fp);
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4014
	    _buffered = (__INST(buffered) == true);
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4015
	    if (_buffered) {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4016
		__READING__(f)
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4017
	    }
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4018
	    __READBYTES__(ret, f, u.buffer, 2, _buffered, __INST(handleType));
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4019
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4020
	    if (ret == 2) {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4021
		if (__isSmallInteger(__INST(position))) {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4022
		    INT np = __intVal(__INST(position)) + 2;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4023
		    OBJ t;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4024
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4025
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4026
		} else {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4027
		    __INST(position) = nil; /* i.e. do not know */
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4028
		}
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4029
		if (msbFlag == true) {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4030
#if defined(__MSBFIRST__)
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4031
		    value = u.shortVal;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4032
#else
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4033
		    value = ((u.buffer[0] & 0xFF) << 8) | (u.buffer[1] & 0xFF);
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4034
#endif
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4035
		} else {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4036
#if defined(__LSBFIRST__)
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4037
		    value = u.shortVal;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4038
#else
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4039
		    value = ((u.buffer[1] & 0xFF) << 8) | (u.buffer[0] & 0xFF);
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4040
#endif
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4041
		}
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4042
		RETURN (__mkSmallInteger(value));
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4043
	    }
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4044
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4045
	    if (ret < 0) {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4046
		__INST(position) = nil; /* i.e. do not know */
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4047
		error = __mkSmallInteger(__threadErrno);
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4048
	    } else /* ret == 0 */ {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4049
		__INST(hitEOF) = true;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4050
	    }
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4051
	}
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4052
    }
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4053
%}.
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4054
    hitEOF ifTrue:[^ self pastEndRead].
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4055
    handle isNil ifTrue:[^ self errorNotOpen].
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4056
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4057
    lastErrorNumber := error.
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4058
    ^ self readError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4059
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4060
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4061
nextInt32MSB:msbFlag
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4062
    "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
  4063
     which may be a LargeInteger.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4064
     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
  4065
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4066
     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
  4067
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4068
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4069
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4070
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4071
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4072
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4073
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4074
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4075
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4076
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4077
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4078
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4079
	if (((fp = __INST(handle)) != nil)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4080
	    && (__INST(mode) != @symbol(writeonly))
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4081
	) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4082
	    FILEPOINTER f;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4083
	    int ret, _buffered;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4084
	    int value;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4085
	    union {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4086
		unsigned char buffer[4];
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4087
		int intVal;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4088
	    } u;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4089
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4090
	    f = __FILEVal(fp);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4091
	    _buffered = (__INST(buffered) == true);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4092
	    if (_buffered) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4093
		__READING__(f)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4094
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4095
	    __READBYTES__(ret, f, u.buffer, 4, _buffered, __INST(handleType));
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4096
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4097
	    if (ret == 4) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4098
		if (__isSmallInteger(__INST(position))) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4099
		    INT np = __intVal(__INST(position)) + 4;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4100
		    OBJ t;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4101
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4102
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4103
		} else {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4104
		    __INST(position) = nil; /* i.e. do not know */
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4105
		}
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4106
		if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4107
#if defined(__MSBFIRST__)
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4108
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4109
#else
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4110
		    value = (u.buffer[0] & 0xFF);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4111
		    value = (value << 8) | (u.buffer[1] & 0xFF);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4112
		    value = (value << 8) | (u.buffer[2] & 0xFF);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4113
		    value = (value << 8) | (u.buffer[3] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4114
#endif
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4115
		} else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4116
#if defined(__LSBFIRST__)
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4117
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4118
#else
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4119
		    value = (u.buffer[3] & 0xFF);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4120
		    value = (value << 8) | (u.buffer[2] & 0xFF);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4121
		    value = (value << 8) | (u.buffer[1] & 0xFF);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4122
		    value = (value << 8) | (u.buffer[0] & 0xFF);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4123
#endif
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4124
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4125
#if __POINTER_SIZE__ == 8
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4126
		RETURN ( __mkSmallInteger(value));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4127
#else
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4128
		RETURN ( __MKINT(value) );
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4129
#endif
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4130
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4131
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4132
	    if (ret < 0) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4133
		__INST(position) = nil;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4134
		error = __mkSmallInteger(__threadErrno);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4135
	    } else /* ret == 0 */ {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4136
		__INST(hitEOF) = true;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4137
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4138
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4139
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4140
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  4141
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4142
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4143
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4144
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4145
    ^ self readError:error.
362
claus
parents: 360
diff changeset
  4146
!
claus
parents: 360
diff changeset
  4147
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4148
nextUnsignedInt16MSB:msbFlag
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4149
    "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
  4150
     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
  4151
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4152
     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
  4153
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4154
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4155
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4156
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4157
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4158
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4159
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4160
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4161
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4162
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4163
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4164
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4165
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4166
	    && (__INST(mode) != @symbol(writeonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4167
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4168
	    FILEPOINTER f;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4169
	    int ret, _buffered;
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4170
	    unsigned int value;
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4171
	    union {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4172
		unsigned char buffer[2];
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4173
		unsigned short shortVal;
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4174
	    } u;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4175
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4176
	    f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4177
	    _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4178
	    if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4179
		__READING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4180
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4181
	    __READBYTES__(ret, f, u.buffer, 2, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4182
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4183
	    if (ret == 2) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4184
		if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4185
		    INT np = __intVal(__INST(position)) + 2;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4186
		    OBJ t;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4187
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4188
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4189
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4190
		    __INST(position) = nil; /* i.e. do not know */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4191
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4192
		if (msbFlag == true) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4193
#if defined(__MSBFIRST__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4194
		    value = u.shortVal;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4195
#else
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4196
		    value = (u.buffer[0] << 8) | u.buffer[1];
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4197
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4198
		} else {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4199
#if defined(__LSBFIRST__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4200
		    value = u.shortVal;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4201
#else
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4202
		    value = (u.buffer[1] << 8) | u.buffer[0];
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4203
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4204
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4205
		RETURN (__mkSmallInteger(value));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4206
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4207
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4208
	    if (ret < 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4209
		__INST(position) = nil; /* i.e. do not know */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4210
		error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4211
	    } else /* ret == 0 */ {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4212
		__INST(hitEOF) = true;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4213
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4214
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4215
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4216
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  4217
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4218
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4219
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4220
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4221
    ^ self readError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4222
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4223
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4224
nextUnsignedInt32MSB:msbFlag
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4225
    "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
  4226
     a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4227
     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
  4228
     least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4229
     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
  4230
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4231
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4232
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4233
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4234
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4235
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4236
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4237
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4238
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4239
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4240
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4241
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4242
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4243
	    && (__INST(mode) != @symbol(writeonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4244
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4245
	    FILEPOINTER f;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4246
	    int ret, _buffered;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4247
	    unsigned INT value;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4248
	    union {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4249
		unsigned char buffer[4];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4250
		unsigned int intVal;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4251
	    } u;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4252
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4253
	    f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4254
	    _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4255
	    if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4256
		__READING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4257
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4258
	    __READBYTES__(ret, f, u.buffer, 4, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4259
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4260
	    if (ret == 4) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4261
		if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4262
		    INT np = __intVal(__INST(position)) + 4;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4263
		    OBJ t;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4264
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4265
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4266
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4267
		    __INST(position) = nil; /* i.e. do not know */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4268
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4269
		if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4270
#if defined(__MSBFIRST__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4271
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4272
#else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4273
		    value = u.buffer[0];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4274
		    value = (value << 8) | u.buffer[1];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4275
		    value = (value << 8) | u.buffer[2];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4276
		    value = (value << 8) | u.buffer[3];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4277
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4278
		} else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4279
#if defined(__LSBFIRST__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4280
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4281
#else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4282
		    value = u.buffer[3];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4283
		    value = (value << 8) | u.buffer[2];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4284
		    value = (value << 8) | u.buffer[1];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4285
		    value = (value << 8) | u.buffer[0];
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4286
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4287
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4288
#if __POINTER_SIZE__ == 8
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4289
		value &= 0xFFFFFFFF;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4290
		RETURN (__mkSmallInteger(value));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4291
#else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4292
		if (value <= _MAX_INT) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4293
		    RETURN (__mkSmallInteger(value));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4294
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4295
		RETURN (__MKULARGEINT(value) );
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4296
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4297
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4298
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4299
	    if (ret < 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4300
		__INST(position) = nil; /* i.e. do not know */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4301
		error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4302
	    } else /* ret == 0 */ {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4303
		__INST(hitEOF) = true;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4304
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4305
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4306
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4307
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  4308
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4309
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4310
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4311
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4312
    ^ self readError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4313
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4314
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4315
nextWord
15452
e2a3b2dc064b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15435
diff changeset
  4316
    <resource: #obsolete>
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4317
    "in text-mode:
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4318
	 read the alphaNumeric next word (i.e. up to non letter-or-digit).
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4319
	 return a string containing those characters.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4320
     in binary-mode:
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4321
	 read two bytes (msb-first) and return the value as a 16-bit
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4322
	 unsigned Integer (for compatibility with other smalltalks)"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4323
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4324
    binary ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4325
	self obsoleteMethodWarning:'use #nextUnsignedInt16MSB:true'.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4326
	^ self nextUnsignedInt16MSB:true
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4327
    ].
14518
7dad78183779 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14440
diff changeset
  4328
    self obsoleteMethodWarning:'use #nextAlphaNumericWord'.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4329
    ^ self nextAlphaNumericWord
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4330
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4331
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4332
!ExternalStream methodsFor:'non homogenous writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4333
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4334
nextPutByte:aByteValue
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4335
    "write a byte.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4336
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4337
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4338
    |error|
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4339
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4340
%{
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4341
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4342
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4343
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4344
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4345
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4346
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4347
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4348
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4349
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4350
	 && (__INST(mode) != @symbol(readonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4351
	 && __isSmallInteger(aByteValue)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4352
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4353
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4354
	    int _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4355
	    FILEPOINTER f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4356
	    char c = __intVal(aByteValue);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4357
	    int cnt;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4358
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4359
	    if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4360
		__WRITING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4361
	    }
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4362
#ifdef __win32__
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4363
	    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4364
		cnt = __win32_fwrite(&c, 1, 1, f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4365
	    } else
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  4366
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4367
	    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4368
		__WRITEBYTE__(cnt, f, &c, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4369
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4370
	    if (cnt == 1) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4371
		if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4372
		    INT np = __intVal(__INST(position)) + 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4373
		    OBJ t;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4374
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4375
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4376
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4377
		    __INST(position) = nil; /* i.e. do not know */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4378
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4379
		RETURN (self);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4380
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4381
	    if (cnt < 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4382
		__INST(position) = nil; /* i.e. do not know */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4383
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4384
	    error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4385
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4386
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4387
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4388
    handle isNil ifTrue:[self errorNotOpen. ^ self].
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4389
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4390
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4391
    self writeError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4392
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4393
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4394
nextPutInt16:anIntegerOrCharacter MSB:msbFlag
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4395
    "Write the argument, anIntegerOrCharacter as a short (two bytes).
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4396
     If msbFlag is true, data is written most-significant byte first;
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4397
     otherwise least first.
22266
661a9c5e7fbd #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22245
diff changeset
  4398
     Notice that integers in the range 16r-8000 to +16rFFFF can be written
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4399
     (i.e. both signed and unsigned int32 values can be written.
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4400
     Works in both binary and text modes."
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4401
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4402
    |error|
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4403
%{
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4404
    int num;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4405
    union {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4406
	char bytes[2];
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4407
	short shortVal;
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4408
    } u;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4409
    OBJ fp;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4410
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4411
    __INST(lastErrorNumber) = nil;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4412
    if ((__INST(handleType) == nil)
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4413
     || (__INST(handleType) == @symbol(filePointer))
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4414
     || (__INST(handleType) == @symbol(socketFilePointer))
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4415
     || (__INST(handleType) == @symbol(socketHandle))
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4416
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4417
	if (((fp = __INST(handle)) != nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4418
	 && (__INST(mode) != @symbol(readonly))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4419
	) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4420
	    FILEPOINTER f = __FILEVal(fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4421
	    int _buffered = (__INST(buffered) == true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4422
	    int cnt;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4423
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4424
	    if (__isSmallInteger(anIntegerOrCharacter)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4425
		num = __intVal(anIntegerOrCharacter);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4426
	    } else if (__isCharacter(anIntegerOrCharacter)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4427
		num = __smallIntegerVal(__characterVal(anIntegerOrCharacter));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4428
	    } else
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4429
		goto out;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4430
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4431
	    if (msbFlag == true) {
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4432
#if defined(__MSBFIRST__)
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4433
		u.shortVal = num;
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4434
#else
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4435
		u.bytes[0] = (num >> 8) & 0xFF;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4436
		u.bytes[1] = num & 0xFF;
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4437
#endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4438
	    } else {
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4439
#if defined(__LSBFIRST__)
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4440
		u.shortVal = num;
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4441
#else
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4442
		u.bytes[1] = (num >> 8) & 0xFF;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4443
		u.bytes[0] = num & 0xFF;
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4444
#endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4445
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4446
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4447
	    if (_buffered) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4448
		__WRITING__(f)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4449
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4450
	    __WRITEBYTES__(cnt, f, u.bytes, 2, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4451
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4452
	    if (cnt == 2) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4453
		if (__isSmallInteger(__INST(position))) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4454
		    INT np = __intVal(__INST(position)) + 2;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4455
		    OBJ t;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4456
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4457
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4458
		} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4459
		    __INST(position) = nil; /* i.e. do not know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4460
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4461
		RETURN ( self );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4462
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4463
	    __INST(position) = nil; /* i.e. do not know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4464
	    error = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4465
	}
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4466
    }
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4467
out:;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4468
%}.
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4469
    error notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4470
	lastErrorNumber := error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4471
	self writeError:error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4472
	^ self
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4473
    ].
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4474
    handle isNil ifTrue:[self errorNotOpen. ^ self].
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4475
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4476
    self argumentMustBeInteger
22266
661a9c5e7fbd #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22245
diff changeset
  4477
661a9c5e7fbd #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22245
diff changeset
  4478
    "Modified: / 19-09-2017 / 16:32:29 / stefan"
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4479
!
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4480
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4481
nextPutInt16LSB:anIntegerOrCharacter
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4482
    "do not remove.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4483
     See #patchByteOrderOptimizedMethods"
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4484
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4485
    self nextPutInt16:anIntegerOrCharacter MSB:false
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4486
!
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4487
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4488
nextPutInt16MSB:anIntegerOrCharacter
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4489
    "do not remove.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4490
     See #patchByteOrderOptimizedMethods"
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4491
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4492
    self nextPutInt16:anIntegerOrCharacter MSB:true
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4493
!
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4494
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4495
nextPutInt16NATIVE:anIntegerOrCharacter
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4496
    "Write the argument, anIntegerOrCharacter as a short (two bytes) in native byte order.
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4497
     This is the CPU-specific byte order (LSB on x86, MSB on sparc, VAX and possibly on ARM).
22266
661a9c5e7fbd #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22245
diff changeset
  4498
     Notice that integers in the range 16r-8000 to +16rFFFF can be written
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4499
     (i.e. both signed and unsigned int32 values can be written.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4500
     Works in both binary and text modes."
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4501
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4502
    |error|
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4503
%{
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4504
    int num;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4505
    union {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4506
	char bytes[2];
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4507
	short shortVal;
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4508
    } u;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4509
    OBJ fp;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4510
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4511
    __INST(lastErrorNumber) = nil;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4512
    if ((__INST(handleType) == nil)
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4513
     || (__INST(handleType) == @symbol(filePointer))
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4514
     || (__INST(handleType) == @symbol(socketFilePointer))
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4515
     || (__INST(handleType) == @symbol(socketHandle))
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4516
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4517
	if (((fp = __INST(handle)) != nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4518
	 && (__INST(mode) != @symbol(readonly))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4519
	) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4520
	    FILEPOINTER f = __FILEVal(fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4521
	    int _buffered = (__INST(buffered) == true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4522
	    int cnt;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4523
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4524
	    if (__isSmallInteger(anIntegerOrCharacter)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4525
		num = __intVal(anIntegerOrCharacter);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4526
	    } else if (__isCharacter(anIntegerOrCharacter)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4527
		num = __smallIntegerVal(__characterVal(anIntegerOrCharacter));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4528
	    } else
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4529
		goto out;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4530
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4531
	    u.shortVal = num;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4532
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4533
	    if (_buffered) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4534
		__WRITING__(f)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4535
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4536
	    __WRITEBYTES__(cnt, f, u.bytes, 2, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4537
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4538
	    if (cnt == 2) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4539
		if (__isSmallInteger(__INST(position))) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4540
		    INT np = __intVal(__INST(position)) + 2;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4541
		    OBJ t;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4542
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4543
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4544
		} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4545
		    __INST(position) = nil; /* i.e. do not know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4546
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4547
		RETURN ( self );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4548
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4549
	    __INST(position) = nil; /* i.e. do not know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4550
	    error = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4551
	}
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4552
    }
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4553
out:;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4554
%}.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4555
    self nextPutInt16:anIntegerOrCharacter MSB:(UninterpretedBytes isBigEndian).
22266
661a9c5e7fbd #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22245
diff changeset
  4556
661a9c5e7fbd #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22245
diff changeset
  4557
    "Modified: / 19-09-2017 / 16:32:40 / stefan"
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4558
!
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4559
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4560
nextPutInt32:aNumber MSB:msbFlag
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4561
    "Write the argument, aNumber as a long (four bytes).
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4562
     If msbFlag is true, data is written most-significant byte first;
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4563
     otherwise least first.
22266
661a9c5e7fbd #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22245
diff changeset
  4564
     Notice that integers in the range 16r-80000000 to +16rFFFFFFFF can be written
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4565
     (i.e. both signed and unsigned int32 values can be written.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4566
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4567
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4568
    |error|
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4569
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4570
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4571
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4572
    union {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4573
	char bytes[4];
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4574
	int intVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4575
    } u;
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4576
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4577
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4578
    __INST(lastErrorNumber) = nil;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4579
    if (__isSmallInteger(aNumber)) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4580
	num = __intVal(aNumber);
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4581
    } else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4582
#if __POINTER_SIZE__ == 8
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4583
	// always more than 4-bytes
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4584
	goto badArg;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4585
#else
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4586
	num = __longIntVal(aNumber);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4587
	if (num == 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4588
	    num = __signedLongIntVal(aNumber);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4589
	    if (num == 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4590
		/* bad arg or out-of-range integer
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4591
		 * (handled by the fallBack code)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4592
		 */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4593
		goto badArg;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4594
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4595
	}
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4596
#endif
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4597
    }
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4598
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4599
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4600
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4601
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4602
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4603
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4604
	if (((fp = __INST(handle)) != nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4605
	 && (__INST(mode) != @symbol(readonly))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4606
	) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4607
	    int _buffered = (__INST(buffered) == true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4608
	    FILEPOINTER f = __FILEVal(fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4609
	    int cnt;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4610
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4611
	    if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4612
#if defined(__MSBFIRST__)
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4613
		u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4614
#else
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4615
		u.bytes[0] = (num >> 24) & 0xFF;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4616
		u.bytes[1] = (num >> 16) & 0xFF;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4617
		u.bytes[2] = (num >> 8) & 0xFF;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4618
		u.bytes[3] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4619
#endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4620
	    } else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4621
#if defined(__LSBFIRST__)
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4622
		u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4623
#else
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4624
		u.bytes[3] = (num >> 24) & 0xFF;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4625
		u.bytes[2] = (num >> 16) & 0xFF;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4626
		u.bytes[1] = (num >> 8) & 0xFF;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4627
		u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4628
#endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4629
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4630
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4631
	    if (_buffered) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4632
		__WRITING__(f)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4633
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4634
	    __WRITEBYTES__(cnt, f, u.bytes, 4, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4635
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4636
	    if (cnt == 4) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4637
		if (__isSmallInteger(__INST(position))) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4638
		    INT np = __intVal(__INST(position)) + 4;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4639
		    OBJ t;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4640
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4641
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4642
		} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4643
		    __INST(position) = nil; /* i.e. do not know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4644
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4645
		RETURN ( self );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4646
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4647
	    __INST(position) = nil; /* i.e. do not know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4648
	    error = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4649
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4650
    }
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4651
badArg: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4652
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4653
    handle isNil ifTrue:[self errorNotOpen. ^ self].
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4654
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4655
    error notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4656
	lastErrorNumber := error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4657
	self writeError:error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4658
	^ self
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4659
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4660
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4661
    aNumber isInteger ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4662
	^ super nextPutInt32:aNumber MSB:msbFlag
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4663
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4664
    self argumentMustBeInteger
22266
661a9c5e7fbd #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22245
diff changeset
  4665
661a9c5e7fbd #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22245
diff changeset
  4666
    "Modified: / 19-09-2017 / 16:32:50 / stefan"
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4667
!
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4668
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4669
nextPutInt32LSB:anIntegerOrCharacter
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4670
    "do not remove.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4671
     See #patchByteOrderOptimizedMethods"
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4672
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4673
    self nextPutInt32:anIntegerOrCharacter MSB:false
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4674
!
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4675
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4676
nextPutInt32MSB:anIntegerOrCharacter
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4677
    "do not remove.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4678
     See #patchByteOrderOptimizedMethods"
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4679
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4680
    self nextPutInt32:anIntegerOrCharacter MSB:true
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4681
!
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4682
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4683
nextPutInt32NATIVE:anInteger
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4684
    "Write the argument, anInteger as a long (four bytes) in native byte order.
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4685
     This is the CPU-specific byte order (LSB on x86, MSB on sparc, VAX and possibly on ARM).
22266
661a9c5e7fbd #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22245
diff changeset
  4686
     Notice that integers in the range 16r-80000000 to +16rFFFFFFFF can be written
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4687
     (i.e. both signed and unsigned int32 values can be written.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4688
     Works in both binary and text modes.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4689
     Notice: this message should not be sent explicitly by ANY program.
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4690
	     the following implementation replaces the code of either nextPutInt32MSB or LSB
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4691
	     dynamically (see #initialize on the class side)"
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4692
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4693
    |error|
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4694
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4695
%{
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4696
    int num;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4697
    union {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4698
	char bytes[4];
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4699
	int intVal;
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4700
    } u;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4701
    OBJ fp;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4702
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4703
    __INST(lastErrorNumber) = nil;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4704
    if (__isSmallInteger(anInteger)) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4705
	num = __intVal(anInteger);
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4706
    } else {
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4707
#if __POINTER_SIZE__ == 8
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4708
	// always more than 4-bytes
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4709
	goto badArg;
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4710
#else
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4711
	num = __longIntVal(anInteger);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4712
	if (num == 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4713
	    num = __signedLongIntVal(anInteger);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4714
	    if (num == 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4715
		/* bad arg or out-of-range integer
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4716
		 * (handled by the fallBack code)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4717
		 */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4718
		goto badArg;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4719
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4720
	}
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4721
#endif
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4722
    }
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4723
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4724
    if ((__INST(handleType) == nil)
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4725
     || (__INST(handleType) == @symbol(filePointer))
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4726
     || (__INST(handleType) == @symbol(socketFilePointer))
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4727
     || (__INST(handleType) == @symbol(socketHandle))
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4728
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4729
	if (((fp = __INST(handle)) != nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4730
	 && (__INST(mode) != @symbol(readonly))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4731
	) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4732
	    int _buffered = (__INST(buffered) == true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4733
	    FILEPOINTER f = __FILEVal(fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4734
	    int cnt;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4735
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4736
	    u.intVal = num;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4737
	    if (_buffered) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4738
		__WRITING__(f)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4739
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4740
	    __WRITEBYTES__(cnt, f, u.bytes, 4, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4741
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4742
	    if (cnt == 4) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4743
		if (__isSmallInteger(__INST(position))) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4744
		    INT np = __intVal(__INST(position)) + 4;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4745
		    OBJ t;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4746
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4747
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4748
		} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4749
		    __INST(position) = nil; /* i.e. do not know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4750
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4751
		RETURN ( self );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4752
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4753
	    __INST(position) = nil; /* i.e. do not know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4754
	    error = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4755
	}
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4756
    }
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4757
badArg: ;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4758
%}.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4759
    self nextPutInt32:anInteger MSB:(UninterpretedBytes isBigEndian)
22266
661a9c5e7fbd #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22245
diff changeset
  4760
661a9c5e7fbd #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22245
diff changeset
  4761
    "Modified: / 19-09-2017 / 16:32:59 / stefan"
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4762
!
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4763
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4764
nextPutUtf16:aCharacter
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4765
    "append my UTF-16 MSB representation to the argument, aStream.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4766
     UTF-16 can encode only characters with code points between 0 to 16r10FFFF."
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4767
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4768
    self nextPutUtf16Bytes:aCharacter MSB:true
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4769
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4770
    "
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4771
	(FileStream newTemporary
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4772
	    nextPutUtf16:$B;
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  4773
	    nextPutUtf16:$Ä;
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4774
	    nextPutUtf16:(Character codePoint:16r10CCCC);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4775
	    reset;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4776
	    binary;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4777
	    contents)
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4778
    "
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4779
!
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4780
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4781
nextPutUtf16:aCharacter MSB:msbFlag
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4782
    "append my UTF-16 MSB representation to the argument, aStream.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4783
     UTF-16 can encode only characters with code points between 0 to 16r10FFFF."
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4784
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4785
    self nextPutUtf16Bytes:aCharacter MSB:msbFlag
10
claus
parents: 5
diff changeset
  4786
! !
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4787
7053
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4788
!ExternalStream methodsFor:'positioning'!
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4789
15619
3f2e6f5fab12 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15496
diff changeset
  4790
position
7053
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4791
    self subclassResponsibility
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4792
!
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4793
15619
3f2e6f5fab12 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15496
diff changeset
  4794
position:index0Based
7053
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4795
    self subclassResponsibility
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4796
! !
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4797
12631
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4798
!ExternalStream methodsFor:'printing & storing'!
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4799
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4800
printOn:aStream
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4801
    aStream
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4802
	nextPutAll:self className;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4803
	nextPut:$(.
22245
7099c8e96ff9 #QUALITY by stefan
Stefan Vogel <sv@exept.de>
parents: 22234
diff changeset
  4804
    handleType printOn:aStream.
7099c8e96ff9 #QUALITY by stefan
Stefan Vogel <sv@exept.de>
parents: 22234
diff changeset
  4805
    aStream nextPutAll:':('.
12631
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4806
    handle printOn:aStream.
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4807
    aStream nextPutAll:'))'
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4808
! !
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4809
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4810
!ExternalStream methodsFor:'private'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4811
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4812
clearEOF
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4813
    hitEOF := false
20987
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  4814
!
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4815
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4816
closeFile
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4817
    "low level close - may be redefined in subclasses
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4818
     Don't send this message, send #close instead"
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4819
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4820
    |fp error|
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4821
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4822
    handle isNil ifTrue:[
22681
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4823
        ^ self.
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4824
    ].
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4825
    fp := handle.
19767
2647abae8b3c #BUGFIX by sr
sr
parents: 19766
diff changeset
  4826
    "/ (didWrite==true and:[binary ~~ true and:[eolMode = #crlf]]) ifTrue: [ self breakPoint:#sr ].
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4827
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4828
%{
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4829
    int rslt;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4830
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4831
    if (__INST(handleType) == @symbol(socketHandle)) {
22681
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4832
        SOCKET sock = (SOCKET)(__FILEVal(fp));
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4833
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4834
        if (@global(FileOpenTrace) == true) {
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4835
            fprintf(stderr, "close socket [ExternalStream] %"_lx_"\n", (INT)sock);
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4836
        }
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4837
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4838
        // whether the close() will be successful or not - the handle is invalid now!
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4839
        __INST(handle) = nil;
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4840
        do {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4841
#ifdef __win32__
22681
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4842
            rslt = __STX_WSA_NOINT_CALL1("closesocket", closesocket, sock);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4843
#else
22681
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4844
            rslt = close(sock);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4845
#endif
22681
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4846
        } while((rslt < 0) && (__threadErrno == EINTR));
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4847
    } else if ((__INST(handleType) == nil)
22681
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4848
               || (__INST(handleType) == @symbol(filePointer))
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4849
               || (__INST(handleType) == @symbol(socketFilePointer))
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4850
               || (__INST(handleType) == @symbol(pipeFilePointer)))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4851
    {
22681
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4852
        FILEPOINTER f = __FILEVal(fp);
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4853
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4854
        if (@global(FileOpenTrace) == true) {
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4855
            fprintf(stderr, "fclose [ExternalStream] %"_lx_"\n", (INT)f);
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4856
        }
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4857
        // whether the close() will be successful or not - the handle is invalid now!
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4858
        __INST(handle) = nil;
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4859
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4860
#ifdef __win32__
22681
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4861
        if (__INST(mode) != @symbol(readonly) && __INST(buffered) != false) {
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4862
            // do a fflush() first, so that fclose() doesn't block
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4863
            // we suspect, that EINTR causes problems in fclose()
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4864
            do {
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4865
                __threadErrno = 0;
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4866
                rslt = __STX_C_CALL1("fflush", fflush, f);
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4867
            } while((rslt < 0) && (__threadErrno == EINTR));
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4868
        }
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4869
        do {
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4870
            __threadErrno = 0;
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4871
            rslt = __STX_C_NOINT_CALL1("fclose", fclose, f);
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4872
        } while((rslt < 0) && (__threadErrno == EINTR));
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4873
#else
22681
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4874
        // cg: not sure why, but on osx, I get blocked occasionally in fclose
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4875
        // lets try this:
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4876
        if ((__INST(mode) != @symbol(readonly)) && (__INST(buffered) != false)) {
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4877
            // do a fflush() first, so that fclose() doesn't block
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4878
            // we suspect, that EINTR causes problems in fclose()
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4879
            do {
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4880
                clearerr(f);
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4881
                __threadErrno = 0;
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4882
                __BEGIN_INTERRUPTABLE__
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4883
                rslt = fflush(f);
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4884
                __END_INTERRUPTABLE__
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4885
            } while((rslt < 0) && (__threadErrno == EINTR));
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4886
        }
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4887
        do {
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4888
            __threadErrno = 0;
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4889
            __BEGIN_INTERRUPTABLE__
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4890
            rslt = fclose(f);
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4891
            __END_INTERRUPTABLE__
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4892
        } while((rslt < 0) && (__threadErrno == EINTR));
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4893
#endif
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4894
    } else {
22681
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4895
        error = @symbol(badHandleType);
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4896
        goto out;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4897
    }
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4898
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4899
    if (rslt < 0) {
22681
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4900
        error = __mkSmallInteger(__threadErrno);
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4901
        goto out;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4902
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4903
    RETURN (self);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4904
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4905
out:;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4906
%}.
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4907
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4908
    error notNil ifTrue:[
22681
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4909
        error isInteger ifTrue:[
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4910
            lastErrorNumber := error.
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4911
            mode == #readonly ifTrue:[
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4912
                self ioError:error.
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4913
            ] ifFalse:[
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4914
                self writeError:error.
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4915
            ].
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4916
            ^ self.
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4917
        ].
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4918
        self primitiveFailed:error.
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4919
        ^ self.
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4920
    ].
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4921
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4922
    "/ fallback for rel5
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4923
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4924
    fp := handle.
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4925
    fp notNil ifTrue:[
22681
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4926
        handle := nil.
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4927
        self closeFile:fp
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4928
    ]
22681
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4929
292b3728d9e2 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22646
diff changeset
  4930
    "Modified: / 19-04-2018 / 10:57:54 / stefan"
20987
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  4931
!
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4932
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4933
closeFile:handle
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4934
    "for rel5 only"
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4935
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4936
    self primitiveFailed
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4937
!
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4938
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  4939
connectTo:aFileDescriptor withMode:modeSymbol handleType:handleTypeSymbol
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4940
    "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
  4941
     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
  4942
     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
  4943
     a Stream object.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4944
     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
  4945
     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
  4946
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4947
    |error openmode|
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4948
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4949
    handle notNil ifTrue:[^ self errorAlreadyOpen].
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  4950
    mode := modeSymbol.
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  4951
    openmode := self fopenMode.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4952
%{
12683
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4953
    FILEPOINTER f = 0;
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4954
    OBJ fp;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4955
    FILE *fdopen();
12683
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4956
    int fd = -2;
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4957
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4958
    if (__isStringLike(openmode)) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4959
#ifdef __win32__
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4960
	__stxWrapApiEnterCritical();
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4961
#endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4962
	if (__isSmallInteger(aFileDescriptor)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4963
	    fd = __intVal(aFileDescriptor);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4964
	}
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4965
#ifdef __win32__
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4966
	else if (__isExternalAddressLike(aFileDescriptor)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4967
	    fd = _open_osfhandle((long)__externalAddressVal(aFileDescriptor), O_BINARY);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4968
	    if (fd < 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4969
		if (__threadErrno == 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4970
		    // no more file descriptors
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4971
		    __threadErrno = EMFILE;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4972
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4973
		error = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4974
		__stxWrapApiLeaveCritical();
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4975
		goto out;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4976
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4977
	}
12683
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4978
#endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4979
	f = (FILEPOINTER) fdopen(fd, (char *)__stringVal(openmode));
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4980
#ifdef __win32__
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4981
	__stxWrapApiLeaveCritical();
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4982
#endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4983
	if (f == NULL) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4984
	    error =__mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4985
	} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4986
	    if (@global(FileOpenTrace) == true) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4987
		fprintf(stderr, "fdopen [ExternalStream] %"_ld_" (%"_lx_") -> %"_lx_"\n", (INT)fd, (INT)fd, (INT)f);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4988
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4989
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4990
	    fp = __MKFILEPOINTER(f); __INST(handle) = fp; __STORE(self, fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4991
	}
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4992
    }
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4993
out:;
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4994
%}.
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4995
    error notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4996
	"
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4997
	 the open failed for some reason ...
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4998
	"
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  4999
	OperatingSystem closeFd:aFileDescriptor.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5000
	lastErrorNumber := error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5001
	position := nil.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5002
	^ self openError:error
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5003
    ].
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  5004
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  5005
    position := 0.
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  5006
    buffered isNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5007
	buffered := true.       "default is buffered"
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5008
    ].
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  5009
    handleType := handleTypeSymbol.
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  5010
    self registerForFinalization.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5011
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5012
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5013
dupFd
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5014
    "duplicate my file descriptor"
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5015
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5016
    |fd dupFd|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5017
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5018
    fd := self fileHandle.
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5019
    fd isNil ifTrue:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5020
	^ self errorNotOpen.
20690
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  5021
    ].
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5022
    dupFd := OperatingSystem dup:fd.
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5023
    self setFileHandle:dupFd mode:self fopenMode.
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5024
!
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5025
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5026
fopenMode
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5027
   "answer the mode for fopen.
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5028
    Only used internally"
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5029
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5030
   mode == #readonly ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5031
	^ ReadMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5032
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5033
   mode == #writeonly ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5034
	^ WriteMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5035
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5036
   mode == #readWrite ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5037
	^ ReadWriteMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5038
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5039
   mode == #append ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5040
	^ AppendMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5041
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  5042
   ^ ReadWriteMode
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5043
!
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5044
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5045
open:aPath withMode:openModeString
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5046
    "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
  5047
     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
  5048
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5049
    |ok error|
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5050
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5051
    ok := false.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5052
%{
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5053
    FILE *f;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5054
    OBJ fp;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5055
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5056
    if (__isStringLike(aPath) && __isStringLike(openModeString)) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  5057
#ifdef __win32__
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
  5058
# if 1
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5059
       f = fopen((char *) __stringVal(aPath), (char *) __stringVal(openModeString));
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5060
# else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5061
	__BEGIN_INTERRUPTABLE__
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5062
	do {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5063
	    f = fopen((char *) __stringVal(aPath), (char *) __stringVal(openModeString));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5064
	} while ((f == NULL) && (__threadErrno == EINTR));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5065
	__END_INTERRUPTABLE__
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5066
# endif
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5067
#else /* UNIX */
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5068
	__BEGIN_INTERRUPTABLE__
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5069
	do {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5070
	    f = fopen((char *) __stringVal(aPath), (char *) __stringVal(openModeString));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5071
	} while ((f == NULL) && (__threadErrno == EINTR));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5072
	__END_INTERRUPTABLE__
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5073
#endif /* UNIX */
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5074
	if (f == NULL) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5075
	    error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5076
	} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5077
	    if (@global(FileOpenTrace) == true) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5078
		fprintf(stderr, "fopen %s [ExternalStream] -> %"_lx_"\n", __stringVal(aPath), (INT)f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5079
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5080
	    fp = __MKFILEPOINTER(f); __INST(handle) = fp; __STORE(self, fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5081
	    __INST(handleType) = @symbol(filePointer);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5082
	    ok = true;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5083
	}
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5084
    }
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5085
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5086
    ok ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5087
	position := 0.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5088
	self registerForFinalization.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5089
	^ self.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5090
    ].
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5091
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5092
	"
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5093
	 the open failed for some reason ...
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5094
	"
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5095
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5096
	self openError:error.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5097
    ].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5098
    self primitiveFailed.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5099
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5100
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5101
reOpen
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5102
    "USERS WILL NEVER INVOKE THIS METHOD
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5103
     sent after snapin to reopen streams.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5104
     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
  5105
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5106
    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
  5107
    handle := nil.
18779
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  5108
    self unregisterForFinalization.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5109
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5110
    "Modified: 10.1.1997 / 17:50:44 / cg"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5111
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5112
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5113
setAccessor:what to:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5114
    "set the filePointer/fileHandle to the given one;
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5115
     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
  5116
     externally provided handle."
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5117
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5118
    handle := something.
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5119
    handleType := what.
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5120
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5121
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5122
setFileHandle:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5123
    "set the fileHandle to the given one;
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5124
     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
  5125
     externally provided file handle."
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5126
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5127
    self setAccessor:#fileHandle to:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5128
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5129
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5130
setFileHandle:anIntegerOrExternalAddress mode:openMode
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5131
    "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
  5132
     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
  5133
     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
  5134
     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
  5135
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5136
%{
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5137
    FILEPOINTER f;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5138
    OBJ fp;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5139
    FILE *fdopen();
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5140
    int fd;
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5141
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5142
    if (!__isStringLike(openMode))
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5143
	goto err;
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5144
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  5145
#ifdef __win32__
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  5146
    __stxWrapApiEnterCritical();
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5147
    if (__isExternalAddressLike(anIntegerOrExternalAddress) ) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5148
	HANDLE __fileHandle = (HANDLE)__externalAddressVal(anIntegerOrExternalAddress);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5149
	fd = _open_osfhandle((long)__fileHandle, O_BINARY);      /* should we handle readonly, append or text mode? */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5150
	if (fd < 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5151
	    __stxWrapApiLeaveCritical();
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5152
	    CloseHandle(__fileHandle);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5153
	    goto err;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5154
	}
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5155
    } else
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5156
#endif
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5157
    if (__isSmallInteger(anIntegerOrExternalAddress)) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5158
	fd = __smallIntegerVal(anIntegerOrExternalAddress);
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5159
    } else {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  5160
#ifdef __win32__
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5161
	__stxWrapApiLeaveCritical();
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  5162
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5163
	goto err;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5164
    }
10997
8ec53332c725 _fdopen -> fdopen()
Stefan Vogel <sv@exept.de>
parents: 10995
diff changeset
  5165
    f = fdopen(fd, __stringVal(openMode));
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  5166
#ifdef __win32__
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  5167
    __stxWrapApiLeaveCritical();
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  5168
#endif
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5169
    if (f != NULL) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5170
	if (@global(FileOpenTrace) == true) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5171
	    fprintf(stderr, "fdopen [ExternalStream] %d -> %"_lx_"\n", fd, (INT)f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5172
	}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5173
	fp = __MKFILEPOINTER(f); __INST(handle) = fp; __STORE(self, fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5174
	__INST(handleType) = @symbol(filePointer);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5175
	RETURN (self);
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5176
    }
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5177
err:;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5178
%}.
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5179
    ^ self primitiveFailed
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5180
!
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5181
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5182
setFilePointer:something
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5183
    "set the filePointer to the given one;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5184
     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
  5185
     externally provided file."
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5186
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5187
    self setAccessor:#filePointer to:something
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5188
!
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5189
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5190
setLastError:aNumber
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5191
    lastErrorNumber := aNumber
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5192
!
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5193
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5194
setSocketHandle:something
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5195
    "set the socketHandle to the given one;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5196
     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
  5197
     externally provided socket handle."
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5198
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5199
    self setAccessor:#socketHandle to:something
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5200
! !
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5201
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5202
!ExternalStream methodsFor:'queries'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5203
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5204
nextError
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5205
    "return the error by trying to read something.
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5206
     Should only be used, when we know, that a read operation
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5207
     will return an error (otherwise a character may be lost).
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5208
     Return an integer (error number), 0 (EOF) or nil (no error)"
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5209
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5210
%{ /*NOCONTEXT*/
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5211
    FILEPOINTER f;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5212
    int ret, _buffered;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5213
    OBJ fp;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5214
    unsigned char ch;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5215
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5216
    if ((__INST(handleType) == nil)
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5217
     || (__INST(handleType) == @symbol(filePointer))
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5218
     || (__INST(handleType) == @symbol(socketFilePointer))
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5219
     || (__INST(handleType) == @symbol(socketHandle))
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5220
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5221
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5222
	    && (__INST(mode) != @symbol(writeonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5223
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5224
	    f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5225
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5226
	    _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5227
	    if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5228
		__READING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5229
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5230
	    __READBYTE__(ret, f, &ch, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5231
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5232
	    if (ret > 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5233
		RETURN(nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5234
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5235
	    if (ret < 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5236
		RETURN(__mkSmallInteger(__threadErrno));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5237
	    } else /* ret == 0 */ {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5238
		RETURN(__mkSmallInteger(0)); /* EOF */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5239
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5240
	}
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5241
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5242
%}.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5243
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5244
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5245
numAvailable
21130
a3a7d6f1a3b8 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21097
diff changeset
  5246
    <resource: #obsolete>
a3a7d6f1a3b8 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21097
diff changeset
  5247
    ^ self numAvailableForRead
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5248
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5249
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5250
!ExternalStream methodsFor:'reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5251
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5252
next
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5253
    "return the next element; advance read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5254
     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
  5255
     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
  5256
     - see #pastEndRead."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5257
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5258
    |c error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5259
%{
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  5260
#ifdef __SCHTEAM__
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  5261
    STObject handle = self.instVarAt(I_handle);
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  5262
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  5263
    if (handle != STObject.Nil) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5264
	STObject next;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5265
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5266
	if (self.instVarAt(I_binary) == STObject.True) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5267
	    next = handle.nextByte();
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5268
	} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5269
	    next = handle.nextChar();
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5270
	}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5271
	if (next != STObject.EOF) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5272
	    self.instVarAt_put(I_position, STObject.Nil);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5273
	    return __c__._RETURN( next );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5274
	}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5275
	self.instVarAt_put(I_hitEOF, STObject.True);
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  5276
    }
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  5277
#else
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5278
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5279
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5280
    OBJ pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5281
    unsigned char ch;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5282
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5283
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5284
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5285
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5286
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5287
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5288
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5289
	if (((fp = __INST(handle)) != nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5290
	    && (__INST(mode) != @symbol(writeonly))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5291
	) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5292
	    f = __FILEVal(fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5293
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5294
	    _buffered = (__INST(buffered) == true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5295
	    if (_buffered) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5296
		__READING__(f)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5297
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5298
	    __READBYTE__(ret, f, &ch, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5299
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5300
	    if (ret > 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5301
		pos = __INST(position);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5302
		if (__isSmallInteger(pos)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5303
		    OBJ t;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5304
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5305
		    t = __MKINT(__intVal(pos) + 1); __INST(position) = t; __STORE(self, t);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5306
		} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5307
		    __INST(position) = nil; /* i.e. do not know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5308
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5309
		if (__INST(binary) == true) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5310
		    RETURN ( __mkSmallInteger(ch) );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5311
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5312
		RETURN ( __MKCHARACTER(ch) );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5313
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5314
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5315
	    __INST(position) = nil;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5316
	    if (ret < 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5317
		error = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5318
	    } else /* ret == 0 */ {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5319
		__INST(hitEOF) = true;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5320
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5321
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5322
    }
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  5323
#endif /* not SCHTEAM */
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5324
%}.
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5325
    hitEOF ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5326
    error notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5327
	lastErrorNumber := error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5328
	^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5329
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5330
    handle isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5331
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5332
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5333
    readAhead notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5334
	c := readAhead.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5335
	readAhead := nil.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5336
	^ c.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5337
    ].
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  5338
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  5339
    "unknown handleType - future"
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5340
    c := self nextByteFromFile:handle.
5430
7d0aa5fc6c22 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5420
diff changeset
  5341
    c isNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5342
	^ self pastEndRead.
5430
7d0aa5fc6c22 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5420
diff changeset
  5343
    ].
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5344
    binary ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5345
	^ c
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5346
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5347
    ^ Character value:c
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5348
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5349
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5350
next:count
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5351
    "return the next count elements of the stream as a collection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5352
     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
  5353
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5354
    |coll nRead|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5355
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5356
    coll := self contentsSpecies uninitializedNew:count.
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5357
    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
  5358
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5359
    nRead ~~ count ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5360
	"/ for readStream protocol compatibility,
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5361
	"/ we must raise an exception here.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5362
	^ self pastEndRead
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5363
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5364
    ^ coll
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5365
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5366
    "Modified: 11.1.1997 / 17:44:17 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5367
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5368
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5369
nextOrNil
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5370
    "return the next element; advance read position.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5371
     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
  5372
     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
  5373
     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
  5374
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5375
    |c error|
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5376
%{
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5377
    FILEPOINTER f;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5378
    int ret, _buffered;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5379
    OBJ pos, fp;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5380
    unsigned char ch;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5381
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5382
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5383
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5384
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5385
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5386
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5387
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5388
	if (((fp = __INST(handle)) != nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5389
	    && (__INST(mode) != @symbol(writeonly))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5390
	) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5391
	    f = __FILEVal(fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5392
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5393
	    _buffered = (__INST(buffered) == true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5394
	    if (_buffered) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5395
		__READING__(f)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5396
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5397
	    __READBYTE__(ret, f, &ch, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5398
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5399
	    if (ret > 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5400
		pos = __INST(position);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5401
		if (__isSmallInteger(pos)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5402
		    OBJ t;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5403
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5404
		    t = __MKINT(__intVal(pos) + 1); __INST(position) = t; __STORE(self, t);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5405
		} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5406
		    __INST(position) = nil; /* i.e. do not know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5407
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5408
		if (__INST(binary) == true) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5409
		    RETURN ( __mkSmallInteger(ch) );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5410
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5411
		RETURN ( __MKCHARACTER(ch) );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5412
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5413
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5414
	    __INST(position) = nil;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5415
	    if (ret < 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5416
		error = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5417
	    } else /* ret == 0 */ {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5418
		__INST(hitEOF) = true;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5419
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5420
	}
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5421
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5422
%}.
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5423
    hitEOF ifTrue:[^ nil].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5424
    error notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5425
	lastErrorNumber := error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5426
	^ self readError:error.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5427
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5428
    handle isNil ifTrue:[^ self errorNotOpen].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5429
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5430
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5431
    readAhead notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5432
	c := readAhead.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5433
	readAhead := nil.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5434
	^ c.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5435
    ].
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  5436
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  5437
    "unknown handleType - future"
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5438
    c := self nextByteFromFile:handle.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5439
    c isNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5440
	^ nil.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5441
    ].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5442
    binary == true ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5443
	^ c
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5444
    ].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5445
    ^ Character value:c
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5446
!
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5447
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5448
peek
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5449
    "return the element to be read next without advancing read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5450
     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
  5451
     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
  5452
     - see #pastEndRead."
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5453
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5454
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5455
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5456
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5457
    unsigned char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5458
    int ret, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  5459
    OBJ fp;
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5460
    OBJ ra;
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5461
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5462
    if ((ra = __INST(readAhead)) != nil) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5463
	if (__INST(binary) == true) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5464
	    RETURN ( ra );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5465
	}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5466
	c = __intVal(ra);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5467
	RETURN ( __MKCHARACTER(c) );
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  5468
    }
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  5469
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5470
    __INST(lastErrorNumber) = nil;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5471
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5472
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5473
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5474
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5475
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5476
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5477
	if (((fp = __INST(handle)) != nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5478
	    && (__INST(mode) != @symbol(writeonly))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5479
	) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5480
	    f = __FILEVal(fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5481
	    _buffered = (__INST(buffered) == true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5482
	    if (_buffered) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5483
		__READING__(f)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5484
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5485
	    __READBYTE__(ret, f, &c, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5486
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5487
	    if (ret > 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5488
		__UNGETC__(c, f, _buffered);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5489
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5490
		if (__INST(binary) == true) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5491
		    RETURN ( __mkSmallInteger(c) );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5492
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5493
		RETURN ( __MKCHARACTER(c) );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5494
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5495
	    if (ret < 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5496
		error = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5497
	    } else /* ret == 0 */ {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5498
		__INST(hitEOF) = true;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5499
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5500
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5501
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  5502
%}.
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5503
    hitEOF ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5504
    error notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5505
	lastErrorNumber := error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5506
	^ self readError:error.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5507
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5508
    handle isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5509
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5510
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5511
    readAhead isNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5512
	readAhead := self nextOrNil.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5513
	readAhead isNil ifTrue:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5514
	    ^ self pastEndRead.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5515
	].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5516
    ].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5517
    ^ readAhead
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5518
!
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5519
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5520
peekOrNil
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5521
    "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
  5522
     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
  5523
     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
  5524
     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
  5525
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5526
    |error|
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5527
%{
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5528
    FILEPOINTER f;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5529
    unsigned char c;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5530
    int ret, _buffered;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5531
    OBJ fp;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5532
    OBJ ra;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5533
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5534
    if ((ra = __INST(readAhead)) != nil) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5535
	if (__INST(binary) == true) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5536
	    RETURN ( ra );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5537
	}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5538
	c = __intVal(ra);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5539
	RETURN ( __MKCHARACTER(c) );
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5540
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5541
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5542
    __INST(lastErrorNumber) = nil;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5543
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5544
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5545
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5546
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5547
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5548
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5549
	if (((fp = __INST(handle)) != nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5550
	    && (__INST(mode) != @symbol(writeonly))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5551
	) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5552
	    f = __FILEVal(fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5553
	    _buffered = (__INST(buffered) == true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5554
	    if (_buffered) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5555
		__READING__(f)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5556
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5557
	    __READBYTE__(ret, f, &c, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5558
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5559
	    if (ret > 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5560
		__UNGETC__(c, f, _buffered);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5561
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5562
		if (__INST(binary) == true) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5563
		    RETURN ( __mkSmallInteger(c) );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5564
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5565
		RETURN ( __MKCHARACTER(c) );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5566
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5567
	    if (ret < 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5568
		error = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5569
	    } else /* ret == 0 */ {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5570
		__INST(hitEOF) = true;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5571
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5572
	}
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5573
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5574
%}.
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5575
    hitEOF ifTrue:[^ nil].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5576
    error notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5577
	lastErrorNumber := error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5578
	^ self readError:error.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5579
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5580
    handle isNil ifTrue:[^ self errorNotOpen].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5581
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5582
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5583
    readAhead isNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5584
	readAhead := self nextOrNil.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5585
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5586
    ^ readAhead
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5587
!
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5588
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5589
upToEnd
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5590
    "return a collection of the elements up-to the end.
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5591
     Return an empty collection, if the stream-end is already at the end."
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5592
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5593
    |chunkSize chunks sizes byteCount data offset|
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5594
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5595
    "adding to a ByteArray produces quadratic time-space
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5596
     behavior - therefore we allocate chunks, and concatenate them
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5597
     at the end."
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5598
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5599
    chunkSize := 4096.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5600
    byteCount := 0.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5601
    [self atEnd] whileFalse:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5602
	|chunk cnt|
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5603
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5604
	chunk := self contentsSpecies uninitializedNew:chunkSize.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5605
	cnt := self nextBytes:chunkSize into:chunk startingAt:1.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5606
	cnt ~~ 0 ifTrue:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5607
	    chunks isNil ifTrue:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5608
		(cnt < chunkSize and:[self atEnd]) ifTrue:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5609
		    "all data is in a single chunk, so we are done"
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5610
		    ^ chunk copyFrom:1 to:cnt.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5611
		].
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5612
		chunks := OrderedCollection new.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5613
		sizes := OrderedCollection new.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5614
	    ].
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5615
	    chunks add:chunk.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5616
	    sizes add:cnt.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5617
	    byteCount := byteCount + cnt
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5618
	]
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5619
    ].
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5620
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5621
    "now, create one big array"
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5622
    data := self contentsSpecies uninitializedNew:byteCount.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5623
    offset := 1.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5624
    1 to:chunks size do:[:index |
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5625
	|chunk cnt|
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5626
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5627
	chunk := chunks at:index.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5628
	cnt := sizes at:index.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5629
	data replaceFrom:offset to:(offset + cnt - 1) with:chunk startingAt:1.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5630
	offset := offset + cnt
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5631
    ].
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5632
    ^ data
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5633
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5634
7054
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  5635
    "
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5636
     '/dev/null' asFilename readStream upToEnd
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5637
     '/proc/self/stat' asFilename readStream upToEnd
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5638
20241
2c64d1957365 #OTHER by mawalch
mawalch
parents: 20147
diff changeset
  5639
     self assert:('smalltalk.rc' asFilename readStream upToEnd size)
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5640
		  =  ('smalltalk.rc' asFilename readStream size)
7054
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  5641
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5642
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5643
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5644
!ExternalStream methodsFor:'rel5 protocol'!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5645
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5646
atEndFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5647
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5648
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5649
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5650
!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5651
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5652
nextByteFromFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5653
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5654
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5655
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5656
!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5657
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5658
nextPutByte:aByte toFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5659
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5660
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5661
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5662
! !
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5663
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5664
!ExternalStream methodsFor:'testing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5665
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5666
atEnd
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5667
    "return true, if position is at end.
21032
499174d72844 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21007
diff changeset
  5668
     If a stream is at the end, the next read operation
499174d72844 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21007
diff changeset
  5669
     would return or raise an exception immediately without waiting.
499174d72844 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21007
diff changeset
  5670
     If a stream is not at the end, this may be a blocking operation
499174d72844 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21007
diff changeset
  5671
     (see NonPositionableExternalStream)"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5672
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5673
%{
21221
086752a8ec62 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21139
diff changeset
  5674
    OBJ fp, lim;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5675
    char c;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5676
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5677
    if (__INST(hitEOF) == true) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5678
	RETURN (true);
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5679
    }
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5680
    lim = __INST(readLimit);
21221
086752a8ec62 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21139
diff changeset
  5681
    if (lim != nil && __signedLongIntVal(__INST(position)) >= __signedLongIntVal(lim)) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5682
	RETURN (true);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5683
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5684
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5685
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5686
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5687
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5688
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5689
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5690
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5691
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5692
	if ((fp = __INST(handle)) != nil) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5693
	    int _buffered = (__INST(buffered) == true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5694
	    int ret;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5695
	    FILEPOINTER f = __FILEVal(fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5696
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5697
	    if (_buffered) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5698
		__READING__(f);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5699
	    } else if (__INST(readAhead) != nil) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5700
		RETURN (false);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5701
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5702
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5703
	    /*
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5704
	     * read ahead ...
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5705
	     */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5706
	    do {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  5707
#ifdef __win32__
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5708
		__READBYTE__(ret, f, &c, _buffered, __INST(handleType));
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  5709
#else /* not __win32__ */
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5710
		__BEGIN_INTERRUPTABLE__
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5711
		__READBYTE__(ret, f, &c, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5712
		__END_INTERRUPTABLE__
21221
086752a8ec62 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21139
diff changeset
  5713
#endif /* not __win32__ */
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5714
	    } while ((ret < 0) && (__threadErrno == EINTR));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5715
	    if (ret > 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5716
		__UNGETC__(c&0xff, f, _buffered);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5717
		RETURN (false);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5718
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5719
	    if (ret == 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5720
		__INST(hitEOF) = true;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5721
		RETURN (true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5722
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5723
	    /* ret < 0 -> error */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5724
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5725
	}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5726
	// we do not raise an error here - the next read operation will raise the error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5727
	RETURN(false);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5728
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5729
%}.
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5730
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5731
    "/ we come here if the handle type is unknown
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5732
    "/ migration support
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5733
    ^ self atEndFile:handle
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5734
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5735
    "Modified: / 30.10.1998 / 20:16:06 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5736
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5737
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5738
gotErrorOrEOF
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5739
    "answer true, if amn error or eof has been occurred on the stream"
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5740
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5741
    ^ hitEOF or:[lastErrorNumber notNil]
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5742
!
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5743
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5744
isBinary
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5745
    "return true, if the stream is in binary (as opposed to text-) mode.
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5746
     The default when created is false."
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5747
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5748
    ^ binary
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5749
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5750
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5751
isBlocking
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5752
    "return true, if O_NONBLOCK is NOT set in the fileDescriptor (probably UNIX specific)"
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5753
22195
54aa183fe57f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22177
diff changeset
  5754
    |fd|
54aa183fe57f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22177
diff changeset
  5755
54aa183fe57f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22177
diff changeset
  5756
    fd := self fileDescriptor.
54aa183fe57f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22177
diff changeset
  5757
    "self fileDescriptor may set handle to nil"
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5758
    handle isNil ifTrue:[^ self errorNotOpen].
22195
54aa183fe57f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22177
diff changeset
  5759
    ^ OperatingSystem isBlockingOn:fd
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5760
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5761
22694
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  5762
isExecutor
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  5763
    "am I an executor and no real stream object?"
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  5764
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  5765
    ^ mode == #executor.
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  5766
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  5767
    "Created: / 23-04-2018 / 18:17:40 / stefan"
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  5768
!
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  5769
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5770
isExternalStream
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5771
    "return true, if the receiver is some kind of externalStream;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5772
     true is returned here - the method redefined from Object."
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5773
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5774
    ^ true
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5775
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5776
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5777
isOpen
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5778
    "return true, if this stream is open"
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5779
22694
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  5780
    "executors are only used to finalize - they are not really open and are closed with #closeFile,
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  5781
     which does not check for #isOpen"
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  5782
    ^ handle notNil and:[self isExecutor not]
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  5783
5d16e0dd2bdc #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22683
diff changeset
  5784
    "Modified: / 23-04-2018 / 18:28:07 / stefan"
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5785
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5786
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5787
isReadable
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5788
    "return true, if this stream can be read from"
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5789
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5790
    ^ mode ~~ #writeonly
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5791
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5792
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5793
isWritable
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5794
    "return true, if this stream can be written to"
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5795
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5796
    ^ mode ~~ #readonly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5797
! !
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
!ExternalStream methodsFor:'waiting for I/O'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5800
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5801
canBeSelected
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5802
    "return true, if this stream can be selected upon"
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5803
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5804
    ^ OperatingSystem supportsSelect
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5805
!
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5806
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5807
numAvailableForRead
20241
2c64d1957365 #OTHER by mawalch
mawalch
parents: 20147
diff changeset
  5808
    "answer the number of bytes available for reading"
2c64d1957365 #OTHER by mawalch
mawalch
parents: 20147
diff changeset
  5809
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5810
    |available|
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5811
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5812
    handle isNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5813
	^ self errorNotOpen
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5814
    ].
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5815
    mode == #writeonly ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5816
	^ self errorWriteOnly
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5817
    ].
21238
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5818
    available := OperatingSystem numAvailableForReadOn:self fileHandle.
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5819
    readAhead notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5820
	available := available + 1
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5821
    ].
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5822
    ^ available.
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5823
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5824
    "
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5825
	'/etc/hosts' asFilename readStream numAvailableForRead
21130
a3a7d6f1a3b8 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21097
diff changeset
  5826
    "
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5827
!
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5828
18327
57a095b55d92 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 18312
diff changeset
  5829
readWaitWithTimeoutMs:timeoutOrNil
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5830
    "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
  5831
     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
  5832
     If data is already available, return immediate.
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5833
     Return true if a timeout occurred (i.e. false, if data is available).
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5834
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5835
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5836
    |fd inputSema hasTimedout wasBlocked|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5837
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5838
    readAhead notNil ifTrue:[^ false].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5839
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5840
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5841
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5842
21238
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5843
    fd := self fileHandle.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5844
    (OperatingSystem readCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5845
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5846
    "cannot do a readWait (which means possible suspend),
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5847
     if the processor is not yet initialized; i.e. if a read is attempted
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5848
     during early startup.
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5849
     This may happen, for example, if a MiniDebugger is entered, before
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5850
     process scheduling has been setup.
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5851
     In this case, all I/O operations here will be blocking."
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5852
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5853
    Smalltalk isInitialized ifFalse:[ ^ false ].
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5854
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5855
    wasBlocked := OperatingSystem blockInterrupts.
22177
eb2d8b4cdb68 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21742
diff changeset
  5856
    inputSema := Semaphore name:'readWait'.
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5857
    [
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5858
        Processor signal:inputSema onInput:fd.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5859
        hasTimedout := (inputSema waitWithTimeoutMs:timeoutOrNil state:#ioWait) isNil.
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5860
    ] ifCurtailed:[
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5861
        Processor disableSemaphore:inputSema.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5862
        wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5863
    ].
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5864
    hasTimedout ifTrue:[
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5865
        Processor disableSemaphore:inputSema.
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5866
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5867
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5868
    ^ hasTimedout
22177
eb2d8b4cdb68 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21742
diff changeset
  5869
eb2d8b4cdb68 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21742
diff changeset
  5870
    "Modified: / 09-08-2017 / 11:53:58 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5871
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5872
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5873
readWriteWaitWithTimeoutMs:timeoutOrNil
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5874
    "suspend the current process, until the receiver
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5875
     becomes ready for reading or writing or a timeout (in milliseconds) expired.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5876
     Return true if a timeout occurred (i.e. false, if data is available).
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5877
     Return immediate if the receiver is already ready.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5878
     The other threads are not affected by the wait."
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5879
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5880
    |fd sema hasTimedout wasBlocked|
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5881
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5882
    readAhead notNil ifTrue:[^ false].
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5883
    handle isNil ifTrue:[
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5884
        ^ self errorNotOpen
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5885
    ].
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5886
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5887
    fd := self fileHandle.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5888
    (OperatingSystem readWriteCheck:fd) ifTrue:[^ false].
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5889
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5890
    wasBlocked := OperatingSystem blockInterrupts.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5891
    sema := Semaphore name:'readWriteWait'.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5892
    [
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5893
        Processor 
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5894
            signal:sema onOutput:fd;
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5895
            signal:sema onInput:fd.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5896
        hasTimedout := (sema waitWithTimeoutMs:timeoutOrNil state:#ioWait) isNil.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5897
    ] ifCurtailed:[
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5898
        Processor disableSemaphore:sema.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5899
        wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5900
    ].
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5901
    hasTimedout ifTrue:[
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5902
        Processor disableSemaphore:sema.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5903
    ].
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5904
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5905
    ^ hasTimedout
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5906
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5907
    "Modified: / 09-08-2017 / 11:54:03 / cg"
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5908
!
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5909
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5910
writeExceptionWaitWithTimeoutMs:timeoutOrNil
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5911
    "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
  5912
     becomes ready for reading or writing or a timeout (in milliseconds) expired.
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5913
     Return true if a timeout occurred (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
  5914
     Return immediate if the receiver is already ready.
5506
ffa0d32f4a51 Comment
Stefan Vogel <sv@exept.de>
parents: 5494
diff changeset
  5915
     The other threads are not affected by the wait."
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5916
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5917
    |fd sema hasTimedout wasBlocked|
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5918
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5919
    handle isNil ifTrue:[
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5920
        ^ self errorNotOpen
18956
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5921
    ].
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5922
21238
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5923
    fd := self fileHandle.
18956
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5924
    (OperatingSystem writeExceptionCheck:fd) ifTrue:[^ false].
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5925
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5926
    wasBlocked := OperatingSystem blockInterrupts.
22177
eb2d8b4cdb68 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21742
diff changeset
  5927
    sema := Semaphore name:'writeExceptionWait'.
18956
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5928
    [
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5929
        Processor 
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5930
            signal:sema onOutput:fd;
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5931
            signal:sema onException:fd.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5932
        hasTimedout := (sema waitWithTimeoutMs:timeoutOrNil state:#ioWait) isNil.
18956
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5933
    ] ifCurtailed:[
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5934
        Processor disableSemaphore:sema.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5935
        wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
18956
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5936
    ].
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5937
    hasTimedout ifTrue:[
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5938
        Processor disableSemaphore:sema.
18956
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5939
    ].
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5940
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5941
    ^ hasTimedout
22177
eb2d8b4cdb68 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21742
diff changeset
  5942
eb2d8b4cdb68 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21742
diff changeset
  5943
    "Modified: / 09-08-2017 / 11:54:10 / cg"
18956
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5944
!
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5945
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5946
writeWaitWithTimeoutMs:timeoutOrNil
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5947
    "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
  5948
     becomes ready for writing or a timeout (in milliseconds) expired.
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5949
     Return true if a timeout occurred (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
  5950
     Return immediate if the receiver is already ready.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5951
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5952
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5953
    |fd outputSema hasTimedout wasBlocked|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5954
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5955
    handle isNil ifTrue:[
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5956
        ^ self errorNotOpen
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5957
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5958
    mode == #readonly ifTrue:[
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5959
        ^ self errorReadOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5960
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5961
21238
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5962
    fd := self fileHandle.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5963
    (OperatingSystem writeCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5964
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5965
    wasBlocked := OperatingSystem blockInterrupts.
22177
eb2d8b4cdb68 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21742
diff changeset
  5966
    outputSema := Semaphore name:'writeWait'.
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5967
    [
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5968
        Processor signal:outputSema onOutput:fd.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5969
        hasTimedout := (outputSema waitWithTimeoutMs:timeoutOrNil state:#ioWait) isNil.
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5970
    ] ifCurtailed:[
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5971
        Processor disableSemaphore:outputSema.
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5972
        wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5973
    ].
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5974
    hasTimedout ifTrue:[
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  5975
        Processor disableSemaphore:outputSema.
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5976
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5977
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5978
    ^ hasTimedout
22177
eb2d8b4cdb68 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21742
diff changeset
  5979
eb2d8b4cdb68 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21742
diff changeset
  5980
    "Modified: / 09-08-2017 / 11:54:14 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5981
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5982
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5983
!ExternalStream methodsFor:'writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5984
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5985
cr
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5986
    "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
  5987
     reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5988
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5989
%{
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5990
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5991
     || (__INST(handleType) == @symbol(filePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5992
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5993
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5994
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5995
	OBJ fp;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5996
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5997
	__INST(lastErrorNumber) = nil;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5998
	if (((fp = __INST(handle)) != nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  5999
	 && (__INST(mode) != @symbol(readonly))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6000
	 && (__INST(binary) != true)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6001
	) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6002
	    FILEPOINTER f = __FILEVal(fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6003
	    int _buffered = (__INST(buffered) == true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6004
	    int len, cnt;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6005
	    char *cp;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6006
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6007
	    if (_buffered) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6008
		__WRITING__(f)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6009
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6010
	    {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6011
		OBJ mode = __INST(eolMode);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6012
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6013
		if (mode == @symbol(cr)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6014
		    cp = "\r"; len = 1;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6015
		} else if (mode == @symbol(crlf)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6016
		    cp = "\r\n"; len = 2;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6017
		} else if (mode == @symbol(eot)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6018
		    cp = "\004"; len = 1;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6019
		} else if (mode == @symbol(etx)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6020
		    cp = "\003"; len = 1;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6021
		} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6022
		    cp = "\n"; len = 1;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6023
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6024
	    }
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6025
#ifdef __win32__
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6026
	    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6027
		cnt = __win32_fwrite(cp, 1, len, f);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6028
	    } else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  6029
#endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6030
	    {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6031
		__WRITEBYTES__(cnt, f, cp, len, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6032
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6033
	    if (cnt == len) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6034
		if (__isSmallInteger(__INST(position))) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6035
		    INT np = __intVal(__INST(position)) + len;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6036
		    OBJ t;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6037
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6038
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6039
		} else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6040
		    __INST(position) = nil; /* i.e: don't know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6041
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6042
		RETURN ( self );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6043
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6044
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6045
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6046
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6047
%}.
2326
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  6048
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  6049
    handle isNil ifTrue:[self errorNotOpen. ^ self].
2326
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  6050
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6051
    binary ifTrue:[self errorBinary. ^ self].
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  6052
17426
6e49243ce4e0 fix: code treated everything but nl,cr,crnl symbols als cr (by accident).
Claus Gittinger <cg@exept.de>
parents: 17420
diff changeset
  6053
    (eolMode == #cr) ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6054
	self nextPut:(Character return).
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6055
	^ self
17426
6e49243ce4e0 fix: code treated everything but nl,cr,crnl symbols als cr (by accident).
Claus Gittinger <cg@exept.de>
parents: 17420
diff changeset
  6056
    ].
6e49243ce4e0 fix: code treated everything but nl,cr,crnl symbols als cr (by accident).
Claus Gittinger <cg@exept.de>
parents: 17420
diff changeset
  6057
    (eolMode == #crlf) ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6058
	self nextPut:(Character return).
17426
6e49243ce4e0 fix: code treated everything but nl,cr,crnl symbols als cr (by accident).
Claus Gittinger <cg@exept.de>
parents: 17420
diff changeset
  6059
    ].
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  6060
    self nextPut:(Character nl).
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  6061
    ^ self
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6062
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6063
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  6064
flush
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  6065
    "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
  6066
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  6067
%{
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  6068
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  6069
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  6070
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  6071
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  6072
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6073
	OBJ fp;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6074
	int _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6075
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6076
	if ((fp = __INST(handle)) != nil) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6077
	    if (__INST(mode) != @symbol(readonly)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6078
		if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6079
		    FILEPOINTER f = __FILEVal(fp);
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6080
#ifdef __win32__
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6081
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6082
			__win32_fflush(f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6083
		    } else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6084
			int rslt;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6085
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6086
			do {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6087
			    __threadErrno = 0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6088
			    rslt = __STX_C_CALL1("fflush", fflush, f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6089
			} while((rslt < 0) && (__threadErrno == EINTR));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6090
		    }
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6091
#else /* ! __win32__ */
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6092
		    __BEGIN_INTERRUPTABLE__
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6093
		    FFLUSH(f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6094
		    __END_INTERRUPTABLE__
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6095
#endif /* ! __win32__ */
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6096
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6097
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6098
	}
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  6099
    }
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  6100
%}
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  6101
!
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  6102
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6103
nextPut:aCharacter
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6104
    "write the argument, aCharacter - return nil if failed, self if ok.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6105
     Only single-byte characters are currently supported"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6106
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6107
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  6108
%{
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6109
#ifdef __SCHTEAM__
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6110
    STObject handle = self.instVarAt(I_handle);
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6111
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6112
    if ((handle != STObject.Nil)
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6113
     && (aCharacter.isSTCharacter())) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6114
	handle.writeChar( aCharacter );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6115
	self.instVarAt_put(I_position, STObject.Nil);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6116
	return __c__._RETURN_self();
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6117
    }
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6118
#else
17332
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6119
    __INST(lastErrorNumber) = nil;
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6120
    if ((__INST(handleType) == nil)
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6121
     || (__INST(handleType) == @symbol(filePointer))
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6122
     || (__INST(handleType) == @symbol(socketFilePointer))
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6123
     || (__INST(handleType) == @symbol(socketHandle))
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6124
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6125
	OBJ fp;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6126
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6127
	if (((fp = __INST(handle)) != nil)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6128
	 && (__INST(mode) != @symbol(readonly))
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6129
	) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6130
	    FILEPOINTER f = __FILEVal(fp);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6131
	    int _buffered = (__INST(buffered) == true);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6132
	    int cnt;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6133
	    char buff[2];
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6134
	    int nBytes = 1;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6135
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6136
	    if (__INST(binary) != true) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6137
		if (__isCharacter(aCharacter)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6138
		    unsigned int codePoint = __intVal(__characterVal(aCharacter));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6139
		    if (codePoint <= 0xFF) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6140
			unsigned char c = codePoint;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6141
			buff[0] = c; nBytes = 1;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6142
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6143
			if (c == '\n') {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6144
			    OBJ mode = __INST(eolMode);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6145
			    if (mode == @symbol(nl)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6146
				// no EOL translation
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6147
			    } else if (mode == nil) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6148
				// no EOL translation
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6149
			    } else if (mode == @symbol(cr)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6150
				buff[0] = '\r';
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6151
			    } else if (mode == @symbol(eot)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6152
				buff[0] = '\004';
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6153
			    } else if (mode == @symbol(etx)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6154
				buff[0] = '\003';
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6155
			    } else if (mode == @symbol(crlf)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6156
				buff[0] = '\r';
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6157
				buff[1] = '\n';
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6158
				nBytes = 2;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6159
			    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6160
			}
17332
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6161
    doWrite:
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6162
			if (! f) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6163
			    fprintf(stderr, "oops - fileHandle is NULL in nextPut:\n");
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6164
			    __INST(handle) = nil;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6165
			    goto out;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6166
			}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6167
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6168
			if (_buffered) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6169
			    __WRITING__(f)
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6170
			}
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6171
# ifdef __win32__
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6172
			if ((f == __win32_stdout()) || (f == __win32_stderr())) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6173
			    cnt = __win32_fwrite(buff, 1, nBytes, f);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6174
			} else
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6175
# endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6176
			{
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6177
			    __WRITEBYTES__(cnt, f, buff, nBytes, _buffered, __INST(handleType));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6178
			}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6179
			if (cnt == nBytes) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6180
			    if (__isSmallInteger(__INST(position))) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6181
				INT np = __intVal(__INST(position)) + nBytes;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6182
				OBJ t;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6183
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6184
				t = __MKINT(np); __INST(position) = t; __STORE(self, t);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6185
			    } else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6186
				__INST(position) = nil; /* i.e. do not know */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6187
			    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6188
			    RETURN ( self );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6189
			}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6190
			error = __mkSmallInteger(__threadErrno);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6191
		    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6192
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6193
	    } else {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6194
		if (__isSmallInteger(aCharacter)) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6195
		    unsigned char c = __intVal(aCharacter);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6196
		    buff[0] = c; nBytes = 1;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6197
		    goto doWrite;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6198
		}
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6199
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6200
	}
17332
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6201
    }
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6202
out: ;
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6203
#endif /* not SCHTEAM */
17332
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6204
%}.
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6205
    error notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6206
	lastErrorNumber := error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6207
	self writeError:error.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6208
	^ self
17332
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6209
    ].
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6210
    handle isNil ifTrue:[self errorNotOpen. ^ self].
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6211
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6212
    binary == true ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6213
	aCharacter isInteger ifFalse:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6214
	    self argumentMustBeInteger.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6215
	    ^ self.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6216
	].
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6217
    ] ifFalse:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6218
	(aCharacter isCharacter not
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6219
	 or:[aCharacter codePoint > 16rFF]) ifTrue:[
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6220
	    self argumentMustBeCharacter.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6221
	    ^ self.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6222
	].
17332
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6223
    ].
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6224
    "/ migration support
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6225
    self
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6226
	nextPutByte:aCharacter asInteger
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6227
	toFile:handle
17332
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6228
!
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6229
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6230
nextPutAll:aCollection
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6231
    "write all elements of the argument, aCollection.
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6232
     Reimplemented for speed when writing strings or byteArrays.
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6233
     For others, falls back to general method in superclass."
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6234
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6235
    |error|
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6236
%{
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6237
#ifdef __SCHTEAM__
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6238
    STObject handle = self.instVarAt(I_handle);
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6239
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6240
    if ((handle != STObject.Nil)
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6241
     && (aCollection.isSTString())) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6242
	handle.writeCharacters( aCollection.asSTString().characters );
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6243
	self.instVarAt_put(I_position, STObject.Nil);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6244
	return __c__._RETURN_self();
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6245
    }
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6246
#else
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6247
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6248
    __INST(lastErrorNumber) = nil;
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6249
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6250
    if ((__INST(handleType) == nil)
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6251
     || (__INST(handleType) == @symbol(filePointer))
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6252
     || (__INST(handleType) == @symbol(socketFilePointer))
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6253
     || (__INST(handleType) == @symbol(socketHandle))
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6254
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6255
	OBJ fp;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6256
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6257
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6258
	    && (__INST(mode) != @symbol(readonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6259
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6260
	    INT len, cnt;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6261
	    INT o_offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6262
	    FILEPOINTER f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6263
	    int _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6264
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6265
	    if (! f) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6266
		fprintf(stderr, "oops - fileHandle is NULL in nextPutAll:\n");
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6267
		__INST(handle) = nil;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6268
		goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6269
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6270
	    if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6271
		__WRITING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6272
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6273
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6274
	    if (__isStringLike(aCollection)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6275
		OBJ mode = __INST(eolMode);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6276
		char *stringP = __stringVal(aCollection);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6277
		len = __stringSize(aCollection);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6278
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6279
		if (__INST(binary) != true
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6280
		    && ((mode == @symbol(cr))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6281
			|| (mode == @symbol(etx))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6282
			|| (mode == @symbol(eot))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6283
			|| (mode == @symbol(crlf)))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6284
		    && memchr(stringP, '\n', len) != NULL)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6285
		{
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6286
		    // there is a '\n' to be translated, replace it into a buffer
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6287
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6288
		    char *end;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6289
		    char sep[2];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6290
		    int sepLen = 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6291
		    int bufLen;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6292
		    char *buf, *endBuf, *sp, *dp;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6293
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6294
		    sep[0] = '\n';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6295
		    if (mode == @symbol(crlf)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6296
			 sep[0] = '\r'; sep[1] = '\n'; sepLen = 2;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6297
		    } else if (mode == @symbol(cr)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6298
			 sep[0] = '\r';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6299
		    } else if (mode == @symbol(eot)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6300
			 sep[0] = '\004';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6301
		    } else if (mode == @symbol(etx)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6302
			 sep[0] = '\003';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6303
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6304
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6305
		    // estimate size of buffer - assume every 4th char is a separator
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6306
		    bufLen = (sepLen == 1) ? len : (len + ((len/4) + 1) * sepLen);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6307
		    buf = (char *)malloc(bufLen);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6308
		    if (buf == NULL) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6309
			error = __mkSmallInteger(ENOMEM);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6310
			goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6311
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6312
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6313
		    endBuf = buf + bufLen;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6314
		    end = stringP + len;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6315
		    for (sp = stringP, dp = buf; sp < end; sp++) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6316
			char c;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6317
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6318
			if ((dp+sepLen) >= endBuf) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6319
			    char *newBuf;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6320
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6321
			    bufLen = bufLen * 2;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6322
			    newBuf = (char *)realloc(buf, bufLen);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6323
			    if (newBuf == NULL) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6324
				free(buf);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6325
				error = __mkSmallInteger(ENOMEM);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6326
				goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6327
			    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6328
			    endBuf = newBuf + bufLen;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6329
			    dp = newBuf + (dp-buf);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6330
			    buf = newBuf;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6331
			}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6332
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6333
			if ((c = *sp) != '\n') {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6334
			    *dp++ = c;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6335
			} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6336
			    *dp++ = sep[0];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6337
			    if (sepLen == 2) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6338
				*dp++ = sep[1];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6339
			    };
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6340
			}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6341
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6342
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6343
		    len = dp - buf;
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6344
# ifdef __win32__
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6345
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6346
			cnt = __win32_fwrite(buf, 1, len, f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6347
		    } else
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6348
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6349
		    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6350
			__WRITEBYTES__(cnt, f, buf, len, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6351
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6352
		    free(buf);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6353
		} else  {  // No EOL conversion needed
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6354
# ifdef __win32__
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6355
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6356
			cnt = __win32_fwrite(stringP, 1, len, f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6357
		    } else
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6358
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6359
		    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6360
			o_offs = stringP - (char *)__InstPtr(aCollection);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6361
			__WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6362
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6363
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6364
	    } else {   // Not a String
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6365
		if (__INST(binary) == true) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6366
		    INT offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6367
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6368
		    if (__isByteArrayLike(aCollection)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6369
			offs = 0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6370
			len = __byteArraySize(aCollection);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6371
		    } else if (__isBytes(aCollection)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6372
			offs = __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(aCollection))->c_ninstvars));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6373
			len = __byteArraySize(aCollection) - offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6374
		    } else
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6375
			goto out;
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6376
# ifdef __win32__
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6377
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6378
			cnt = __win32_fwrite(__stringVal(aCollection), 1, len, f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6379
		    } else
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6380
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6381
		    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6382
			o_offs = (char *)(__ByteArrayInstPtr(aCollection)->ba_element) - (char *)__InstPtr(aCollection);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6383
			o_offs += offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6384
			__WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6385
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6386
		} else  // Not binary mode
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6387
		    goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6388
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6389
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6390
	    // Now check for errors
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6391
	    if (cnt == len) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6392
		if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6393
		    INT np = __intVal(__INST(position)) + len;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6394
		    OBJ t;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6395
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6396
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6397
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6398
		    __INST(position) = nil; /* i.e. do not know */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6399
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6400
		RETURN (self);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6401
	    }
19993
67164d044887 compiler warnings
Claus Gittinger <cg@exept.de>
parents: 19866
diff changeset
  6402
	    fprintf(stderr, "cnt=%"_ld_" len=%"_ld_"\n", (INT)cnt, (INT)len);
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6403
	    error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6404
	}
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6405
    }
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6406
out: ;
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6407
#endif /* not SCHTEAM */
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6408
%}.
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6409
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6410
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6411
	self writeError:error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6412
	^ self
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6413
    ].
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6414
    handle isNil ifTrue:[self errorNotOpen. ^ self].
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6415
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6416
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6417
    ^ super nextPutAll:aCollection
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6418
!
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6419
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6420
nextPutAll:initialWriteCount from:buffer startingAt:initialOffset
22232
ef8b988ac574 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22195
diff changeset
  6421
    "append count elements with index starting at initialOffset
ef8b988ac574 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22195
diff changeset
  6422
     of the argument, buffer onto the receiver.
ef8b988ac574 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22195
diff changeset
  6423
     This is only allowed, if the receiver supports writing.
ef8b988ac574 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22195
diff changeset
  6424
     Answer the number of elements that were appended.
ef8b988ac574 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22195
diff changeset
  6425
     Buffer should be a byte collection.
20270
d2c92e7e2294 #DOCUMENTATION by mawalch
mawalch
parents: 20259
diff changeset
  6426
     I don't know how to write non-bytes to an external stream, but let superclass handle this."
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6427
22234
7f0b2dd757b3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22232
diff changeset
  6428
    buffer isSingleByteCollection ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22266
diff changeset
  6429
	^ self nextPutBytes:initialWriteCount from:buffer startingAt:initialOffset.
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6430
    ].
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6431
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6432
    ^ super nextPutAll:initialWriteCount from:buffer startingAt:initialOffset
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6433
!
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6434
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6435
nextPutAll:aCollection startingAt:start to:stop
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6436
    "write a range of elements of the argument, aCollection.
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6437
     Reimplemented for speed when writing strings or byteArrays.
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6438
     For others, falls back to general method in superclass."
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6439
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6440
     |error|
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6441
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6442
%{
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6443
    __INST(lastErrorNumber) = nil;
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6444
    if ((__INST(handleType) == nil)
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6445
     || (__INST(handleType) == @symbol(filePointer))
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6446
     || (__INST(handleType) == @symbol(socketFilePointer))
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6447
     || (__INST(handleType) == @symbol(socketHandle))
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6448
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6449
	OBJ fp = __INST(handle);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6450
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6451
	if ((fp != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6452
	 && (__INST(mode) != @symbol(readonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6453
	 && __bothSmallInteger(start, stop)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6454
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6455
	    int _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6456
	    FILEPOINTER f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6457
	    int offs, len, cnt;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6458
	    int iStart = __intVal(start);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6459
	    int iStop = __intVal(stop);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6460
	    int o_offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6461
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6462
	    if (_buffered ) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6463
		__WRITING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6464
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6465
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6466
	    if ((iStart < 1) || (iStop < iStart)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6467
		RETURN(self);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6468
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6469
	    if (__isStringLike(aCollection)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6470
		char *stringP;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6471
		OBJ mode = __INST(eolMode);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6472
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6473
		len = __stringSize(aCollection);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6474
		if (iStop > len) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6475
		    RETURN(self);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6476
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6477
		if (iStop > len)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6478
		    iStop = len;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6479
		len = iStop - iStart + 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6480
		stringP = __stringVal(aCollection) + iStart - 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6481
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6482
		if (__INST(binary) != true
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6483
		    && ((mode == @symbol(cr))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6484
			|| (mode == @symbol(etx))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6485
			|| (mode == @symbol(eot))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6486
			|| (mode == @symbol(crlf)))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6487
		    && memchr(stringP, '\n', len) != NULL)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6488
		{
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6489
		    // see if there is a \n which needs to be translated, replace it
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6490
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6491
		    char *end = stringP + len;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6492
		    char sep[2];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6493
		    int sepLen = 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6494
		    int bufLen;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6495
		    char *buf, *endBuf, *sp, *dp;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6496
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6497
		    sep[0] = '\n';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6498
		    if (mode == @symbol(crlf)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6499
			 sep[0] = '\r'; sep[1] = '\n'; sepLen = 2;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6500
		    } else if (mode == @symbol(cr)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6501
			 sep[0] = '\r';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6502
		    } else if (mode == @symbol(eot)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6503
			 sep[0] = '\004';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6504
		    } else if (mode == @symbol(etx)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6505
			 sep[0] = '\003';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6506
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6507
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6508
		    // estimate size of buffer - assume every 4th char is a separator
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6509
		    bufLen = (sepLen == 1) ? len : (len + ((len/4) + 1) * sepLen);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6510
		    buf = (char *)malloc(bufLen);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6511
		    if (buf == NULL) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6512
			error = __mkSmallInteger(ENOMEM);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6513
			goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6514
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6515
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6516
		    endBuf = buf + bufLen;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6517
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6518
		    for (sp = stringP, dp = buf; sp < end; sp++) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6519
			char c;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6520
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6521
			if ((dp+sepLen) >= endBuf) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6522
			    char *newBuf;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6523
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6524
			    bufLen = bufLen * 2;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6525
			    newBuf = (char *)realloc(buf, bufLen);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6526
			    if (newBuf == NULL) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6527
				free(buf);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6528
				error = __mkSmallInteger(ENOMEM);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6529
				goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6530
			    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6531
			    endBuf = newBuf + bufLen;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6532
			    dp = newBuf + (dp-buf);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6533
			    buf = newBuf;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6534
			}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6535
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6536
			if ((c = *sp) == '\n') {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6537
			    *dp++ = sep[0];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6538
			    if (sepLen == 2) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6539
				*dp++ = sep[1];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6540
			    };
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6541
			} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6542
			    *dp++ = c;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6543
			}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6544
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6545
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6546
		    len = dp - buf;
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6547
#ifdef __win32__
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6548
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6549
			cnt = __win32_fwrite(buf, 1, len, f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6550
		    } else
17420
f0895ae69f69 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17418
diff changeset
  6551
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6552
		    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6553
			__WRITEBYTES__(cnt, f, buf, len, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6554
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6555
		    free(buf);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6556
		} else  {  // No EOL conversion needed
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6557
#ifdef __win32__
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6558
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6559
			cnt = __win32_fwrite(stringP, 1, len, f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6560
		    } else
17420
f0895ae69f69 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17418
diff changeset
  6561
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6562
		    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6563
			o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6564
			__WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs+iStart-1, len, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6565
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6566
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6567
	    } else {  // Not a string
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6568
		if (__INST(binary) == true) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6569
		    int offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6570
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6571
		    if (__isByteArrayLike(aCollection)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6572
			offs = 0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6573
			len = __byteArraySize(aCollection);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6574
		    } else if (__isBytes(aCollection)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6575
			offs = __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(aCollection))->c_ninstvars));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6576
			len = __byteArraySize(aCollection) - offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6577
		    } else
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6578
			goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6579
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6580
		    if (iStop > len) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6581
			RETURN(self);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6582
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6583
		    if (iStop > len)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6584
			iStop = len;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6585
		    len = iStop - iStart + 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6586
		    offs += iStart - 1;
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6587
#ifdef __win32__
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6588
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6589
			cnt = __win32_fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6590
		    } else
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6591
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6592
		    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6593
			o_offs = (char *)(__ByteArrayInstPtr(aCollection)->ba_element)-(char *)__InstPtr(aCollection);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6594
			__WRITEBYTES_OBJ__(cnt, f,  aCollection, o_offs+offs, len, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6595
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6596
		} else
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6597
		    goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6598
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6599
	    if (cnt == len) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6600
		if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6601
		    INT np = __intVal(__INST(position)) + len;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6602
		    OBJ t;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6603
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6604
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6605
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6606
		    __INST(position) = nil; /* i.e. do not know */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6607
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6608
		RETURN (self);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6609
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6610
	    error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6611
	}
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6612
    }
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6613
out: ;
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6614
%}.
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6615
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6616
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6617
	self writeError:error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6618
	^ self
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6619
    ].
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6620
    ^ super nextPutAll:aCollection startingAt:start to:stop
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6621
!
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6622
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6623
nextPutAllUnicode:aString
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6624
    "normal streams can not handle multi-byte characters, so convert them to utf8.
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6625
     This is needed, so that you can do ('something' asUnicode16String errorPrintCR)"
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6626
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6627
    aString do:[:eachCharacter|
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6628
	self nextPutUtf8:eachCharacter.
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6629
    ].
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6630
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6631
    "
22683
f46cf6f2fe68 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22681
diff changeset
  6632
	'Bönnigheim' asUnicode16String errorPrintCR
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6633
    "
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6634
!
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6635
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6636
nextPutBytes:count from:anObject startingAt:start
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6637
    "write count bytes from an object starting at index start.
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6638
     return the number of bytes written - which could be 0.
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6639
     The object must have non-pointer indexed instvars
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6640
     (i.e. be a ByteArray, String, Float- or DoubleArray),
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6641
     or an externalBytes object (with known size).
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6642
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6643
     Use with care - non object oriented i/o.
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6644
     Warning:
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6645
	in general, you cannot use this method to pass non-byte data to other
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6646
	architectures (unless you prepared the buffer with care),
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6647
	since it does not care for byte order or float representation."
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6648
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6649
    |error|
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6650
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6651
%{
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6652
#ifdef __SCHTEAM__
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6653
    byte[] bytes;
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6654
    STObject handle = self.instVarAt(I_handle);
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6655
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6656
    if (anObject.isSTString()) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6657
	char[] chars = anObject.asSTString().characters;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6658
	handle.writeCharacters(chars, start.intValue()-1, count.intValue());
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6659
	self.instVarAt_put(I_position, STObject.Nil);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6660
	return context._RETURN(count);
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6661
    }
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6662
    if (anObject.isSymbol()) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6663
	java.lang.String chars = anObject.asSTSymbol().characters;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6664
	handle.writeString(chars, start.intValue()-1, count.intValue());
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6665
	self.instVarAt_put(I_position, STObject.Nil);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6666
	return context._RETURN(count);
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6667
    }
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6668
#else
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  6669
    int ret;
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  6670
    int objSize, nInstBytes;
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6671
    char *extPtr;
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6672
    OBJ fp;
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6673
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6674
    __INST(lastErrorNumber) = nil;
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6675
    if ((__INST(handleType) == nil)
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6676
     || (__INST(handleType) == @symbol(filePointer))
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6677
     || (__INST(handleType) == @symbol(socketFilePointer))
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6678
     || (__INST(handleType) == @symbol(socketHandle))
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6679
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6680
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6681
	    && (__INST(mode) != @symbol(readonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6682
	    && __bothSmallInteger(count, start)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6683
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6684
	    int _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6685
	    FILEPOINTER f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6686
	    int len = __intVal(count);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6687
	    int offs = __intVal(start) - 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6688
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6689
	    if (__isExternalBytesLike(anObject)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6690
		OBJ sz;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6691
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6692
		nInstBytes = 0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6693
		extPtr = (char *)__externalBytesAddress(anObject);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6694
		if (extPtr == NULL) goto bad;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6695
		sz = __externalBytesSize(anObject);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6696
		if (__isSmallInteger(sz)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6697
		    objSize = __intVal(sz);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6698
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6699
		    objSize = 0; /* unknown */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6700
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6701
	    } else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6702
		OBJ oClass = __Class(anObject);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6703
		int nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6704
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6705
		nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6706
		switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6707
		    case BYTEARRAY:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6708
		    case WORDARRAY:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6709
		    case LONGARRAY:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6710
		    case SWORDARRAY:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6711
		    case SLONGARRAY:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6712
		    case FLOATARRAY:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6713
			break;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6714
		    case DOUBLEARRAY:
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6715
# ifdef __NEED_DOUBLE_ALIGN
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6716
			nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1);
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6717
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6718
			break;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6719
		    case LONGLONGARRAY:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6720
		    case SLONGLONGARRAY:
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6721
# ifdef __NEED_LONGLONG_ALIGN
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6722
			nInstBytes = (nInstBytes-1+__LONGLONG_ALIGN) &~ (__LONGLONG_ALIGN-1);
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6723
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6724
			break;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6725
		    default:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6726
			goto bad;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6727
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6728
		extPtr = (char *)0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6729
		objSize = __Size(anObject) - nInstBytes;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6730
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6731
	    if ( (offs >= 0) && (len >= 0) && (objSize >= (len + offs)) ) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6732
		int cnt;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6733
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6734
		if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6735
		    __WRITING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6736
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6737
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6738
		if (extPtr) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6739
# ifdef __win32__
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6740
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6741
			cnt = __win32_fwrite(extPtr+offs, 1, len, f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6742
		    } else
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6743
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6744
		    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6745
			__WRITEBYTES__(cnt, f, extPtr+offs, len, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6746
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6747
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6748
		    /*
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6749
		     * on interrupt, anObject may be moved to another location.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6750
		     * So we pass anObject, and the offset to the __WRITEBYTES_OBJ__ macro.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6751
		     */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6752
		    offs += nInstBytes;
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6753
# ifdef __win32__
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6754
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6755
			cnt = __win32_fwrite((char *)anObject+offs, 1, len, f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6756
		    } else
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6757
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6758
		    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6759
			 __WRITEBYTES_OBJ__(cnt, f, anObject, offs, len, _buffered, __INST(handleType));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6760
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6761
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6762
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6763
		if (cnt >= 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6764
		    if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6765
			INT np = __intVal(__INST(position)) + cnt;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6766
			OBJ t;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6767
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6768
			t = __MKINT(np); __INST(position) = t; __STORE(self, t);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6769
		    } else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6770
			__INST(position) = nil; /* i.e. do not know */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6771
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6772
		    RETURN ( __mkSmallInteger(cnt) );
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6773
		} else /* cnt < 0 */ {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6774
		    if (
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6775
# ifdef EWOULDBLOCK
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6776
			(__threadErrno == EWOULDBLOCK) ||
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6777
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6778
			(__threadErrno == EAGAIN)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6779
		    ) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6780
			RETURN ( __mkSmallInteger(0) );
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6781
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6782
		    __INST(position) = nil; /* i.e. do not know */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6783
		    error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6784
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6785
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6786
	}
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6787
    }
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6788
bad: ;
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6789
#endif /* not SCHTEAM */
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6790
%}.
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6791
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6792
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6793
	self writeError:error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6794
	^ 0
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6795
    ].
17634
76a10ce9c870 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17618
diff changeset
  6796
    handle isNil ifTrue:[self errorNotOpen. ^ 0].
76a10ce9c870 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17618
diff changeset
  6797
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ 0].
76a10ce9c870 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17618
diff changeset
  6798
    self primitiveFailed.
76a10ce9c870 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17618
diff changeset
  6799
    ^ 0.
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6800
!
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6801
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6802
nextPutUnicode:aCharacter
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6803
    "normal streams can not handle multi-byte characters, so convert them to utf8"
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6804
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6805
    self nextPutUtf8:aCharacter.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6806
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6807
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  6808
!ExternalStream class methodsFor:'documentation'!
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  6809
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  6810
version
18636
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  6811
    ^ '$Header$'
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  6812
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  6813
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  6814
version_CVS
18636
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  6815
    ^ '$Header$'
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  6816
! !
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  6817
14603
f73f90e25023 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14518
diff changeset
  6818
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6819
ExternalStream initialize!