ExternalStream.st
author Patrik Svestka <patrik.svestka@gmail.com>
Tue, 09 Apr 2019 11:34:04 +0200
branchjv
changeset 24093 0f94f6c8c9d4
parent 23107 40173e082cbc
permissions -rw-r--r--
Issue #269: Renaming a registry subKey via RegRenameKey() or if it fails via NtRenameKey()
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1988 by Claus Gittinger
23107
40173e082cbc Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 21286
diff changeset
     3
 COPYRIGHT (c) 2015-2016 Jan Vrany
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
     4
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
"
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
    13
"{ Package: 'stx:libbasic' }"
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
    14
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
    15
"{ NameSpace: Smalltalk }"
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
    16
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    17
ReadWriteStream subclass:#ExternalStream
18929
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    18
	instanceVariableNames:'handleType handle mode buffered binary eolMode hitEOF didWrite
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    19
		lastErrorNumber readAhead'
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    20
	classVariableNames:'Lobby LastErrorNumber InvalidReadSignal InvalidWriteSignal
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    21
		InvalidModeSignal OpenErrorSignal StreamNotOpenSignal
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    22
		InvalidOperationSignal DefaultEOLMode ReadMode ReadWriteMode
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    23
		WriteMode AppendMode CreateReadWriteMode StreamIOErrorSignal
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    24
		FileOpenTrace MaxNonTenurableExecutors'
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    25
	poolDictionaries:''
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
    26
	category:'Streams-External'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    27
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    28
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    29
!ExternalStream primitiveDefinitions!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    30
%{
10328
ad731a7584a3 ensure that win32_fwrite is used for stdout and stderr
Claus Gittinger <cg@exept.de>
parents: 9053
diff changeset
    31
#undef fwrite
ad731a7584a3 ensure that win32_fwrite is used for stdout and stderr
Claus Gittinger <cg@exept.de>
parents: 9053
diff changeset
    32
17078
f3ded8a6f9d9 include os defss
Claus Gittinger <cg@exept.de>
parents: 16912
diff changeset
    33
#include "stxOSDefs.h"
f3ded8a6f9d9 include os defss
Claus Gittinger <cg@exept.de>
parents: 16912
diff changeset
    34
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    35
#include <stdio.h>
437
claus
parents: 436
diff changeset
    36
#define _STDIO_H_INCLUDED_
claus
parents: 436
diff changeset
    37
20360
489fe00f7820 Cleanup: #include <stdlib.h> and <unistd.h> and <sys/ioctl.h> in ExternalStream
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 20342
diff changeset
    38
#include <stdlib.h>
489fe00f7820 Cleanup: #include <stdlib.h> and <unistd.h> and <sys/ioctl.h> in ExternalStream
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 20342
diff changeset
    39
2903
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    40
#ifndef NO_FCNTL_H
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    41
# include <fcntl.h>
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    42
# define _FCNTL_H_INCLUDED_
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    43
#endif
437
claus
parents: 436
diff changeset
    44
10
claus
parents: 5
diff changeset
    45
#include <errno.h>
437
claus
parents: 436
diff changeset
    46
#define _ERRNO_H_INCLUDED_
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    47
1141
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    48
#ifdef LINUX
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    49
  /* use inline string macros */
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    50
# define __STRINGDEFS__
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    51
# include <linuxIntern.h>
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    52
#endif
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    53
20360
489fe00f7820 Cleanup: #include <stdlib.h> and <unistd.h> and <sys/ioctl.h> in ExternalStream
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 20342
diff changeset
    54
#ifndef WIN32
489fe00f7820 Cleanup: #include <stdlib.h> and <unistd.h> and <sys/ioctl.h> in ExternalStream
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 20342
diff changeset
    55
# include <sys/ioctl.h>
489fe00f7820 Cleanup: #include <stdlib.h> and <unistd.h> and <sys/ioctl.h> in ExternalStream
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 20342
diff changeset
    56
# include <unistd.h>
489fe00f7820 Cleanup: #include <stdlib.h> and <unistd.h> and <sys/ioctl.h> in ExternalStream
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 20342
diff changeset
    57
#endif
489fe00f7820 Cleanup: #include <stdlib.h> and <unistd.h> and <sys/ioctl.h> in ExternalStream
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 20342
diff changeset
    58
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
    59
#if !defined(MSDOS_LIKE) && !defined(__openVMS__)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
    60
# include <termios.h>
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
    61
#endif
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
    62
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    63
#ifdef hpux
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    64
# define fileno(f)      ((f->__fileH << 8) | (f->__fileL))
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    65
#endif
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    66
933
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_SET
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_SET 0
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
#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
    71
# 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
    72
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    73
#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
    74
# 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
    75
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    76
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
    77
#if defined(__VMS__) || defined(__sparc__) || defined(__win32__)
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
    78
# define CLEAR_ERRNO            __threadErrno = 0;
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    79
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
    80
# define CLEAR_ERRNO            /* nothing */
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    81
#endif
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    82
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    83
#ifdef LATER
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    84
# define __isFilePointer(x)      (__Class(x) == ExternalStream__FilePointer)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    85
# define __CHANGECLASS(o, x)     (__qClass(o) = (x), o)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    86
# define __MKFILEPOINTER(f)      __CHANGECLASS(__MKEXTERNALADDRESS(f), ExternalStream__FilePointer)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    87
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    88
# define __MKFILEPOINTER(f)      __MKEXTERNALADDRESS(f)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    89
#endif
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    90
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
    91
#ifdef __win32__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    92
# define NO_STDIO
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 __HANDLE_INTERRUPTS__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    95
# define __HANDLE_INTERRUPTS__    /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    96
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    97
# undef __BEGIN_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    98
# define __BEGIN_INTERRUPTABLE__  /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    99
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   100
# undef __END_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   101
# define __END_INTERRUPTABLE__    /* nothing */
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   102
#endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   103
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
   104
# ifdef __i386__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   105
#  define _X86_
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   106
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   107
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
   108
#ifdef __win32__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   109
# undef INT
14644
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   110
# undef UINT
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   111
# undef Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   112
# undef Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   113
# undef Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   114
# undef Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   115
# undef Rectangle
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   116
# undef Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   117
# undef Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   118
# undef Date
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   119
# undef Delay
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   120
# undef Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   121
# undef Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   122
# undef Context
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   123
# undef Message
9024
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   124
# undef Process
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   125
# undef Processor
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   126
# undef String
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   127
# undef Character
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   128
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   129
# define NOATOM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   130
# define NOGDICAPMASKS
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   131
# define NOMETAFILE
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   132
# define NOMINMAX
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
   133
//# define NOOPENFILE
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   134
# define NOSOUND
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   135
# define NOWH
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   136
//# define NOCOMM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   137
# define NOKANJI
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   138
# define NOCRYPT
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   139
//# define NOMCX
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   140
# define WIN32_LEAN_AND_MEAN
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   141
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   142
# include <windows.h>
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
   143
# include <winsock2.h>
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   144
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   145
# ifdef __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   146
#  define Array __DEF_Array
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_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   149
#  define Number __DEF_Number
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_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   152
#  define Method __DEF_Method
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_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   155
#  define Point __DEF_Point
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_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   158
#  define Block __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   159
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   160
# ifdef __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   161
#  define Time __DEF_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   162
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   163
# ifdef __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   164
#  define Date __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   165
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   166
# ifdef __DEF_Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   167
#  define Set __DEF_Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   168
# endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   169
# ifdef __DEF_Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   170
#  define Signal __DEF_Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   171
# endif
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   172
# ifdef __DEF_Delay
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   173
#  define Delay __DEF_Delay
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   174
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   175
# ifdef __DEF_Context
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   176
#  define Context __DEF_Context
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   177
# endif
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   178
# ifdef __DEF_Message
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   179
#  define Message __DEF_Message
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   180
# endif
9024
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   181
# ifdef __DEF_Process
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   182
#  define Process __DEF_Process
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   183
# endif
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   184
# ifdef __DEF_Processor
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   185
#  define Processor __DEF_Processor
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   186
# endif
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   187
# ifdef __DEF_String
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   188
#  define String __DEF_String
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   189
# endif
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   190
# ifdef __DEF_Character
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   191
#  define Character __DEF_Character
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   192
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   193
14644
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   194
# define INT    STX_INT
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   195
# define UINT   STX_UINT
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   196
# ifndef off_t
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   197
#  define off_t  long
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   198
# endif
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
   199
#endif /* __win32__ */
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   200
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   201
#ifndef NO_STDIO /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   202
# define STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   203
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   204
# define READ(f, cp, n)         read(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   205
# define WRITE(f, cp, n)        write(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   206
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   207
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   208
#endif /* use STDIO */
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   209
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   210
#ifdef DEBUGGING
4092
fee552eb3418 removed win32 stuff
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   211
  extern char *__survStartPtr, *__survEndPtr;
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   212
# define DEBUGBUFFER(buf)  \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   213
    if (((char *)(buf) >= __survStartPtr) \
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   214
     && ((char *)(buf) < __survEndPtr)) { \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   215
        __fatal0("read into survivor\n"); \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   216
    }
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   217
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   218
#else
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   219
# define DEBUGBUFFER(buf) /* nothing */
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   220
#endif
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   221
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   222
/*
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   223
 * stdio library requires an fseek before reading whenever a file
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   224
 * is open for read/write and the last operation was a write.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   225
 * (also vice-versa).
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   226
 * All code should use the following macro before doing reads:
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   227
 */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   228
#ifdef STDIO_NEEDS_FSEEK
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   229
# 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
   230
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   231
# 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
   232
#endif
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   233
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
   234
#ifdef __win32__
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   235
#  define READ(ret, f, cp, n, handleType) { \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   236
        if (handleType == @symbol(socketHandle)) { \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   237
          (ret) = __STX_WSA_NOINT_CALL4("recv", recv, (f), (cp), (n), 0); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   238
        } else { \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   239
          HANDLE h = _get_osfhandle(fileno(f)); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   240
          if (handleType == @symbol(socketFilePointer)) { \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   241
            (ret) = __STX_WSA_NOINT_CALL4("recv", recv, h, (cp), (n), 0);\
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   242
          } else { \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   243
            int __res; \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   244
            (ret) = __STX_API_NOINT_CALL5("ReadFile", ReadFile, h, (cp), (n), &__res, 0);\
21066
b7050f50aa94 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21037
diff changeset
   245
            (ret) = (ret) > 0 ? __res : (__threadErrno == __WIN32_ERR(ERROR_BROKEN_PIPE) ? 0 : -1); \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   246
          } \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   247
        } \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   248
      }
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   249
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   250
#  define WRITE(ret, f, cp, n, handleType) { \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   251
        if (handleType == @symbol(socketHandle)) { \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   252
          (ret) = __STX_WSA_NOINT_CALL4("send", send, (f), (cp), (n), 0); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   253
        } else {\
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   254
          HANDLE h = _get_osfhandle(fileno(f)); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   255
          if (handleType == @symbol(socketFilePointer)) { \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   256
            (ret) = __STX_WSA_NOINT_CALL4("send", send, h, (cp), (n), 0);\
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   257
          } else {\
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   258
            int __res; \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   259
            (ret) = __STX_API_NOINT_CALL5("WriteFile", WriteFile, h, (cp), (n), &__res, 0);\
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   260
            (ret) = (ret) ? __res : -1; \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   261
          } \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   262
        } \
4913
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
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   265
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   266
# undef STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   267
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   268
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   269
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   270
# define __READING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   271
    if ((__INST(didWrite) != false)              \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   272
     && (__INST(mode) == @symbol(readwrite))) {  \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   273
        __INST(didWrite) = false;                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   274
        OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   275
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   276
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   277
# define __WRITING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   278
    if ((__INST(didWrite) != true)               \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   279
     && (__INST(mode) == @symbol(readwrite))) {  \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   280
        __INST(didWrite) = true;                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   281
        OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   282
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   283
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   284
# define __UNGETC__(c, f, isBuffered)                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   285
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   286
        ungetc((c), (f));                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   287
    } else {                                            \
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   288
      __INST(readAhead) = __mkSmallInteger((c));        \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   289
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   290
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   291
# define __READBYTE__(ret, f, buf, isBuffered, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   292
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   293
        for (;;) {                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   294
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   295
            (ret) = getc(f);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   296
            if ((ret) >= 0) {                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   297
                *(buf) = (ret);                         \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   298
                (ret) = 1;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   299
            } else if (ferror(f)) {                     \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   300
                if (__threadErrno == EINTR) {           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   301
                    clearerr(f);                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   302
                    continue;                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   303
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   304
            } else {                                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   305
                (ret) = 0;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   306
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   307
            break;                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   308
        }                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   309
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   310
        OBJ rA = __INST(readAhead);                     \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   311
        if (rA != nil) {                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   312
            *(buf) = (char)__intVal(rA);                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   313
            __INST(readAhead) = nil;                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   314
            (ret) = 1;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   315
        } else {                                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   316
            for (;;) {                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   317
                CLEAR_ERRNO;                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   318
                READ((ret), f, buf, 1, handleType);       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   319
                if ((ret) >= 0 || __threadErrno != EINTR) \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   320
                    break;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   321
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   322
        }                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   323
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   324
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   325
  /*
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   326
   * read_bytes into a c-buffer
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   327
   * (which may NOT move)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   328
   */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   329
# define __READBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   330
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   331
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   332
        int __offs = 0;                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   333
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   334
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   335
            (ret) = getc(f);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   336
            if ((ret) < 0) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   337
                if (ferror(f)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   338
                    if (__threadErrno == EINTR) {       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   339
                        clearerr(f);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   340
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   341
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   342
                } else {                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   343
                    (ret) = 0;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   344
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   345
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   346
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   347
            (buf)[__offs++] = (ret);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   348
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   349
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   350
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   351
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   352
        int __offs = 0;                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   353
                                                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   354
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   355
            OBJ rA = __INST(readAhead);                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   356
            if (rA != nil) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   357
                (buf)[__offs] = __intVal(rA);           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   358
                __INST(readAhead) = nil;                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   359
                (ret) = 1;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   360
            } else {                                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   361
                CLEAR_ERRNO;                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   362
                READ((ret), f, (buf)+__offs, (cnt)-__offs, handleType); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   363
                if ((ret) <= 0) {                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   364
                    if ((ret) < 0 && __threadErrno == EINTR) {  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   365
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   366
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   367
                    break;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   368
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   369
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   370
            __offs += (ret);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   371
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   372
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   373
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   374
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   375
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   376
# define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   377
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   378
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   379
    int oldFlags;                                       \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   380
                                                        \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   381
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   382
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   383
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   384
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   385
            (ret) = getc(f);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   386
            if ((ret) < 0) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   387
                if (ferror(f)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   388
                    if (__threadErrno == EINTR) {       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   389
                        clearerr(f);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   390
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   391
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   392
                } else {                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   393
                    (ret) = 0;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   394
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   395
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   396
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   397
            (buf)[__offs++] = (ret);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   398
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   399
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   400
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   401
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   402
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   403
            OBJ rA = __INST(readAhead);                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   404
            if (rA != nil) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   405
                (buf)[__offs] = __intVal(rA);           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   406
                __INST(readAhead) = nil;                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   407
                (ret) = 1;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   408
                __offs ++;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   409
                continue;                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   410
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   411
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   412
            {                                           \
21000
edd3a4ca2504 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20999
diff changeset
   413
              int res = -1, ok = 0;                     \
21003
cb88897f9538 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21002
diff changeset
   414
              SOCKET sock = 0;                          \
21002
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   415
              if ((handleType == @symbol(socketFilePointer) && ((ok = ioctlsocket(sock = (SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res) == 0), 1)) \
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   416
                  || (handleType == @symbol(socketHandle) && ((ok = ioctlsocket(sock = (SOCKET)(f), FIONREAD, &res) == 0), 1)) \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   417
                  || (handleType == @symbol(pipeFilePointer) && ((ok = PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)), 1))) { \
21066
b7050f50aa94 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21037
diff changeset
   418
                   if (!ok) {                                                               \
b7050f50aa94 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21037
diff changeset
   419
                        __threadErrno = sock ? WSAGetLastError() : __WIN32_ERR(GetLastError()); \
b7050f50aa94 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21037
diff changeset
   420
                        (ret) = __threadErrno == __WIN32_ERR(ERROR_BROKEN_PIPE) ? 0 : -1;   \
b7050f50aa94 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21037
diff changeset
   421
                        break;                                                              \
b7050f50aa94 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21037
diff changeset
   422
                   }                                \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   423
                  if (res > 0) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   424
                      if (res > ((cnt)-__offs))         \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   425
                          res = (cnt)-__offs;           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   426
                      READ((ret), f, (buf)+__offs, res, handleType); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   427
                  } else {                              \
21007
ac54b335417c #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21003
diff changeset
   428
                      if (sock && send(sock, NULL, 0, 0) == SOCKET_ERROR) {     \
21002
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   429
                        (ret) = -1; __threadErrno = WSAGetLastError();          \
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   430
                      } else {                          \
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   431
                        (ret) = 0;                      \
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   432
                      }                                 \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   433
                      break;                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   434
                  }                                     \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   435
              } else {                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   436
                  READ((ret), f, (buf)+__offs, (cnt)-__offs, handleType); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   437
              }                                         \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   438
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   439
            if ((ret) <= 0) {                           \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   440
                if ((ret) < 0 && __threadErrno == EINTR)\
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   441
                    continue;                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   442
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   443
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   444
            __offs += (ret);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   445
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   446
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   447
            (ret) = __offs;                             \
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
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   450
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   451
# define IO_BUFFER_SIZE        (8*1024)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   452
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   453
# 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
   454
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   455
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   456
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   457
    char *buf = (char *)(obj);                          \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   458
                                                        \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   459
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   460
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   461
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   462
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   463
            (ret) = getc(f);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   464
            if ((ret) < 0) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   465
                if (ferror(f)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   466
                    if (__threadErrno == EINTR) {       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   467
                        clearerr(f);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   468
                        /* refetch */                   \
21066
b7050f50aa94 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21037
diff changeset
   469
                        buf = (char *)(obj);            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   470
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   471
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   472
                } else {                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   473
                    (ret) = 0;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   474
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   475
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   476
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   477
            (buf)[__ooffs+__offs] = (ret);              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   478
            __offs++;                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   479
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   480
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   481
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   482
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   483
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   484
            char __buf[IO_BUFFER_SIZE];                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   485
            OBJ rA = __INST(readAhead);                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   486
            if (rA != nil) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   487
                (buf)[__ooffs+__offs] = __intVal(rA);   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   488
                __INST(readAhead) = nil;                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   489
                (ret) = 1;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   490
            } else {                                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   491
                int l;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   492
                CLEAR_ERRNO;                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   493
                l = (cnt)-__offs;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   494
                if ( l > IO_BUFFER_SIZE)                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   495
                  l = IO_BUFFER_SIZE;                   \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   496
                READ((ret),f, __buf, l, handleType);    \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   497
                if ((ret) <= 0) {                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   498
                    if ((ret) < 0 && __threadErrno == EINTR) {  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   499
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   500
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   501
                    break;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   502
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   503
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   504
            if ((ret) > 0 ) {                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   505
                /* refetch */                               \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   506
                buf = (char *)(obj);                        \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   507
                memcpy((buf)+__ooffs+__offs,__buf,(ret));   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   508
                __offs += (ret);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   509
            } else {                                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   510
                (ret) = 0;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   511
            }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   512
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   513
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   514
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   515
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   516
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   517
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   518
# 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
   519
  {                                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   520
    int __ooffs = obj_offs;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   521
    int __offs = 0;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   522
    char *buf = (char *)(obj);                       \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   523
                                                     \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   524
    (ret) = 0;                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   525
    if (isBuffered) {                                \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   526
        while (__offs < (cnt)) {                     \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   527
            CLEAR_ERRNO;                             \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   528
            (ret) = getc(f);                         \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   529
            if ((ret) < 0) {                         \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   530
                if (ferror(f)) {                     \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   531
                    if (__threadErrno == EINTR) {    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   532
                        clearerr(f);                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   533
                        /* refetch */                \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   534
                        buf = (char *)(obj);         \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   535
                        continue;                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   536
                    }                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   537
                } else {                             \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   538
                    (ret) = 0;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   539
                }                                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   540
                break;                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   541
            }                                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   542
            (buf)[__ooffs+__offs] = (ret);           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   543
            __offs++;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   544
        }                                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   545
        if (__offs > 0)                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   546
            (ret) = __offs;                          \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   547
    } else {                                         \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   548
        while (__offs < (cnt)) {                     \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   549
            char __buf[IO_BUFFER_SIZE];              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   550
            OBJ rA = __INST(readAhead);              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   551
            if (rA != nil) {                         \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   552
                (buf)[__ooffs+__offs] = __intVal(rA);\
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   553
                __INST(readAhead) = nil;             \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   554
                (ret) = 1;                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   555
                __offs++;                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   556
                continue;                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   557
            }                                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   558
            {                                        \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   559
                int res = -1, ok = 0;                \
21003
cb88897f9538 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21002
diff changeset
   560
                SOCKET sock = 0;                     \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   561
                int l = (cnt)-__offs;                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   562
                CLEAR_ERRNO;                         \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   563
                if (l > IO_BUFFER_SIZE) l = IO_BUFFER_SIZE;              \
21002
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   564
                if ((handleType == @symbol(socketFilePointer) && ((ok = ioctlsocket(sock = (SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res) == 0), 1)) \
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   565
                    || (handleType == @symbol(socketHandle) && ((ok = ioctlsocket(sock = (SOCKET)(f), FIONREAD, &res) == 0), 1)) \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   566
                    || (handleType == @symbol(pipeFilePointer) && ((ok = PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0)), 1))) { \
21066
b7050f50aa94 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21037
diff changeset
   567
                   if (!ok) {                                                               \
b7050f50aa94 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21037
diff changeset
   568
                        __threadErrno = sock ? WSAGetLastError() : __WIN32_ERR(GetLastError()); \
b7050f50aa94 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21037
diff changeset
   569
                        (ret) = __threadErrno == __WIN32_ERR(ERROR_BROKEN_PIPE) ? 0 : -1;   \
b7050f50aa94 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21037
diff changeset
   570
                        break;                                                              \
b7050f50aa94 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21037
diff changeset
   571
                   }                                \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   572
                   if (res > 0) {                   \
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   573
                        if (res > l) res = l;       \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   574
                        READ((ret), f, __buf, res, handleType); \
21002
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   575
                   } else {                              \
21007
ac54b335417c #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21003
diff changeset
   576
                       if (sock && send(sock, NULL, 0, 0) == SOCKET_ERROR) {     \
21002
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   577
                         (ret) = -1; __threadErrno = WSAGetLastError();          \
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   578
                       } else {                          \
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   579
                         (ret) = 0;                      \
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   580
                       }                                 \
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   581
                       break;                            \
49a490d35fc3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21001
diff changeset
   582
                   }                                     \
21066
b7050f50aa94 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21037
diff changeset
   583
                } else {                                  \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   584
                    READ((ret), f, __buf, l, handleType); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   585
                }                                     \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   586
                if ((ret) <= 0) {                     \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   587
                    if ((ret) < 0 && __threadErrno == EINTR) \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   588
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   589
                    break;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   590
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   591
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   592
            if ((ret) > 0) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   593
                buf = (char *)(obj);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   594
                memcpy((buf)+__ooffs+__offs, __buf, (ret)); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   595
                __offs += (ret);                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   596
            } else {                                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   597
                (ret) = 0;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   598
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   599
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   600
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   601
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   602
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   603
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   604
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   605
# define __WRITEBYTE__(ret, f, buf, isBuffered, handleType)         \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   606
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   607
        for (;;) {                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   608
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   609
            ret = putc(*(buf), f);                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   610
            if ((ret) >= 0) {                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   611
                (ret) = 1;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   612
            } else if (ferror(f)) {                     \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   613
                if (__threadErrno == EINTR) {           \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   614
                    clearerr(f);                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   615
                    continue;                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   616
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   617
            } else                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   618
                (ret) = 0;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   619
            break;                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   620
        }                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   621
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   622
        for (;;) {                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   623
            CLEAR_ERRNO;                                \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   624
            WRITE(ret,f, buf, 1, handleType);           \
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   625
            if ((ret) >= 0 || __threadErrno != EINTR)   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   626
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   627
        }                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   628
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   629
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   630
# define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)   \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   631
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   632
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   633
        int __offs = 0;                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   634
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   635
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   636
            (ret) = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   637
            if ((ret) <= 0) {                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   638
                if (ferror(f)) {                        \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   639
                    if (__threadErrno == EINTR) {       \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   640
                        clearerr(f);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   641
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   642
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   643
                    break;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   644
                } else {                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   645
                    (ret) = 0;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   646
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   647
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   648
            __offs += (ret);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   649
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   650
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   651
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   652
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   653
        int __offs = 0;                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   654
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   655
            CLEAR_ERRNO;                                \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   656
            WRITE((ret),f, (buf)+__offs, (cnt)-__offs, handleType);   \
21066
b7050f50aa94 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21037
diff changeset
   657
            if ((ret) <= 0) {                           \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   658
                if ((ret) < 0 && __threadErrno == EINTR) { \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   659
                    continue;                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   660
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   661
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   662
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   663
            __offs += (ret);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   664
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   665
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   666
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   667
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   668
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   669
# 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
   670
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   671
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   672
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   673
    char *buf = (char *)(obj);                          \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   674
                                                        \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   675
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   676
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   677
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   678
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   679
            ret = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   680
            if ((ret) <= 0) {                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   681
                if (ferror(f)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   682
                    if (__threadErrno == EINTR) {       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   683
                        /* refetch */                   \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   684
                        buf = (char *)(obj);            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   685
                        clearerr(f);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   686
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   687
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   688
                    break;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   689
                } else {                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   690
                    (ret) = 0;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   691
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   692
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   693
            __offs += (ret);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   694
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   695
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   696
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   697
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   698
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   699
            char __buf[IO_BUFFER_SIZE];                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   700
            int l;                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   701
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   702
            l = (cnt)-__offs;                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   703
            if ( l > IO_BUFFER_SIZE)                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   704
              l = IO_BUFFER_SIZE;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   705
            /* refetch */                               \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   706
            buf = (char *)(obj);                        \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   707
            memcpy(__buf,(buf)+__ooffs+__offs,l);       \
20997
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   708
            WRITE(ret,f, __buf, l, handleType);         \
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   709
            if ((ret) <= 0) {                           \
51ce73a25e29 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20987
diff changeset
   710
                if ((ret) < 0 && __threadErrno == EINTR) { \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   711
                    continue;                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   712
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   713
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   714
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   715
            __offs += (ret);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   716
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   717
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   718
            (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   719
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   720
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   721
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
   722
#else /* ! __win32__ */
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   723
/* ========================   UNIX / LINUX ====================================================== */
16373
9b9827530bf4 Adapt previous change for linux
Stefan Vogel <sv@exept.de>
parents: 16368
diff changeset
   724
typedef int SOCKET;
9b9827530bf4 Adapt previous change for linux
Stefan Vogel <sv@exept.de>
parents: 16368
diff changeset
   725
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   726
# define __READING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   727
    if ((__INST(didWrite) != false)              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   728
     && (__INST(mode) == @symbol(readwrite))) {  \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   729
        __INST(didWrite) = false;                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   730
        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
   731
    }
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
# define __WRITING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   734
    if ((__INST(didWrite) != true)               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   735
     && (__INST(mode) == @symbol(readwrite))) {  \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   736
        __INST(didWrite) = true;                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   737
        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
   738
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   739
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   740
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   741
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   742
#  define __UNGETC__(c, f, isBuffered)                  \
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   743
    __INST(readAhead) = __mkSmallInteger((c));
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   744
# else /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   745
#  define __UNGETC__(c, f, isBuffered)                  \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   746
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   747
        ungetc((c), (f));                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   748
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   749
        __INST(readAhead) = __mkSmallInteger((c));          \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   750
    }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   751
# endif /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   752
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   753
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   754
#  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
   755
    {                                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   756
        OBJ rA = __INST(readAhead);                     \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   757
        if (rA != nil) {                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   758
            *(buf) = __intVal(rA);                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   759
            DEBUGBUFFER(buf);                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   760
            __INST(readAhead) = nil;                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   761
            (ret) = 1;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   762
        } else {                                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   763
            for (;;) {                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   764
                CLEAR_ERRNO;                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   765
                (ret) = READ(f, buf, 1, handleType);    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   766
                DEBUGBUFFER(buf);                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   767
                if ((ret) >= 0) break;                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   768
                if (errno != EINTR) {                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   769
                    break;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   770
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   771
                __HANDLE_INTERRUPTS__;                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   772
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   773
        }                                               \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   774
    }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   775
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   776
#  define __READBYTE__(ret, f, buf, isBuffered, handleType)         \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   777
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   778
        for (;;) {                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   779
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   780
            (ret) = getc(f);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   781
            if ((ret) >= 0) {                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   782
                DEBUGBUFFER(buf);                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   783
                *(buf) = (ret);                         \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   784
                (ret) = 1;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   785
            } else if (ferror(f)) {                     \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   786
                if (errno == EINTR) {                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   787
                    __HANDLE_INTERRUPTS__;              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   788
                    clearerr(f);                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   789
                    continue;                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   790
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   791
            } else                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   792
                (ret) = 0;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   793
            break;                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   794
        }                                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   795
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   796
        OBJ rA = __INST(readAhead);                     \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   797
        if (rA != nil) {                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   798
            *(buf) = __intVal(rA);                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   799
            DEBUGBUFFER(buf);                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   800
            __INST(readAhead) = nil;                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   801
            (ret) = 1;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   802
        } else {                                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   803
            for (;;) {                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   804
                CLEAR_ERRNO;                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   805
                (ret) = read(fileno(f), buf, 1);        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   806
                DEBUGBUFFER(buf);                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   807
                if ((ret) >= 0) break;                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   808
                if (errno != EINTR) {                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   809
                    break;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   810
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   811
                __HANDLE_INTERRUPTS__;                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   812
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   813
        }                                               \
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   814
   }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   815
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   816
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   817
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   818
 * 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
   819
 * (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
   820
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   821
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   822
#  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
   823
    {                                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   824
        int __offs = 0, __cnt;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   825
                                                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   826
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   827
            OBJ rA = __INST(readAhead);                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   828
            if (rA != nil) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   829
                (buf)[__offs] = __intVal(rA);           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   830
                DEBUGBUFFER(buf);                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   831
                __INST(readAhead) = nil;                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   832
                __offs++;                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   833
            } else {                                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   834
                CLEAR_ERRNO;                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   835
                __cnt = READ(f, (buf)+__offs, (cnt)-__offs, handleType); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   836
                DEBUGBUFFER(buf);                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   837
                if (__cnt <= 0) {                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   838
                    if (__cnt < 0 && errno == EINTR) {  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   839
                        __HANDLE_INTERRUPTS__;          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   840
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   841
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   842
                    break;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   843
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   844
                __offs += __cnt;                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   845
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   846
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   847
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   848
            (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   849
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   850
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   851
#  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
   852
    (ret) = 0;                                          \
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   853
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   854
        int __offs = 0;                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   855
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   856
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   857
            (ret) = getc(f);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   858
            if ((ret) < 0) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   859
                if (ferror(f)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   860
                    if (errno == EINTR) {               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   861
                        __HANDLE_INTERRUPTS__;          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   862
                        clearerr(f);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   863
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   864
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   865
                } else {                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   866
                    (ret) = 0;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   867
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   868
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   869
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   870
            DEBUGBUFFER(buf);                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   871
            (buf)[__offs++] = (ret);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   872
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   873
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   874
            (ret) = __offs;                             \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   875
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   876
        int __offs = 0, __cnt;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   877
        int fd = fileno(f);                             \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   878
                                                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   879
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   880
            OBJ rA = __INST(readAhead);                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   881
            if (rA != nil) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   882
                DEBUGBUFFER(buf);                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   883
                (buf)[__offs] = __intVal(rA);           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   884
                __INST(readAhead) = nil;                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   885
                __offs++;                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   886
            } else {                                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   887
                CLEAR_ERRNO;                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   888
                __cnt = read(fd, (buf)+__offs, (cnt)-__offs);  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   889
                DEBUGBUFFER(buf);                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   890
                if (__cnt <= 0) {                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   891
                    if (__cnt < 0 && errno == EINTR) {  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   892
                        __HANDLE_INTERRUPTS__;          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   893
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   894
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   895
                    break;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   896
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   897
                __offs += __cnt;                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   898
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   899
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   900
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   901
            (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   902
   }
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   903
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   904
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   905
/*
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   906
 * 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
   907
 */
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   908
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   909
#  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
   910
#   define SETFLAGS(fd, flags) \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   911
        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
   912
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   913
#   if defined(O_NONBLOCK)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   914
#    define __STX_NONBLOCK_FLAG O_NONBLOCK
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   915
#   else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   916
#    if defined(O_NDELAY)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   917
#     define __STX_NONBLOCK_FLAG O_NDELAY
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   918
#    else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   919
#     define __STX_NONBLOCK_FLAG FNDELAY
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   920
#    endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   921
#   endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   922
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   923
#   define SETNONBLOCKING(fd, oldFlags) \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   924
        { \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   925
            int flags = fcntl(fd, F_GETFL, 0); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   926
            if (flags >= 0) { \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   927
                fcntl(fd, F_SETFL, flags | __STX_NONBLOCK_FLAG); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   928
            } \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   929
            oldFlags = flags; \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   930
        }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   931
#  else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   932
#   define SETFLAGS(fd, flags) /* nothing */
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   933
#   define SETNONBLOCKING(fd, oldFlags) /* nothing */
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   934
#  endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   935
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   936
#  define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered, handleType) \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   937
  {                                                     \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   938
    int __offs = 0, __cnt;                              \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   939
    int oldFlags;                                       \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   940
                                                        \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   941
    (ret) = 0;                                          \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   942
    SETNONBLOCKING(fileno(f), oldFlags);                \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   943
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   944
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   945
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   946
            (ret) = getc(f);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   947
            if ((ret) < 0) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   948
                if (ferror(f)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   949
                    if (errno == EINTR) {               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   950
                        (ret) = 0;                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   951
                        clearerr(f);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   952
                        break;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   953
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   954
                } else {                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   955
                    (ret) = 0;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   956
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   957
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   958
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   959
            (buf)[__offs++] = (ret);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   960
            DEBUGBUFFER(buf);                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   961
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   962
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   963
            (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   964
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   965
        int fd = fileno(f);                             \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   966
                                                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   967
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   968
            OBJ rA = __INST(readAhead);                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   969
            if (rA != nil) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   970
                (buf)[__offs] = __intVal(rA);           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   971
                DEBUGBUFFER(buf);                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   972
                __INST(readAhead) = nil;                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   973
                __offs++;                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   974
                continue;                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   975
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   976
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   977
            __cnt = read(fd, (buf)+__offs, (cnt)-__offs); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   978
            DEBUGBUFFER(buf);                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   979
            if (__cnt > 0) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   980
                __offs += __cnt;                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   981
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   982
            break;                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   983
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   984
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
   985
            (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   986
    }                                                   \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   987
    SETFLAGS(fileno(f), oldFlags);                      \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   988
  }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   989
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   990
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   991
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   992
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   993
 * 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
   994
 * (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
   995
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   996
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   997
#  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
   998
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   999
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1000
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
  1001
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1002
    char *buf = (char *)(obj);                          \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1003
                                                        \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1004
    (ret) = 0;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1005
    {                                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1006
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1007
            OBJ rA = __INST(readAhead);                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1008
            if (rA != nil) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1009
                (buf)[__ooffs+__offs] = __intVal(rA);   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1010
                DEBUGBUFFER(buf);                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1011
                __INST(readAhead) = nil;                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1012
                __offs++;                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1013
            } else {                                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1014
                CLEAR_ERRNO;                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1015
                __cnt = READ(f, (buf)+__ooffs+__offs, (cnt)-__offs, handleType); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1016
                DEBUGBUFFER(buf);                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1017
                if (__cnt <= 0) {                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1018
                    if (__cnt < 0 && errno == EINTR) {  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1019
                        __HANDLE_INTERRUPTS__;          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1020
                        /* refetch */                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1021
                        buf = (char *)(obj);            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1022
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1023
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1024
                    break;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1025
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1026
                __offs += __cnt;                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1027
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1028
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1029
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1030
            (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1031
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1032
  }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  1033
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1034
# else /* use STDIO */
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  1035
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1036
#  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
  1037
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1038
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1039
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
  1040
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1041
    char *buf = (char *)(obj);                          \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1042
                                                        \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1043
    (ret) = 0;                                          \
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1044
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1045
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1046
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1047
            (ret) = getc(f);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1048
            if ((ret) < 0) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1049
                if (ferror(f)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1050
                    if (errno == EINTR) {               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1051
                        __HANDLE_INTERRUPTS__;          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1052
                        clearerr(f);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1053
                        /* refetch */                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1054
                        buf = (char *)(obj);            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1055
                        DEBUGBUFFER(buf);               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1056
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1057
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1058
                } else {                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1059
                    (ret) = 0;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1060
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1061
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1062
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1063
            (buf)[__ooffs+__offs] = (ret);              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1064
            DEBUGBUFFER(buf);                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1065
            __offs++;                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1066
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1067
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1068
            (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
  1069
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1070
        int fd = fileno(f);                             \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1071
                                                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1072
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1073
            OBJ rA = __INST(readAhead);                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1074
            if (rA != nil) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1075
                (buf)[__ooffs+__offs] = __intVal(rA);   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1076
                DEBUGBUFFER(buf);                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1077
                __INST(readAhead) = nil;                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1078
                __offs++;                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1079
            } else {                                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1080
                CLEAR_ERRNO;                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1081
                __cnt = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1082
                DEBUGBUFFER(buf);                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1083
                if (__cnt <= 0) {                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1084
                    if (__cnt < 0 && errno == EINTR) {  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1085
                        __HANDLE_INTERRUPTS__;          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1086
                        /* refetch */                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1087
                        buf = (char *)(obj);            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1088
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1089
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1090
                    break;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1091
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1092
                __offs += __cnt;                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1093
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1094
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1095
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1096
            (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1097
    }                                                   \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1098
  }
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1099
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1100
# 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
  1101
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1102
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1103
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
  1104
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1105
    char *buf = (char *)(obj);                          \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
  1106
    int oldFlags;                                       \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1107
                                                        \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1108
    (ret) = 0;                                          \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
  1109
    SETNONBLOCKING(fileno(f), oldFlags);                \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1110
                                                        \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1111
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1112
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1113
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1114
            (ret) = getc(f);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1115
            if ((ret) < 0) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1116
                if (ferror(f)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1117
                    if (errno == EINTR) {               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1118
                        clearerr(f);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1119
                        /* refetch */                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1120
                        buf = (char *)(obj);            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1121
                        (ret) = 0;                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1122
                        break;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1123
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1124
                } else {                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1125
                    (ret) = 0;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1126
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1127
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1128
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1129
            (buf)[__ooffs+__offs] = (ret);              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1130
            DEBUGBUFFER(buf);                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1131
            __offs++;                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1132
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1133
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1134
            (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1135
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1136
        int fd = fileno(f);                             \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1137
                                                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1138
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1139
            OBJ rA = __INST(readAhead);                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1140
            if (rA != nil) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1141
                (buf)[__ooffs+__offs] = __intVal(rA);   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1142
                DEBUGBUFFER(buf);                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1143
                __INST(readAhead) = nil;                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1144
                __offs++;                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1145
                continue;                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1146
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1147
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1148
            __cnt = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1149
            DEBUGBUFFER(buf);                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1150
            if (__cnt > 0) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1151
                __offs += __cnt;                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1152
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1153
            break;                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1154
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1155
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1156
            (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1157
    }                                                   \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
  1158
    SETFLAGS(fileno(f), oldFlags);                      \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1159
  }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1160
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1161
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1162
# endif /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1163
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1164
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1165
#  define __WRITEBYTE__(ret, f, buf, isBuffered, handleType)          \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1166
        for (;;) {                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1167
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1168
            (ret) = WRITE(f, buf, 1, handleType);       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1169
            if ((ret) >= 0) break;                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1170
            if (errno != EINTR) {                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1171
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1172
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1173
            __HANDLE_INTERRUPTS__;                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1174
        }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1175
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1176
#  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
  1177
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1178
        for (;;) {                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1179
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1180
            ret = putc(*(buf), f);                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1181
            if ((ret) >= 0) {                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1182
                (ret) = 1;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1183
            } else if (ferror(f)) {                     \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1184
                /* SOLARIS/SPARC (2.6) generates spurious errors with errno = 0 */ \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1185
                if (errno == EINTR || errno == 0) {     \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1186
                    __HANDLE_INTERRUPTS__;              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1187
                    clearerr(f);                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1188
                    continue;                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1189
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1190
            } else                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1191
                (ret) = 0;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1192
            break;                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1193
        }                                               \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  1194
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1195
        for (;;) {                                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1196
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1197
            (ret) = write(fileno(f), buf, 1);           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1198
            if ((ret) >= 0) break;                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1199
            if (errno != EINTR) {                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1200
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1201
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1202
            __HANDLE_INTERRUPTS__;                      \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1203
        }                                               \
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1204
   }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1205
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1206
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1207
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1208
 * 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
  1209
 * (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
  1210
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1211
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1212
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1213
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1214
    {                                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1215
        int __offs = 0;                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1216
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1217
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1218
            ret = WRITE(f, (buf)+__offs, (cnt)-__offs, handleType); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1219
            if (ret <= 0) {                             \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1220
                if (ret < 0 && errno == EINTR) {        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1221
                    __HANDLE_INTERRUPTS__;              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1222
                    continue;                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1223
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1224
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1225
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1226
            __offs += (ret);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1227
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1228
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1229
            (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1230
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1231
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1232
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1233
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1234
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1235
        int __offs = 0;                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1236
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1237
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1238
            (ret) = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1239
            if ((ret) <= 0) {                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1240
                if (ferror(f)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1241
                    if (errno == EINTR) {               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1242
                        __HANDLE_INTERRUPTS__;          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1243
                        clearerr(f);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1244
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1245
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1246
                } else {                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1247
                    (ret) = 0;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1248
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1249
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1250
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1251
            __offs += (ret);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1252
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1253
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1254
            (ret) = __offs;                             \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1255
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1256
        int __offs = 0;                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1257
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1258
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1259
            (ret) = write(fileno(f), (buf)+__offs, (cnt)-__offs);\
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1260
            if ((ret) <= 0) {                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1261
                if ((ret) < 0) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1262
                    if (errno == EINTR) {               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1263
                        __HANDLE_INTERRUPTS__;          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1264
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1265
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1266
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1267
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1268
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1269
            __offs += (ret);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1270
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1271
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1272
            (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1273
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1274
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1275
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1276
/*
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1277
 * 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
  1278
 * (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
  1279
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1280
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1281
#  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
  1282
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1283
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1284
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1285
    char *buf = (char *)(obj);                          \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1286
                                                        \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1287
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1288
    {                                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1289
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1290
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1291
            ret = WRITE(f, (buf)+__ooffs+__offs, (cnt)-__offs, handleType); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1292
            if (ret <= 0) {                             \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1293
                if (ret < 0 && errno == EINTR) {        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1294
                    __HANDLE_INTERRUPTS__;              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1295
                    /* refetch */                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1296
                    buf = (char *)(obj);                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1297
                    continue;                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1298
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1299
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1300
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1301
            __offs += (ret);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1302
        }                                               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1303
        if (__offs > 0)                                 \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1304
            (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1305
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1306
  }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1307
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1308
#  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
  1309
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1310
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1311
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1312
    char *buf = (char *)(obj);                          \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1313
                                                        \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1314
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1315
    if (isBuffered) {                                   \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1316
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1317
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1318
            (ret) = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f);  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1319
            if ((ret) <= 0) {                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1320
                if (ferror(f)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1321
                    if (errno == EINTR) {               \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1322
                        __HANDLE_INTERRUPTS__;          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1323
                        /* refetch */                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1324
                        buf = (char *)(obj);            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1325
                        clearerr(f);                    \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1326
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1327
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1328
                    break;                              \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1329
                } else {                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1330
                    (ret) = 0;                          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1331
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1332
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1333
            __offs += (ret);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1334
        }                                               \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1335
    } else {                                            \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1336
        while (__offs < (cnt)) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1337
            CLEAR_ERRNO;                                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1338
            (ret) = write(fileno(f), (buf)+__ooffs+__offs, (cnt)-__offs); \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1339
            if ((ret) <= 0) {                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1340
                if ((ret) < 0) {                        \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1341
                    if (errno == EINTR){                \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1342
                        __HANDLE_INTERRUPTS__;          \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1343
                        /* refetch */                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1344
                        buf = (char *)(obj);            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1345
                        continue;                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1346
                    }                                   \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1347
                }                                       \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1348
                break;                                  \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1349
            }                                           \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1350
            __offs += (ret);                            \
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1351
        }                                               \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1352
    }                                                   \
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  1353
    if (__offs > 0)                                     \
20974
b21d8e5f3ae4 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20795
diff changeset
  1354
        (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
  1355
  }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1356
# endif /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1357
#endif /* unix */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1358
%}
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1359
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1360
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1361
!ExternalStream class methodsFor:'documentation'!
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1362
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1363
copyright
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1364
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1365
 COPYRIGHT (c) 1988 by Claus Gittinger
23107
40173e082cbc Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 21286
diff changeset
  1366
 COPYRIGHT (c) 2015-2016 Jan Vrany
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1367
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1368
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1369
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1370
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1371
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1372
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1373
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1374
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1375
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1376
!
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1377
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1378
documentation
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1379
"
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1380
    ExternalStream defines protocol common to Streams which have a file-descriptor and
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1381
    represent some file or communicationChannel of the underlying OperatingSystem.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1382
    ExternalStream is abstract; concrete classes are FileStream, PipeStream etc.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1383
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1384
    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
  1385
    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
  1386
    while in binary-mode the basic elements are bytes which read/write as SmallIntegers
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1387
    in the range 0..255.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1388
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1389
    Also, the stream can be either in buffered or unbuffered mode. In buffered mode,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1390
    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
  1391
    is sent (in both modes).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1392
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1393
    The underlying OperatingSystem streams may either be closed explicitely (sending a close)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1394
    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
  1395
    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
  1396
    happens - so it is recommended, that you close your files when no longer needed).
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1397
    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
  1398
    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
  1399
    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
  1400
    a noop in one of the superclasses).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1401
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1402
    Most of the methods found here redefine inherited methods for better performance,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1403
    since I/O from/to files should be fast.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1404
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1405
    Recovering a snapshot:
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1406
      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
  1407
      reOpen in subclasses for more information.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1408
      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
  1409
      reestablish the stream upon image restart (make someone dependent on ObjectMemory).
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1410
      FileStreams are reopened and positioned to their offset they had at snapshot time.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1411
      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
  1412
      if the contents changed in the meantime.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1413
      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
  1414
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1415
    [Instance variables:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1416
20411
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1417
        handleType      <Symbol>        desribes what handle is:
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1418
                                            win32: #fileHandle, #socketHandle,
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1419
                                                   #filePointer, #socketFilePointer, #pipeFilePointer
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1420
                                            unix: #filePointer, #socketFilePointer, #pipeFilePointer
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1421
                                        needed for win32, which uses different APIs for the different handles (sigh)
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1422
        handle          <Integer>       used to be always a filePointer somehow mapped to an integer (FILE* - not the fd);
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1423
                                        now, either a filePointer or a handle (win32)
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1424
        mode            <Symbol>        #readwrite, #readonly or #writeonly
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1425
        buffered        <Boolean>       true, if buffered (i.e. collects characters - does
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1426
                                        not output immediately)
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1427
        binary          <Boolean>       true if in binary mode (reads bytes instead of chars)
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1428
        eolMode         <Symbol>        one of nil, #nl, #cr or #crlf.
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1429
                                        determines how lines should be terminated.
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1430
                                        nil -> newLine (as in Unix);
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1431
                                        #crlf -> with cr-lf (as in MSDOS)
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1432
                                        #cr -> with cr (as in VMS)
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1433
        hitEOF          <Boolean>       true, if EOF was reached
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1434
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1435
        lastErrorNumber <Integer>       the value of errno (only valid right after the error -
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1436
                                        updated with next i/o operation)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1437
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1438
    [Class variables:]
20411
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1439
        Lobby           <Registry>      keeps track of used ext-streams (to free up FILE*'s)
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1440
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1441
        StreamErrorSignal       <Signal> parent of all stream errors (see Stream class)
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1442
        InvalidReadSignal       <Signal> raised on read from writeonly stream
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1443
        InvalidWriteSignal      <Signal> raised on write to readonly stream
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1444
        InvalidModeSignal       <Signal> raised on text I/O with binary-stream
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1445
                                         or binary I/O with text-stream
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1446
        OpenErrorSignal         <Signal> raised if open fails
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1447
        StreamNotOpenSignal     <Signal> raised on I/O with non-open stream
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1448
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1449
    Additional notes:
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1450
      This class is implemented using the underlying stdio-c library package, which
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1451
      has both advantages and disadvantages: since it is portable (posix defined), porting
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1452
      ST/X to non-Unix machines is simplified. The disadvantage is that the stdio library
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1453
      has big problems handling unbounded Streams, since the EOF handling in stdio is
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1454
      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
  1455
      a complete rewrite for UnboundedStream ...
325
claus
parents: 308
diff changeset
  1456
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1457
      Also, depending on the system, the stdio library behaves infriendly when signals
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1458
      occur while reading (for example, timer interrupts) - on real unixes (i.e. BSD) the signal
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1459
      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
  1460
      an error and errno is set to EINTR.
20411
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1461
      That's what the ugly code around all getc-calls is for ...
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1462
      Since things get more and more ugly - we will rewrite ExternalStream
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1463
      completely, to NOT use any stdio stuff (and do its buffering itself).
325
claus
parents: 308
diff changeset
  1464
claus
parents: 308
diff changeset
  1465
      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
  1466
      this was bad design in the stdio lib (right from the very beginning), since it's much
325
claus
parents: 308
diff changeset
  1467
      harder to deal with this in the presence of lightweight processes, where errno gets
claus
parents: 308
diff changeset
  1468
      overwritten by an I/O operation done in another thread. (stdio should have been written
claus
parents: 308
diff changeset
  1469
      to return errno as a negative number ...).
claus
parents: 308
diff changeset
  1470
      To deal with this, the scheduler treats errno like a per-thread private variable,
claus
parents: 308
diff changeset
  1471
      and saves/restores the errno setting when switching to another thread.
claus
parents: 308
diff changeset
  1472
      (Notice that some thread packages do this also, but ST/X's thread implementation
claus
parents: 308
diff changeset
  1473
      does not depend on those, but instead uses a portable private package).
claus
parents: 308
diff changeset
  1474
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1475
      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
  1476
      fseek whenever we are about to read after write and vice versa.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1477
      Two macros (__READING__ and __WRITING__) have been defined to be used before every
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1478
      fread/fgetc and fwrite/putc respectively.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1479
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1480
    [author:]
20411
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1481
        Claus Gittinger
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1482
        Stefan Vogel (many, many fixes ...)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1483
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1484
    [see also:]
20411
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1485
        FileStream Socket PipeStream
5094bd64e3f0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20380
diff changeset
  1486
        Filename OperatingSystem
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1487
"
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1488
!
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1489
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1490
examples
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1491
"
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1492
    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
  1493
									[exBegin]
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1494
	|topView scrollPane textView fileStream text|
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1495
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1496
	topView := StandardSystemView new.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1497
	topView label:'contents of Makefile'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1498
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1499
	scrollPane := HVScrollableView in:topView.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1500
	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
  1501
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1502
	textView := EditTextView new.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1503
	scrollPane scrolledView:textView.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1504
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1505
	fileStream := 'Makefile' asFilename readStream.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1506
	text := fileStream upToEnd.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1507
	fileStream close.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1508
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1509
	textView contents:text.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1510
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1511
	topView open.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1512
									[exEnd]
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1513
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1514
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1515
    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
  1516
									[exBegin]
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1517
	EditTextView openOn:'Makefile'
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1518
									[exEnd]
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1519
"
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1520
! !
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1521
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1522
!ExternalStream class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1523
18636
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1524
closeFiles
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1525
    "close all files.
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1526
     To be called on exit of Smalltalk."
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1527
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1528
    Lobby do:[:eachFileStream |
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1529
	eachFileStream close
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
!
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1532
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1533
initDefaultEOLMode
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1534
    OperatingSystem isUNIXlike ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1535
	"/ unix EOL conventions
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1536
	DefaultEOLMode := #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1537
    ] ifFalse:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1538
	OperatingSystem isVMSlike ifTrue:[
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1539
	    "/ vms EOL conventions
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1540
	    DefaultEOLMode := #cr
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1541
	] ifFalse:[
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1542
	    "/ msdos EOL conventions
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1543
	    "/ msdos uses #crlf.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1544
	    "/ the following breaks all programs, which do not explicitly
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1545
	    "/ 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
  1546
	    "/ MUST change all classes before doing the following.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1547
	    "/ 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
  1548
	    "/ mode (for a while, I hope).
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1549
	    DefaultEOLMode := #crlf.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1550
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1551
	    "/ DefaultEOLMode := #nl
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1552
	]
2920
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
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1556
initModeStrings
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1557
    "initialize modeStrings which are passed down to the underlying
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1558
     fopen/fdopen functions."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1559
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1560
    OperatingSystem isMSDOSlike ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1561
	ReadMode := 'rb'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1562
	ReadWriteMode := 'rb+'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1563
	WriteMode := 'wb'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1564
	AppendMode := 'ab+'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1565
	CreateReadWriteMode := 'wb+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1566
    ] ifFalse:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1567
	ReadMode := 'r'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1568
	ReadWriteMode := 'r+'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1569
	WriteMode := 'w'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1570
	AppendMode := 'a+'.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1571
	CreateReadWriteMode := 'w+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1572
    ]
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1573
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1574
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1575
initialize
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 583
diff changeset
  1576
    OpenErrorSignal isNil ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1577
	OpenErrorSignal := OpenError.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1578
	OpenErrorSignal notifierString:'open error'.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1579
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1580
	InvalidReadSignal := InvalidReadError.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1581
	InvalidReadSignal notifierString:'stream does not support reading'.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1582
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1583
	InvalidWriteSignal := InvalidWriteError.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1584
	InvalidWriteSignal notifierString:'stream does not support writing'.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1585
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1586
	InvalidModeSignal := InvalidModeError.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1587
	InvalidModeSignal notifierString:'binary/text mode mismatch'.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1588
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1589
	InvalidOperationSignal := InvalidOperationError.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1590
	InvalidOperationSignal notifierString:'unsupported file operation'.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1591
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1592
	StreamNotOpenSignal := StreamNotOpenError.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1593
	StreamNotOpenSignal notifierString:'stream is not open'.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1594
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1595
	StreamIOErrorSignal := StreamIOError.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1596
	StreamIOErrorSignal notifierString:'I/O error'.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1597
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1598
	"/ self patchByteOrderOptimizedMethods
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1599
    ].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1600
31
75f2b9f78be2 *** empty log message ***
claus
parents: 25
diff changeset
  1601
    Lobby isNil ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1602
	Lobby := Registry new.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1603
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1604
	"want to get informed when returning from snapshot"
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1605
	ObjectMemory addDependent:self
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1606
    ].
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1607
    DefaultEOLMode isNil ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1608
	self initDefaultEOLMode.
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1609
    ].
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1610
    ReadMode isNil ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1611
	self initModeStrings.
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1612
    ].
18790
7277f699c8f6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18783
diff changeset
  1613
7277f699c8f6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18783
diff changeset
  1614
    "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
  1615
    "/ MaxNonTenurableExecutors := ObjectMemory newSpaceSize // (Socket sizeOfInst:0) // 20.
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
  1616
    "/ cg: changed because Socket is not in libbasic. Thus, standalone (libbasic only)
14b2c3ab66e8 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18797
diff changeset
  1617
    "/ 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
  1618
    MaxNonTenurableExecutors := (ObjectMemory newSpaceSize // 20 min:2000).
18790
7277f699c8f6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18783
diff changeset
  1619
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1620
    "Modified: / 21.5.1998 / 16:33:53 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1621
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1622
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1623
patchByteOrderOptimizedMethods
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1624
    "EXPERIMENTAL (not yet done by default):
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1625
     change the underlying implementation of
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1626
	nextPutInt16MSB / nextPutInt16LSB
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1627
	nextPutInt32MSB / nextPutInt32LSB
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1628
     to the corresponding NATIVE methods."
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1629
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1630
    |native16 native32|
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1631
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1632
    native16 := self compiledMethodAt:#nextPutInt16NATIVE:.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1633
    native32 := self compiledMethodAt:#nextPutInt32NATIVE:.
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1634
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1635
    UninterpretedBytes isBigEndian ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1636
	(self compiledMethodAt:#nextPutInt16MSB:) code:(native16 code).
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1637
	(self compiledMethodAt:#nextPutInt32MSB:) code:(native32 code).
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1638
    ] ifFalse:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1639
	(self compiledMethodAt:#nextPutInt16LSB:) code:(native16 code).
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  1640
	(self compiledMethodAt:#nextPutInt32LSB:) code:(native32 code).
19615
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
!
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  1643
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1644
reOpenFiles
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1645
    "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
  1646
     This is invoked via the #earlyRestart change notification."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1647
18636
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  1648
    Lobby do:[:eachFileStream |
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1649
	eachFileStream reOpen
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1650
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1651
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1652
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1653
update:something with:aParameter from:changedObject
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1654
    "have to reopen files when returning from snapshot"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1655
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1656
    something == #earlyRestart ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1657
	self reOpenFiles.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1658
	self initDefaultEOLMode
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1659
    ]
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1660
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1661
    "Created: 15.6.1996 / 15:19:59 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1662
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1663
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1664
!ExternalStream class methodsFor:'instance creation'!
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1665
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1666
forFileDescriptor:aFileDescriptor mode:modeSymbol
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1667
    "given a fileDescriptor, create an ExternalStream object
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1668
     to operate on this fd.
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1669
     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
  1670
     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
  1671
     primitive code, or to wrap pipe-fds into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1672
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1673
    ^ self forFileDescriptor:aFileDescriptor mode:modeSymbol buffered:true handleType:nil
7002
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
    "
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1676
     the example below will probably fail (15 is a random FD):
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1677
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1678
     |s|
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1679
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1680
     s := ExternalStream forFileDescriptor:15 mode:'r'.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1681
     s next.
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
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1684
    "Created: 29.2.1996 / 18:05:00 / cg"
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1685
    "Modified: 29.2.1996 / 18:17:07 / cg"
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1686
!
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1687
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1688
forFileDescriptor:aFileDescriptor mode:modeSymbol buffered:buffered handleType:handleTypeSymbol
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1689
    "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
  1690
     to operate on this fd.
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1691
     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
  1692
     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
  1693
     primitive code, or to wrap pipe-fds into externalStreams."
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1694
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  1695
    ^ self new
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  1696
        buffered:buffered;
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  1697
        connectTo:aFileDescriptor withMode:modeSymbol handleType:handleTypeSymbol.
2920
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
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1700
     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
  1701
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1702
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1703
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  1704
     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
  1705
     s next.
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
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1708
    "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
  1709
    "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
  1710
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1711
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1712
forReadWriteToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1713
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1714
     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
  1715
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1716
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1717
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1718
    ^ self forFileDescriptor:aFileDescriptor mode:#readWrite
2920
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
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1721
     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
  1722
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1723
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1724
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1725
     s := ExternalStream forReadWriteToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1726
     s next.
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
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1729
    "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
  1730
    "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
  1731
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1732
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1733
forReadingFromFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1734
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1735
     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
  1736
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1737
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1738
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1739
    ^ self forFileDescriptor:aFileDescriptor mode:#readonly
2920
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
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1742
     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
  1743
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1744
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1745
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1746
     s := ExternalStream forReadingFromFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1747
     s next.
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
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1751
     |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
  1752
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1753
     'create OS pipe ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1754
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1755
     pipe := OperatingSystem makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1756
     readFd := pipe at:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1757
     writeFd := pipe at:2.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1758
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1759
     'connect Smalltalk streams ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1760
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1761
     rs := ExternalStream forReadingFromFileDescriptor:readFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1762
     ws := ExternalStream forWritingToFileDescriptor:writeFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1763
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1764
     'read ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1765
     [
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1766
	 1 to:10 do:[:i |
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1767
	     Transcript showCR:rs nextLine
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1768
	 ].
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1769
	 rs close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1770
     ] forkAt:7.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1771
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1772
     'write ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1773
     [
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1774
	 1 to:10 do:[:i |
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1775
	     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
  1776
	 ].
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  1777
	 ws close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1778
     ] fork.
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
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1782
    "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
  1783
    "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
  1784
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1785
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1786
forWritingToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1787
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1788
     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
  1789
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1790
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1791
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1792
    ^ self forFileDescriptor:aFileDescriptor mode:#writeonly
2920
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
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1795
     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
  1796
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1797
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1798
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1799
     s := ExternalStream forWritingToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1800
     s binary.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1801
     s nextPut:1.
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
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1804
    "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
  1805
    "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
  1806
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1807
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1808
new
15918
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  1809
    "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
  1810
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  1811
    ^ self basicNew initialize.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1812
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1813
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1814
!ExternalStream class methodsFor:'Signal constants'!
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1815
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1816
inaccessibleSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1817
    "ST-80 compatibility: return openErrorSignal"
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1818
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1819
    ^ self openErrorSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1820
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1821
    "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
  1822
!
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1823
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1824
invalidModeSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1825
    "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
  1826
     or binary-I/O with a text stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1827
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1828
    ^ InvalidModeError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1829
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1830
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1831
invalidOperationSignal
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1832
    "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
  1833
     I/O operation is attempted"
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1834
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1835
    ^ InvalidOperationError
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1836
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1837
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1838
invalidReadSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1839
    "return the signal raised when reading from writeonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1840
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1841
    ^ InvalidReadError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1842
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1843
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1844
invalidWriteSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1845
    "return the signal raised when writing to readonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1846
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1847
    ^ InvalidWriteError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1848
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1849
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1850
openErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1851
    "return the signal raised when a file open failed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1852
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1853
    ^ OpenErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1854
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1855
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1856
streamIOErrorSignal
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1857
    "return the signal raised when an I/O error occurs.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1858
     (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
  1859
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1860
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1861
    ^ StreamIOError
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1862
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1863
    "Created: / 21.5.1998 / 16:32:55 / cg"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1864
!
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1865
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1866
streamNotOpenSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1867
    "return the signal raised on I/O with closed streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1868
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1869
    ^ StreamNotOpenError
2
claus
parents: 1
diff changeset
  1870
! !
claus
parents: 1
diff changeset
  1871
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1872
!ExternalStream class methodsFor:'error handling'!
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1873
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1874
errorReporter
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1875
    "I know about error codes"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1876
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1877
    ^ self
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1878
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1879
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1880
lastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1881
    "return the errno of the last error"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1882
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1883
    ^ LastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1884
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1885
    "
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1886
     ExternalStream lastErrorNumber
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1887
    "
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1888
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1889
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1890
lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1891
    "return a message string describing the last error"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1892
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1893
    ^ OperatingSystem errorTextForNumber:LastErrorNumber
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1894
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1895
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1896
     ExternalStream lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1897
    "
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1898
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1899
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1900
reportOn:anErrorSymbolOrNumber
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  1901
    "an error occurred.
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1902
     Report it via an Exception"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1903
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1904
    anErrorSymbolOrNumber isInteger ifTrue:[
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  1905
        StreamError
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  1906
            raiseRequestWith:anErrorSymbolOrNumber
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  1907
            errorString:(' - os error:' , (OperatingSystem errorTextForNumber:anErrorSymbolOrNumber))
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1908
    ].
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1909
    (self respondsTo:anErrorSymbolOrNumber) ifTrue:[
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  1910
        self perform:anErrorSymbolOrNumber
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1911
    ] ifFalse:[
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  1912
        StreamError
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  1913
            raiseRequestWith:anErrorSymbolOrNumber
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  1914
            errorString:(' - ' , anErrorSymbolOrNumber printString)
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1915
    ].
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1916
    ^ false
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1917
! !
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1918
20987
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1919
!ExternalStream class methodsFor:'finalization'!
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1920
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1921
finalizationLobby
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1922
    "answer the registry used for finalization.
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1923
     ExternalStreams have their own Registry"
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1924
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1925
    ^ Lobby
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1926
! !
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  1927
7497
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1928
!ExternalStream class methodsFor:'obsolete'!
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1929
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1930
makePTYPair
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1931
    "obsolete since 12-07-2003"
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1932
    <resource:#obsolete>
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1933
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1934
    self obsoleteMethodWarning:'use NonPositionableExternalStream makePTYPair'.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1935
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1936
    ^ NonPositionableExternalStream makePTYPair.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1937
!
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1938
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1939
makePipe
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1940
    "obsolete since 12-07-2003"
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1941
    <resource:#obsolete>
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1942
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1943
    self obsoleteMethodWarning:'use NonPositionableExternalStream makePipe'.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1944
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1945
    ^ NonPositionableExternalStream makePipe.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1946
! !
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1947
21037
152fe5102be0 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21032
diff changeset
  1948
!ExternalStream class methodsFor:'testing'!
152fe5102be0 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21032
diff changeset
  1949
152fe5102be0 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21032
diff changeset
  1950
isAbstract
152fe5102be0 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21032
diff changeset
  1951
    ^ self == ExternalStream
152fe5102be0 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21032
diff changeset
  1952
! !
152fe5102be0 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21032
diff changeset
  1953
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7195
diff changeset
  1954
!ExternalStream methodsFor:'Compatibility-Dolphin'!
6474
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1955
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1956
beText
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1957
    self text
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1958
! !
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1959
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7195
diff changeset
  1960
!ExternalStream methodsFor:'Compatibility-Squeak'!
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1961
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1962
nextInto:aByteArrayOrString
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1963
    "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
  1964
     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
  1965
     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
  1966
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1967
    |n nWanted|
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1968
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1969
    nWanted := aByteArrayOrString byteSize.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1970
    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
  1971
    n == nWanted ifTrue:[^ aByteArrayOrString].
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1972
    ^ aByteArrayOrString copyTo:n
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1973
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1974
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1975
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1976
readInto:aContainer startingAt:index count:nElements
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1977
    "same as #nextBytes:into:startingAt: for ByteArrays;
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1978
     for LongArrays, nelements longs are read.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1979
     Squeak compatibility."
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1980
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1981
    |elementSize n|
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1982
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1983
    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
  1984
    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
  1985
    ^ n // elementSize
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1986
13940
12eb1c056d5e fixed: #readInto:startingAt:count:; offset was wrong for non-byte elements
Claus Gittinger <cg@exept.de>
parents: 13927
diff changeset
  1987
    "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
  1988
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1989
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1990
readOnly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1991
    "Squeak compatibility: make the stream readOnly"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1992
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1993
    mode := #readonly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1994
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1995
    "Modified: 20.10.1997 / 19:23:04 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1996
    "Created: 20.10.1997 / 19:23:19 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1997
! !
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1998
5187
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1999
!ExternalStream methodsFor:'Signal constants'!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2000
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2001
invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2002
    ^ self class invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2003
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2004
    "Created: / 3.12.1998 / 15:12:06 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2005
!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2006
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2007
invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2008
    ^ self class invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2009
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2010
    "Created: / 3.12.1998 / 15:12:10 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2011
! !
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  2012
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2013
!ExternalStream methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2014
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2015
binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2016
    "switch to binary mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2017
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2018
    binary := true
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2019
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2020
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2021
buffered:aBoolean
10
claus
parents: 5
diff changeset
  2022
    "turn buffering on or off - default is on"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2023
10
claus
parents: 5
diff changeset
  2024
    buffered := aBoolean
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2025
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2026
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2027
contents
2
claus
parents: 1
diff changeset
  2028
    "return the contents of the file from the current position up-to
claus
parents: 1
diff changeset
  2029
     the end. If the stream is in binary mode, a ByteArray containing
claus
parents: 1
diff changeset
  2030
     the byte values is returned.
claus
parents: 1
diff changeset
  2031
     In text-mode, a collection of strings, each representing one line,
claus
parents: 1
diff changeset
  2032
     is returned."
claus
parents: 1
diff changeset
  2033
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  2034
    |text|
2
claus
parents: 1
diff changeset
  2035
claus
parents: 1
diff changeset
  2036
    binary ifTrue:[
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  2037
        ^ self upToEnd.
2
claus
parents: 1
diff changeset
  2038
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2039
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  2040
    "/ text mode
244
9faa2da0650a Text <-> StringCollection
claus
parents: 223
diff changeset
  2041
    text := StringCollection new.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2042
    [self atEnd] whileFalse:[
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  2043
        |line|
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  2044
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  2045
        line := self nextLine.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  2046
        line isNil ifTrue:[
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  2047
            ^ text
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  2048
        ].
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  2049
        text add:line
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2050
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2051
    ^ text
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2052
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2053
11751
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2054
contentsAsString
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2055
    "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
  2056
     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
  2057
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  2058
    ^ self upToEnd
11751
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2059
!
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2060
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2061
contentsOfEntireFile
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  2062
    "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
  2063
     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
  2064
6305
53b87502fc21 Fix #contentsOfEntireFile
Stefan Vogel <sv@exept.de>
parents: 6269
diff changeset
  2065
    ^ self upToEnd
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  2066
3876
a680b41a014c comment
Claus Gittinger <cg@exept.de>
parents: 3872
diff changeset
  2067
    "Modified: / 3.7.1996 / 13:22:16 / stefan"
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  2068
    "Modified: / 27.11.1998 / 16:29:43 / cg"
2
claus
parents: 1
diff changeset
  2069
!
claus
parents: 1
diff changeset
  2070
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2071
contentsSpecies
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2072
    "return the kind of object to be returned by sub-collection builders
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2073
     (such as upTo)"
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2074
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  2075
    binary ifTrue:[
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  2076
        ^ ByteArray
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2077
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2078
    ^ String
2
claus
parents: 1
diff changeset
  2079
!
claus
parents: 1
diff changeset
  2080
16776
fd62ae0ff6fa class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16551
diff changeset
  2081
eolMode
fd62ae0ff6fa class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16551
diff changeset
  2082
    "return how end-of-line (EOL) is to be marked.
fd62ae0ff6fa class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16551
diff changeset
  2083
     Returns one one of:
21097
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2084
        #crlf         -> add a CR-NL, as in MSDOS
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2085
        #cr           -> add a CR, as in VMS
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2086
        #nl           -> add a NL, as in Unix
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2087
        #eot          -> add an EOT (= 0x04, as used in some modems/protocols)
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2088
        #etx          -> add an ETX (= 0x03, as used in some modems/protocols)
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2089
        #nl           -> add a NL, as in Unix
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2090
        nil           -> transparent
16776
fd62ae0ff6fa class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16551
diff changeset
  2091
    "
fd62ae0ff6fa class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16551
diff changeset
  2092
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
  2093
    ^ eolMode
21097
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2094
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2095
    "Modified (comment): / 06-12-2016 / 14:26:24 / cg"
16776
fd62ae0ff6fa class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16551
diff changeset
  2096
!
fd62ae0ff6fa class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16551
diff changeset
  2097
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2098
eolMode:aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2099
    "specify how end-of-line (EOL) is to be marked.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2100
     The argument may be one of:
21097
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2101
        #crlf         -> add a CR-NL, as in MSDOS
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2102
        #cr           -> add a CR, as in VMS
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2103
        #nl           -> add a NL, as in Unix
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2104
        #eot          -> add an EOT (= 0x04, as used in some modems/protocols)
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2105
        #etx          -> add an ETX (= 0x03, as used in some modems/protocols)
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2106
        anyOther      -> like #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2107
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2108
17462
6448b4559e12 ouch: eolMode
Claus Gittinger <cg@exept.de>
parents: 17432
diff changeset
  2109
    aSymbolOrNil == #crnl ifTrue:[
21097
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2110
        eolMode := #crlf
17462
6448b4559e12 ouch: eolMode
Claus Gittinger <cg@exept.de>
parents: 17432
diff changeset
  2111
    ] ifFalse:[
21097
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2112
        aSymbolOrNil == #lf ifTrue:[
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2113
            eolMode := #nl
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2114
        ] ifFalse:[
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2115
            eolMode := aSymbolOrNil
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2116
        ]
17462
6448b4559e12 ouch: eolMode
Claus Gittinger <cg@exept.de>
parents: 17432
diff changeset
  2117
    ].
21097
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2118
12cf2700134c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21066
diff changeset
  2119
    "Modified (comment): / 06-12-2016 / 14:26:37 / cg"
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2120
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2121
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2122
fileDescriptor
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2123
    "return the fileDescriptor of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2124
     notice: this one returns the underlying OSs fileDescriptor -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2125
     this may not be available on all platforms (i.e. non unix systems)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2126
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3956
diff changeset
  2127
%{
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2128
    OBJ _handle  = __INST(handle);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2129
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2130
    if (_handle != nil) {
21238
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  2131
        if ((__INST(handleType) == @symbol(fileHandle))
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  2132
         || (__INST(handleType) == @symbol(socketHandle))) {
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  2133
            RETURN (_handle);
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  2134
        } else if ((__INST(handleType) == nil)
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  2135
                     || (__INST(handleType) == @symbol(filePointer))
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  2136
                     || (__INST(handleType) == @symbol(socketFilePointer))
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  2137
                     || (__INST(handleType) == @symbol(pipeFilePointer))) {
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  2138
            RETURN ( __MKINT(fileno(__FILEVal(_handle))));
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  2139
        }
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2140
    }
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2141
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2142
    handle isNil ifTrue:[^ self errorNotOpen].
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2143
    ^ self fileDescriptorOfFile:handle
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2144
!
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2145
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2146
fileDescriptorOfFile:handle
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2147
    "for migration to rel5 only:
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2148
     return the fileDescriptor of the argument handle -
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2149
     notice: this one returns the underlying OSs fileDescriptor -
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2150
     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
  2151
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  2152
%{
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  2153
#ifdef __SCHTEAM__
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  2154
    return context._RETURN(handle);
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  2155
#endif
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  2156
%}.
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2157
    self primitiveFailed
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2158
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2159
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2160
fileHandle
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2161
    "return the fileHandle of the receiver.
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2162
     Under unix, this is the fileDescriptor; under windows, this is the Handle."
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2163
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2164
%{
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2165
    OBJ _handle  = __INST(handle);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2166
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2167
    if (_handle != nil) {
20690
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  2168
        if ((__INST(handleType) == @symbol(fileHandle))
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  2169
         || (__INST(handleType) == @symbol(socketHandle))) {
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  2170
            RETURN (_handle);
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  2171
        }
21253
20f8058333cd #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21238
diff changeset
  2172
        if (__INST(handleType) == @symbol(pipeFilePointer)) {
20f8058333cd #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21238
diff changeset
  2173
            RETURN (__MKINT(fileno(__FILEVal(_handle))));
20f8058333cd #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21238
diff changeset
  2174
        }
20690
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  2175
        if ((__INST(handleType) == nil)
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  2176
         || (__INST(handleType) == @symbol(filePointer))
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  2177
         || (__INST(handleType) == @symbol(socketFilePointer))
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  2178
         || (__INST(handleType) == @symbol(pipeFilePointer))) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  2179
#ifdef __win32__
20690
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  2180
            RETURN(__MKEXTERNALADDRESS(_get_osfhandle(fileno(__FILEVal(_handle)))));
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2181
#else
20690
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  2182
            RETURN (__MKINT(fileno(__FILEVal(_handle))));
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2183
#endif
20690
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  2184
        }
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2185
    }
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2186
%}.
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2187
    ^ handle
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2188
!
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2189
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2190
filePointer
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2191
    "return the filePointer of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2192
     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
  2193
     a FILE * - not a fileDescriptor.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2194
     (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
  2195
     You cannot do much with the returned value
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2196
     - except passing it to a primitive, for example."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2197
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2198
    (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
  2199
	^ handle
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2200
    ].
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2201
    ^ self error:'not a FILE*'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2202
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2203
21229
683f7b03f4d6 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 21224
diff changeset
  2204
handle
683f7b03f4d6 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 21224
diff changeset
  2205
    ^ handle
683f7b03f4d6 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 21224
diff changeset
  2206
!
683f7b03f4d6 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 21224
diff changeset
  2207
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2208
handleType
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2209
    ^ handleType
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2210
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2211
5323
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2212
lineEndCRLF
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2213
    eolMode := #crlf
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2214
!
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2215
17672
758c3ff0c9e0 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 17634
diff changeset
  2216
lineEndLF
758c3ff0c9e0 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 17634
diff changeset
  2217
    eolMode := #nl
758c3ff0c9e0 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 17634
diff changeset
  2218
!
758c3ff0c9e0 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 17634
diff changeset
  2219
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2220
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
  2221
    eolMode := #nl
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2222
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2223
8069
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2224
pathName
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2225
    "answer the pathName of the stream.
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2226
     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
  2227
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2228
    ^ ''
8069
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2229
!
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2230
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2231
readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2232
    "set access mode to readonly"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2233
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2234
    mode := #readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2235
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2236
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2237
readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2238
    "set access mode to readwrite"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2239
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2240
    mode := #readwrite
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2243
text
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2244
    "switch to text mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2245
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2246
    binary := false
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2247
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2248
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2249
useCRLF:aBoolean
20147
bf474597127c #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 20106
diff changeset
  2250
    <resource: #obsolete>
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2251
    "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
  2252
     This method is provided for backward compatibility - see #eolMode:
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2253
     which offers another choice."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2254
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2255
    aBoolean ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2256
	eolMode := #crlf
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2257
    ] ifFalse:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2258
	eolMode := #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2259
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2260
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2261
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2262
writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2263
    "set access mode to writeonly"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2264
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2265
    mode := #writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2266
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2267
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2268
!ExternalStream methodsFor:'closing'!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2269
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2270
abortAndClose
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2271
    "close the stream - added for protocol compatibility with Socket and PipeStream.
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2272
     see comment there"
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2273
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2274
    self close.
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2275
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2276
    "Modified: 30.8.1996 / 00:39:21 / cg"
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2277
!
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2278
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2279
close
20106
f2f009eeee26 #DOCUMENTATION by mawalch
mawalch
parents: 20104
diff changeset
  2280
    "Close the stream.
f2f009eeee26 #DOCUMENTATION by mawalch
mawalch
parents: 20104
diff changeset
  2281
     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
  2282
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2283
    self isOpen ifTrue:[
20106
f2f009eeee26 #DOCUMENTATION by mawalch
mawalch
parents: 20104
diff changeset
  2284
        self unregisterForFinalization.
20571
c158fb6ff2da #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20411
diff changeset
  2285
        self isOpen ifTrue:[
c158fb6ff2da #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20411
diff changeset
  2286
            self closeFile.
c158fb6ff2da #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20411
diff changeset
  2287
        ].
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  2288
    ].
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2289
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2290
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2291
shutDown
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2292
    "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
  2293
     see comment there"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2294
19072
dd63f674181c #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19008
diff changeset
  2295
    self close.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2296
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2297
    "Modified: 30.8.1996 / 00:39:21 / cg"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2298
! !
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2299
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2300
!ExternalStream methodsFor:'copying'!
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2301
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2302
copy
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2303
    "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
  2304
     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
  2305
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2306
    |copy|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2307
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2308
    copy := super copy.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2309
    copy dupFd.
18779
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2310
    copy registerForFinalization.
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2311
    ^ copy
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2312
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2313
    "
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2314
       |stream1 stream2|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2315
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2316
       stream1 := Filename newTemporary writeStream.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2317
       stream2 := stream1 copy.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2318
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2319
       stream1 inspect.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2320
       stream2 inspect.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2321
    "
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2322
! !
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2323
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2324
!ExternalStream methodsFor:'error handling'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2325
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2326
argumentMustBeCharacter
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2327
    "report an error, that the argument must be a character in 0..FF"
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2328
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2329
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2330
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2331
    ArgumentError raiseErrorString:' - argument must be a single byte character'
612
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
argumentMustBeInteger
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2335
    "report an error, that the argument must be an integer"
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2336
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2337
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2338
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2339
    ArgumentError raiseErrorString:' - argument must be an integer'
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2340
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2341
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2342
argumentMustBeString
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2343
    "report an error, that the argument must be a string"
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2344
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2345
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2346
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2347
    ArgumentError raiseErrorString:' - argument must be a string'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2348
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2349
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2350
errorAlreadyOpen
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2351
    "{ Pragma: +optSpace }"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2352
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2353
    "report an error, that the stream is already opened"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2354
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2355
    ^ OpenError
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2356
	raiseRequestWith:self
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2357
	errorString:' - stream is already open'
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2358
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2359
    "
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2360
      self new errorAlreadyOpen
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2361
    "
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2362
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2363
    "Modified: / 8.5.1999 / 20:12:30 / cg"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2364
!
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2365
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2366
errorBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2367
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2368
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2369
    "report an error, that the stream is in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2370
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2371
    ^ InvalidModeError
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2372
	raiseRequestWith:self
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2373
	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
  2374
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2375
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2376
    "Modified: / 8.5.1999 / 20:12:43 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2377
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2378
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2379
errorNotBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2380
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2381
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2382
    "report an error, that the stream is not in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2383
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2384
    ^ InvalidModeError
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2385
	raiseRequestWith:self
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2386
	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
  2387
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2388
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2389
    "Modified: / 8.5.1999 / 20:12:40 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2390
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2391
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2392
errorNotBuffered
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2393
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2394
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2395
    "report an error, that the stream is not in buffered mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2396
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2397
    ^ StreamError
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2398
	raiseRequestWith:self
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2399
	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
  2400
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2401
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2402
    "Modified: / 8.5.1999 / 20:12:36 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2403
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2404
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2405
errorReadOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2406
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2407
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2408
    "report an error, that the stream is a readOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2409
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2410
    ^ 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
  2411
4468
8c67b4f973d8 raise vs. raiseRequest
Claus Gittinger <cg@exept.de>
parents: 4456
diff changeset
  2412
    "Modified: / 30.7.1999 / 17:08:19 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2413
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2414
6255
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2415
errorReporter
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2416
    "ST-80 mimicry."
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2417
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  2418
    ^ self class
6255
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2419
!
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2420
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2421
errorUnsupportedOperation
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2422
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2423
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2424
    "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
  2425
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2426
    ^ 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
  2427
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2428
    "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
  2429
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2430
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2431
errorWriteOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2432
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2433
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2434
    "report an error, that the stream is a writeOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2435
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2436
    ^ 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
  2437
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2438
    "Modified: / 8.5.1999 / 20:12:20 / cg"
2
claus
parents: 1
diff changeset
  2439
!
claus
parents: 1
diff changeset
  2440
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2441
ioError
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2442
    "report an error, that some I/O error occurred.
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2443
     (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
  2444
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2445
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2446
    "{ Pragma: +optSpace }"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2447
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2448
    self ioError:lastErrorNumber
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2449
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2450
    "Modified: / 8.5.1999 / 20:12:16 / cg"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2451
!
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2452
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2453
ioError:errorNumber
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2454
    "report an error, that some I/O error occurred.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2455
     (for example, a device-IO-error, or reading an NFS-dir,
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2456
     which is no longer available and has been mounted soft)"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2457
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2458
    "{ Pragma: +optSpace }"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2459
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2460
    ^ StreamIOError newException
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2461
        errorCode:errorNumber;
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2462
        osErrorHolder:(OperatingSystem errorHolderForNumber:errorNumber);
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2463
        parameter:self;
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2464
        raiseRequest
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2465
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2466
    "Modified: / 8.5.1999 / 20:12:16 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2467
!
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
lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2470
    "return the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2471
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2472
    ^ lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2473
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2474
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2475
lastErrorString
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2476
    "return a message string describing the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2477
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2478
    (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
  2479
	^ 'I/O error'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2480
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2481
    ^ OperatingSystem errorTextForNumber:lastErrorNumber
2
claus
parents: 1
diff changeset
  2482
!
claus
parents: 1
diff changeset
  2483
10932
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2484
lastErrorSymbol
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2485
    "return an error symbol describing the last error"
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2486
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2487
    ^ OperatingSystem errorSymbolForNumber:lastErrorNumber
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2488
!
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2489
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2490
openError
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2491
    "report an error, that the open failed"
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2492
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2493
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2494
14438
a4280b8038c0 changed:
Stefan Vogel <sv@exept.de>
parents: 14068
diff changeset
  2495
    ^ self openError:lastErrorNumber.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2496
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2497
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2498
openError:errorNumber
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2499
    "report an error, that the open failed"
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2500
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2501
    "{ Pragma: +optSpace }"
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2502
15496
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2503
    |exClass errorHolder|
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2504
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2505
    errorHolder := OperatingSystem errorHolderForNumber:errorNumber.
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2506
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2507
    exClass := (errorHolder errorCategory == #nonexistentSignal)
19866
69742aa1fd63 #OTHER by mawalch
mawalch
parents: 19860
diff changeset
  2508
        ifTrue:[ FileDoesNotExistException ]
69742aa1fd63 #OTHER by mawalch
mawalch
parents: 19860
diff changeset
  2509
        ifFalse:[ OpenError ].
13673
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2510
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2511
    ^ exClass newException
19866
69742aa1fd63 #OTHER by mawalch
mawalch
parents: 19860
diff changeset
  2512
        errorCode:errorNumber;
69742aa1fd63 #OTHER by mawalch
mawalch
parents: 19860
diff changeset
  2513
        osErrorHolder:errorHolder;
69742aa1fd63 #OTHER by mawalch
mawalch
parents: 19860
diff changeset
  2514
        "/ cg: initialized lazily - see OpenError>>#description
69742aa1fd63 #OTHER by mawalch
mawalch
parents: 19860
diff changeset
  2515
        "/ errorString:(' : ' , errorHolder errorString);
69742aa1fd63 #OTHER by mawalch
mawalch
parents: 19860
diff changeset
  2516
        parameter:self;
69742aa1fd63 #OTHER by mawalch
mawalch
parents: 19860
diff changeset
  2517
        raiseRequest
69742aa1fd63 #OTHER by mawalch
mawalch
parents: 19860
diff changeset
  2518
        "/ in:thisContext sender
13673
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2519
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2520
    "Modified: / 09-09-2011 / 07:22:49 / cg"
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2521
!
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2522
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2523
readError
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2524
    "report an error, that some read error occurred"
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2525
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2526
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2527
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2528
    ^ self readError:lastErrorNumber
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2529
!
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2530
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2531
readError:errorNumber
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2532
    "report an error, that some read error occurred"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2533
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2534
    "{ Pragma: +optSpace }"
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2535
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2536
    ^ ReadError newException
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2537
        errorCode:errorNumber;
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2538
        osErrorHolder:(OperatingSystem errorHolderForNumber:errorNumber);
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2539
        parameter:self;
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2540
        raiseRequest
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2541
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2542
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2543
writeError
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2544
    "report an error, that some write error occurred"
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2545
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2546
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2547
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2548
    ^ self writeError:lastErrorNumber
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2549
!
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2550
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2551
writeError:errorNumber
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2552
    "report an error, that some write error occurred"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2553
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2554
    "{ Pragma: +optSpace }"
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2555
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2556
    ^ WriteError newException
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2557
        errorCode:errorNumber;
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2558
        osErrorHolder:(OperatingSystem errorHolderForNumber:errorNumber);
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2559
        parameter:self;
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  2560
        raiseRequest
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2561
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2562
6461
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2563
!ExternalStream methodsFor:'finalization'!
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2564
15468
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2565
executor
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2566
    "return a copy for finalization-registration;
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2567
     since all we need at finalization time is the fileDescriptor,
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2568
     a cheaper copy is possible."
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2569
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2570
    ^ self class basicNew setAccessor:handleType to:handle
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2571
!
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2572
6461
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2573
finalize
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2574
    "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
  2575
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  2576
    self closeFile
18779
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2577
!
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2578
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2579
reRegisterForFinalization
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2580
    Lobby registerChange:self.
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2581
!
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2582
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2583
registerForFinalization
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2584
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2585
    "keep myself in newSpace, so it will be finalized early"
18790
7277f699c8f6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18783
diff changeset
  2586
    Lobby size < MaxNonTenurableExecutors ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2587
	ObjectMemory preventTenureOf:self.
18790
7277f699c8f6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18783
diff changeset
  2588
    ].
18779
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2589
    Lobby register:self.
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2590
!
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2591
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2592
unregisterForFinalization
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2593
    Lobby unregister:self.
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  2594
     "probably the object will be collected soon..."
18793
19f35dc98859 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18790
diff changeset
  2595
    ObjectMemory allowTenureOf:self
6461
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2596
! !
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2597
15918
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2598
!ExternalStream methodsFor:'initialization'!
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2599
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2600
initialize
15921
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2601
    position := 0.
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2602
    binary := false.
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2603
    buffered := true.
19687
041f74a69c35 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19622
diff changeset
  2604
    self initializeEOLMode.
041f74a69c35 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19622
diff changeset
  2605
    hitEOF := false.
041f74a69c35 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19622
diff changeset
  2606
!
041f74a69c35 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19622
diff changeset
  2607
041f74a69c35 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19622
diff changeset
  2608
initializeEOLMode
15921
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2609
    eolMode := DefaultEOLMode.
15918
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2610
! !
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2611
2
claus
parents: 1
diff changeset
  2612
!ExternalStream methodsFor:'line reading/writing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2613
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2614
nextLine
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2615
    "read the next line (characters up to newline).
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2616
     Return a string containing those characters excluding the newline.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2617
     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
  2618
     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
  2619
     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
  2620
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2621
    |line error|
971
eb70f5674303 max lineLength (in nextLine) increased to 16k
Claus Gittinger <cg@exept.de>
parents: 933
diff changeset
  2622
12873
f6b24aa46bb1 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 12710
diff changeset
  2623
%{  /* STACK:100000 */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2624
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2625
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2626
    int len, ret;
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  2627
    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
  2628
    char *rslt, *nextPtr, *limit;
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2629
    int fd, ch;
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  2630
    int _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  2631
    OBJ fp;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2632
    int lineTooLong = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2633
    int cutOff = 0;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2634
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2635
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2636
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2637
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2638
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2639
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2640
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
20744
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2641
        if (((fp = __INST(handle)) != nil)
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2642
            && (__INST(mode) != @symbol(writeonly))
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2643
            && (__INST(binary) != true)
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2644
        ) {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2645
            f = __FILEVal(fp);
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2646
            buffer[0] = '\0';
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2647
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2648
            _buffered = (__INST(buffered) == true);
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2649
            if (_buffered) {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2650
                __READING__(f);
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2651
            }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2652
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2653
            rslt = nextPtr = buffer;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2654
            limit = buffer + sizeof(buffer) - 2;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2655
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2656
            for (;;) {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2657
                __READBYTE__(ret, f, nextPtr, _buffered, __INST(handleType));
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2658
                if (ret <= 0) {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2659
                    if (nextPtr == buffer)
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2660
                        rslt = NULL;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2661
                    if (ret == 0) {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2662
                        __INST(hitEOF) = true;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2663
                        break;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2664
                    } else {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2665
                        error = __mkSmallInteger(__threadErrno);
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2666
                        goto err;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2667
                    }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2668
                }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2669
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2670
                if (*nextPtr == '\n') {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2671
                    cutOff = 1;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2672
                    *nextPtr = '\0';
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2673
                    break;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2674
                }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2675
                if (*nextPtr == '\r') {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2676
                    char peekChar;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2677
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2678
                    /*
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2679
                     * peek ahead for a newLine ...
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2680
                     */
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2681
                    __READBYTE__(ret, f, &peekChar, _buffered, __INST(handleType));
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2682
                    if (ret <= 0) {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2683
                        cutOff = 1;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2684
                        *nextPtr = '\0';
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2685
                        if (ret == 0) {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2686
                            __INST(hitEOF) = true;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2687
                            break;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2688
                        }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2689
                        error = __mkSmallInteger(__threadErrno);
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2690
                        goto err;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2691
                    }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2692
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2693
                    if (peekChar == '\n') {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2694
                        cutOff = 2;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2695
                        *nextPtr = '\0';
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2696
                        break;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2697
                    }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2698
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2699
                    __UNGETC__(peekChar, f, _buffered);
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2700
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2701
                    cutOff = 1;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2702
                    *nextPtr = '\0';
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2703
                    break;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2704
                }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2705
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2706
                nextPtr++;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2707
                if (nextPtr >= limit) {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2708
                    *nextPtr = '\0';
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2709
                    lineTooLong = 1;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2710
                    // signalled below anyway; so no need to print on stderr
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2711
#if 0                    
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2712
                    if (@global(InfoPrinting) == true) {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2713
                        fprintf(stderr, "ExtStream [warning]: line truncated in nextLine\n");
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2714
                    }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2715
#endif
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2716
                    break;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2717
                }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2718
            }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2719
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2720
            if (rslt != NULL) {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2721
                len = nextPtr-buffer;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2722
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2723
                if (__isSmallInteger(__INST(position))) {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2724
                    INT np = __intVal(__INST(position)) + len + cutOff;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2725
                    OBJ t;
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2726
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2727
                    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2728
                } else {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2729
                    __INST(position) = nil; /* i.e. do not know */
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2730
                }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2731
                /* remove any EOL character */
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2732
                if (len != 0) {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2733
                    if (buffer[len-1] == '\n') {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2734
                        buffer[--len] = '\0';
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2735
                    }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2736
                    if ((len != 0) && (buffer[len-1] == '\r')) {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2737
                        buffer[--len] = '\0';
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2738
                    }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2739
                }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2740
                line = __MKSTRING_L(buffer, len);
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2741
                if (! lineTooLong) {
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2742
                    RETURN ( line );
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2743
                }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2744
            }
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2745
        }
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2746
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  2747
err: ;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2748
%}.
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2749
    line notNil ifTrue:[
20744
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2750
        "/ the line as read is longer than 32k characters (boy - what a line)
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2751
        "/ The exception could be handled by reading more and returning the
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2752
        "/ concatenation in your exception handler (the receiver and the partial
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2753
        "/ line are passed as parameter)
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2754
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2755
        LineTooLongErrorSignal isHandled ifTrue:[
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2756
            ^ LineTooLongErrorSignal
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2757
                raiseRequestWith:(Array with:self with:line)
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2758
                     errorString:('line too long read error')
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2759
        ].
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2760
        'ExternalStream [warning]: line truncated in nextLine' infoPrintCR.
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2761
        ^ line , self nextLine
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2762
    ].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2763
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  2764
    hitEOF ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2765
    error notNil ifTrue:[
20744
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2766
        lastErrorNumber := error.
44d7ef116eac #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20690
diff changeset
  2767
        ^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2768
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2769
    handle isNil ifTrue:[^ self errorNotOpen].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2770
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  2771
    binary ifTrue:[^ self errorBinary].
5431
24ce291c71f2 migration support
Claus Gittinger <cg@exept.de>
parents: 5430
diff changeset
  2772
    ^ super nextLine
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2773
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2774
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2775
nextPutLine:aString
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2776
    "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
  2777
     (LF, CR or CRLF - depending in the setting of eolMode)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2778
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2779
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2780
%{
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2781
    OBJ fp;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2782
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2783
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2784
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2785
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2786
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2787
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2788
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2789
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2790
	    && (__INST(mode) != @symbol(readonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2791
	    && (__INST(binary) != true)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2792
	    && __isStringLike(aString)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2793
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2794
	    int _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2795
	    int len = __stringSize(aString);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2796
	    int cnt, len1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2797
	    FILEPOINTER f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2798
	    char *cp;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2799
	    int o_offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2800
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2801
	    if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2802
		__WRITING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2803
	    }
18514
acbf73341410 Fix for MING32/MING64: threat stdout/stderr as normal files
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18374
diff changeset
  2804
#if defined(WIN32) && !defined(__MINGW__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2805
	    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
  2806
		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
  2807
	    } else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2808
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2809
	    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2810
		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
  2811
		__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
  2812
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2813
	    if (cnt == len) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2814
		OBJ mode = __INST(eolMode);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2815
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2816
		len1 = len;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2817
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2818
		if (mode == @symbol(cr)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2819
		    cp = "\r"; len = 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2820
		} else if (mode == @symbol(crlf)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2821
		    cp = "\r\n"; len = 2;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2822
		} else if (mode == @symbol(eot)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2823
		    cp = "\004"; len = 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2824
		} else if (mode == @symbol(etx)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2825
		    cp = "\003"; len = 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2826
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2827
		    cp = "\n"; len = 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2828
		}
18514
acbf73341410 Fix for MING32/MING64: threat stdout/stderr as normal files
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18374
diff changeset
  2829
#if defined(WIN32) && !defined(__MINGW__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2830
		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
  2831
		    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
  2832
		} else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2833
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2834
		{
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2835
		    __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
  2836
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2837
		if (cnt > 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2838
		    if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2839
			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
  2840
			OBJ t;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2841
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2842
			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
  2843
		    } else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2844
			__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
  2845
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2846
		    RETURN ( self );
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2847
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2848
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2849
	    error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2850
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2851
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2852
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2853
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2854
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2855
	self writeError:error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2856
	^ self
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2857
    ].
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  2858
    super nextPutLine:aString.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2859
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2860
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2861
nextPutLinesFrom:aStream upToLineStartingWith:aStringOrNil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2862
    "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
  2863
     and append all lines to self.
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2864
     Can be used to copy/create large files or copy from a pipe/socket.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2865
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2866
     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
  2867
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2868
    |line|
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2869
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2870
    [aStream atEnd] whileFalse:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2871
	line := aStream nextLine.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2872
	line isNil ifTrue:[
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2873
	    ^ self.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2874
	].
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2875
	self nextPutLine:line.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2876
	(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
  2877
	    ^ self
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2878
	]
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2879
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2880
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2881
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2882
peekForLineStartingWith:aString
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2883
    "read ahead for next line starting with aString;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2884
     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
  2885
     If matched, do not advance position beyond that line
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2886
     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
  2887
     If not matched, reposition to original position for further reading."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2888
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2889
    |firstPos lastPos line|
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2890
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2891
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2892
    handle isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2893
    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
  2894
    buffered ifFalse:[^ self errorNotBuffered].
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2895
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2896
    firstPos := self position.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2897
    [self atEnd] whileFalse:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2898
	lastPos := self position.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2899
	line := self nextLine.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2900
	line isNil ifTrue:[
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2901
	    self position:firstPos.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2902
	    ^ nil
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2903
	].
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2904
	(line startsWith:aString) ifTrue:[
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2905
	    self position:lastPos.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2906
	    ^ line
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2907
	]
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2908
    ].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2909
    self position:firstPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2910
    ^ nil
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2911
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2912
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2913
peekForLineStartingWithAny:aCollectionOfStrings
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2914
    "read ahead for next line starting with any of aCollectionOfStrings;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2915
     return the index in aCollection if found, nil otherwise..
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2916
     If no match, do not change position; otherwise advance right before the
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2917
     matched line so that nextLine will return this line."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2918
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2919
    |line startPos linePos index|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2920
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2921
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2922
    handle isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2923
    binary ifTrue:[^ self errorBinary].
claus
parents: 1
diff changeset
  2924
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2925
    startPos := self position.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2926
    [self atEnd] whileFalse:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2927
	linePos := self position.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2928
	line := self nextLine.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2929
	line notNil ifTrue:[
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2930
	    index := 1.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2931
	    aCollectionOfStrings do:[:prefix |
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2932
		(line startsWith:prefix) ifTrue:[
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2933
		    self position:linePos.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2934
		    ^ index
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2935
		].
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2936
		index := index + 1
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2937
	    ]
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2938
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2939
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2940
    self position:startPos.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2941
    ^ nil
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2942
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2943
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2944
!ExternalStream methodsFor:'misc functions'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2945
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2946
async:aBoolean
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2947
    "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
  2948
     the receiver will trigger an ioInterrupt.
779
0e41a665038a commentary
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  2949
     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
  2950
     Notice:
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2951
	not every OS supports this
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2952
	- check with OS>>supportsIOInterrupts before using"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2953
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2954
    |fd|
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2955
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2956
    handle isNil ifTrue:[^ self errorNotOpen].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2957
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2958
    OperatingSystem supportsIOInterrupts ifFalse:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2959
	^ self errorUnsupportedOperation
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2960
    ].
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2961
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2962
    fd := self fileDescriptor.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2963
    aBoolean ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2964
	^ OperatingSystem enableIOInterruptsOn:fd
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2965
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2966
    ^ OperatingSystem disableIOInterruptsOn:fd
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2967
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2968
    "Modified: 11.1.1997 / 17:50:21 / cg"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2969
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2970
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2971
blocking:aBoolean
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2972
    "set/clear the blocking attribute - if set (which is the default)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2973
     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
  2974
     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
  2975
     nil.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2976
     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
  2977
     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
  2978
     in advance. However, the data must then be read using #nextBytes:
8616
6014ed5c67f9 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8614
diff changeset
  2979
     methods, in order to avoid other (pastEndRead) exceptions."
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2980
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2981
    handle isNil ifTrue:[^ self errorNotOpen].
7499
53b7a86e1f0b ExternalStream>>blocking: returns previous blocking status
Stefan Vogel <sv@exept.de>
parents: 7497
diff changeset
  2982
    ^ OperatingSystem setBlocking:aBoolean on:self fileDescriptor.
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2983
3174
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2984
    "Modified: / 11.1.1997 / 17:48:01 / cg"
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2985
    "Modified: / 15.1.1998 / 11:49:48 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2986
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2987
17618
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  2988
copyToEndFrom:inStream
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  2989
    "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
  2990
     Return the number of bytes which have been transferred.
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  2991
     Same functionality as copyToEnd:, but reversed arg and receiver
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  2992
     (useful in a cascade message of the writeStream)"
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  2993
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  2994
    |bufferSize|
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  2995
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  2996
    OperatingSystem isMSDOSlike ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2997
	"/ mhmh - NT hangs, when copying bigger blocks to a network drive - why ?
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  2998
	bufferSize := 1 * 1024.
17618
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  2999
    ] ifFalse:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3000
	bufferSize := 8 * 1024.
17618
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3001
    ].
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3002
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3003
    ^ inStream copyToEndInto:self bufferSize:bufferSize
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3004
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3005
    "
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3006
     |in out|
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3007
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3008
     in := 'Makefile' asFilename readStream.
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3009
     out := Stdout.
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3010
     in copyToEndInto:out.
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3011
     in close.
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3012
    "
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3013
!
c6ee18f841cc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17609
diff changeset
  3014
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  3015
copyToEndInto:outStream
7017
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  3016
    "copy the data into another stream."
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  3017
8362
e17d9ffb6fa8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8339
diff changeset
  3018
    |bufferSize|
7700
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3019
19515
d26386a645a3 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19394
diff changeset
  3020
    (self isFileStream and:[outStream isFileStream]) ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3021
	bufferSize := 8192 * 8.     "/ 64k buffer size
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3022
    ] ifFalse:[
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3023
	OperatingSystem isMSDOSlike ifTrue:[
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3024
	    "/ mhmh - NT hangs, when copying bigger blocks to a network drive - why ?
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3025
	    bufferSize := 1 * 1024.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3026
	] ifFalse:[
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3027
	    bufferSize := 8 * 1024.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3028
	].
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  3029
    ].
7017
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  3030
    ^ self copyToEndInto:outStream bufferSize:bufferSize
7700
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3031
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3032
    "
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3033
     |in out|
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3034
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3035
     in := 'Makefile' asFilename readStream.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3036
     out := Stdout.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3037
     in copyToEndInto:out.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3038
     in close.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3039
    "
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  3040
!
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  3041
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3042
ioctl:ioctlNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3043
    "to provide a simple ioctl facility - an ioctl is performed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3044
     on the underlying file; no arguments are passed."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3045
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3046
    ^ self ioctl:ioctlNumber with:nil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3047
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3048
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3049
ioctl:ioctlNumber with:arg
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3050
    "to provide a simple ioctl facility - an ioctl is performed
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3051
     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
  3052
     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
  3053
     - for example, to control proprietrary I/O devices.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3054
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3055
     Since the type of the argument depends on the ioctl being
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3056
     performed, different arg types are allowed here.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3057
     If the argument is nil, an ioctl without argument is performed.
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3058
     If the argument is an integral number, it's directly passed;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3059
     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
  3060
     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
  3061
     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
  3062
     This allows performing most ioctls
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3063
     - however, it might be tricky to setup the buffer.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3064
     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
  3065
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3066
    |error|
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3067
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3068
%{
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3069
#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
  3070
    int fd;
10552
d52aa8e066e5 #ioctl:with: accept 32-bit integers as arguments
Stefan Vogel <sv@exept.de>
parents: 10469
diff changeset
  3071
    int ret;
d52aa8e066e5 #ioctl:with: accept 32-bit integers as arguments
Stefan Vogel <sv@exept.de>
parents: 10469
diff changeset
  3072
    unsigned int ioNum;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3073
    INT ioArg;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3074
    OBJ fp = __INST(handle);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3075
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3076
    if (fp == nil)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3077
	goto out;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3078
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3079
    if (!__isInteger(ioctlNumber)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3080
	 || (!__isInteger(arg)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3081
	     && (arg != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3082
	     && !__isBytes(arg)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3083
	     && !__isExternalBytesLike(arg)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3084
	     && !__isExternalAddress(arg))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3085
	error = @symbol(badArgument);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3086
	goto out;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3087
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3088
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3089
    if (__INST(handleType) == @symbol(socketHandle)) {
19993
67164d044887 compiler warnings
Claus Gittinger <cg@exept.de>
parents: 19866
diff changeset
  3090
	fd = (int)((SOCKET)(__FILEVal(fp)));
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3091
    } else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3092
	if ((__INST(handleType) == nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3093
	 || (__INST(handleType) == @symbol(filePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3094
	 || (__INST(handleType) == @symbol(socketFilePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3095
	 || (__INST(handleType) == @symbol(pipeFilePointer))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3096
	fd = fileno(__FILEVal(fp));
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3097
    } else {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3098
	error = @symbol(badHandleType);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3099
	goto out;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3100
    }
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3101
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3102
    ioNum = __unsignedLongIntVal(ioctlNumber);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3103
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3104
    __BEGIN_INTERRUPTABLE__
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3105
    do {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3106
	__threadErrno = 0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3107
	if (arg == nil) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3108
	    ioArg = 0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3109
	} else if (__isSmallInteger(arg)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3110
	    ioArg = __intVal(arg);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3111
	} else if (__isInteger(arg)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3112
	    ioArg = __unsignedLongIntVal(arg);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3113
	} else if (__isExternalBytesLike(arg)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3114
	    ioArg = (INT)(__externalBytesAddress(arg));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3115
	} else if (__isExternalAddress(arg)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3116
	    ioArg = (INT)(__externalAddressVal(arg));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3117
	} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3118
	    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
  3119
	}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3120
	ret = ioctl(fd, ioNum, ioArg);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3121
    } while (ret < 0 && __threadErrno == EINTR);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3122
    __END_INTERRUPTABLE__
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3123
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3124
    if (ret >= 0) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3125
	RETURN ( __mkSmallInteger(ret) );
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3126
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3127
    error = __mkSmallInteger(__threadErrno);
791
b1c153b1c719 WIN32 has no ioctl
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
  3128
#endif
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3129
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3130
out:;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3131
%}.
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3132
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3133
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3134
	^ self ioError:error.
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3135
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3136
    handle isNil ifTrue:[^ self errorNotOpen].
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3137
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3138
    "/ the system does not support ioctl (MSDOS or VMS)
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  3139
    ^ self errorUnsupportedOperation
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3140
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3141
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3142
reset
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3143
    "set the read position to the beginning of the collection"
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3144
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3145
    self position:0
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3146
!
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3147
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3148
setToEnd
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3149
    "redefined since it must be implemented differently"
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3150
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3151
    ^ self subclassResponsibility
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3152
!
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3153
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3154
sync
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3155
    "make sure, that the OS writes cached data to the disk"
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3156
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3157
    |error|
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3158
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3159
    self flush.
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3160
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3161
%{
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3162
#if !defined(__openVMS__)
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3163
    int fd;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3164
    int ret;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3165
    OBJ fp = __INST(handle);
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3166
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3167
    if (fp == nil)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3168
	goto out;
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3169
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3170
    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
  3171
	// syncing a socket to disk ?
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3172
	error = @symbol(badHandleType);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3173
	goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3174
	// fd = __FILEVal(fp);
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3175
    } else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3176
	if ((__INST(handleType) == nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3177
	       || (__INST(handleType) == @symbol(filePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3178
	       || (__INST(handleType) == @symbol(socketFilePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3179
	       || (__INST(handleType) == @symbol(pipeFilePointer))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3180
	fd = fileno(__FILEVal(fp));
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3181
    } else {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3182
	error = @symbol(badHandleType);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3183
	goto out;
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3184
    }
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3185
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3186
#ifdef __win32__
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3187
     __threadErrno = 0;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3188
     ret = __STX_API_NOINT_CALL1( "FlushFileBuffers", FlushFileBuffers, _get_osfhandle(fd));
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3189
     if (ret) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3190
	 RETURN (self);
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3191
     }
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3192
#else
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3193
     __BEGIN_INTERRUPTABLE__
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
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
	 ret = fsync(fd);
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3196
     } while ((ret < 0) && (__threadErrno == EINTR));
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3197
     __END_INTERRUPTABLE__
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3198
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3199
     if (ret >= 0) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3200
	 RETURN (self);
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3201
     }
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3202
#endif /* ! __win32__ */
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3203
     error = __mkSmallInteger(__threadErrno);
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3204
#endif /* ! __openVMS__ */
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3205
out:;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3206
%}.
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3207
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3208
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3209
	self ioError:error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3210
	^ self.
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3211
    ].
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3212
    handle isNil ifTrue:[self errorNotOpen].
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3213
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3214
    "
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3215
	|f|
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3216
	f := 'x' asFilename writeStream.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3217
	f nextPutAll:'hallo'; sync; syncData; close
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3218
    "
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3219
!
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3220
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3221
syncData
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3222
    "make sure, that the OS writes cached data to the disk.
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3223
     In this case, metadata is only written, if it is
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3224
     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
  3225
     if only access/modification time has changed)."
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3226
    |error|
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3227
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3228
    self flush.
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3229
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3230
%{
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3231
#if !defined(__openVMS__)
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3232
    int fd;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3233
    int ret;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3234
    OBJ fp = __INST(handle);
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
    if (fp == nil)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3237
	goto out;
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3238
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3239
    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
  3240
	// syncing a socket to disk ?
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3241
	error = @symbol(badHandleType);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3242
	goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3243
	// fd = __FILEVal(fp);
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3244
    } else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3245
	if ((__INST(handleType) == nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3246
	       || (__INST(handleType) == @symbol(filePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3247
	       || (__INST(handleType) == @symbol(socketFilePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3248
	       || (__INST(handleType) == @symbol(pipeFilePointer))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3249
	fd = fileno(__FILEVal(fp));
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3250
    } else {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3251
	error = @symbol(badHandleType);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3252
	goto out;
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3253
    }
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3254
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3255
#ifdef __win32__
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3256
     __threadErrno = 0;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3257
     ret = __STX_API_NOINT_CALL1( "FlushFileBuffers", FlushFileBuffers, _get_osfhandle(fd));
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3258
     if (ret) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3259
	 RETURN (self);
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3260
     }
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3261
#else
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3262
     __BEGIN_INTERRUPTABLE__
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3263
     do {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3264
	 ret = fdatasync(fd);
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3265
     } while ((ret < 0) && (__threadErrno == EINTR));
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3266
     __END_INTERRUPTABLE__
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3267
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3268
     if (ret >= 0) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3269
	 RETURN (self);
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3270
     }
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3271
#endif /* ! __win32__ */
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3272
     error = __mkSmallInteger(__threadErrno);
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3273
#endif /* ! __openVMS__ */
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3274
out:;
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3275
%}.
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3276
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3277
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3278
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3279
	self ioError:error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3280
	^ self.
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3281
    ].
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3282
    handle isNil ifTrue:[^ self errorNotOpen].
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3283
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3284
    "if notdef HAS_DATASYNC, fall back"
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3285
    self sync.
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3286
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3287
    "
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3288
	|f|
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3289
	f := 'x' asFilename writeStream.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3290
	f nextPutAll:'hallo'; sync; syncData; close
16551
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3291
    "
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3292
!
352de37575d7 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 16509
diff changeset
  3293
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3294
tcgetattr
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3295
    "unix only:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3296
     provide the information of a tcgetattr call as a dictionary.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3297
     This provides terminal setting values of a tty or pty.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3298
     Used by terminal emulators.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3299
     On non-unix systems, an unsupported operation error is raised"
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3300
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3301
    |error ret
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3302
     iflags "/ input flags
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3303
     ignbrk brkint ignpar parmrk inpck istrip inlcr igncr
16509
2cf139885242 Fixed ExternalStream>>tcgetattr
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16508
diff changeset
  3304
     icrnl iuclc ixon ixoff ixany imaxbel iutf8
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3305
     oflags "/ output flags
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3306
     opost onlcr ocrnl olcuc onocr onlret oxtabs onoteot
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3307
     cflags "/ control flags
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3308
     csize cstopb cread parenb parodd hupcl clocal
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3309
     lflags "/ local flags
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3310
     echoke echoe echok echo echonl echoprt echoctl
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3311
     isig icanon altwerase iexten extproc tostop
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3312
     |
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3313
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3314
%{
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3315
#if !defined(MSDOS_LIKE) && !defined(__openVMS__)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3316
    int fd;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3317
    int _ret;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3318
    OBJ fp = __INST(handle);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3319
    struct termios t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3320
    int sz;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3321
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3322
    if (fp == nil)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3323
	goto out;
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3324
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3325
    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
  3326
	// 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
  3327
	error = @symbol(badHandleType);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3328
	goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3329
	// fd = __FILEVal(fp);
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3330
    } else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3331
	if ((__INST(handleType) == nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3332
	 || (__INST(handleType) == @symbol(filePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3333
	 || (__INST(handleType) == @symbol(socketFilePointer))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3334
	 || (__INST(handleType) == @symbol(pipeFilePointer))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3335
	fd = fileno(__FILEVal(fp));
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3336
    } else {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3337
	error = @symbol(badHandleType);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3338
	goto out;
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3339
    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3340
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3341
    __BEGIN_INTERRUPTABLE__
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3342
    do {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3343
	__threadErrno = 0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3344
	_ret = tcgetattr(fd, &t);
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3345
    } while (_ret < 0 && __threadErrno == EINTR);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3346
    __END_INTERRUPTABLE__
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3347
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3348
    if (_ret < 0) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3349
	error = __mkSmallInteger(__threadErrno);
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3350
    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3351
    ignbrk = t.c_iflag & IGNBRK ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3352
    brkint = t.c_iflag & BRKINT ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3353
    ignpar = t.c_iflag & IGNPAR ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3354
    parmrk = t.c_iflag & PARMRK ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3355
    inpck = t.c_iflag & INPCK ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3356
    istrip = t.c_iflag & ISTRIP ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3357
    inlcr = t.c_iflag & INLCR ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3358
    ixon = t.c_iflag & IXON ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3359
    ixoff = t.c_iflag & IXOFF ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3360
    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
  3361
# ifdef IMAXBEL
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3362
    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
  3363
# endif
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3364
# ifdef IUCLC
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3365
    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
  3366
# endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3367
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3368
    opost = t.c_oflag & OPOST ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3369
    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
  3370
# ifdef OXTABS
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3371
    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
  3372
# endif
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3373
# ifdef ONOTEOT
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3374
    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
  3375
# endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3376
    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
  3377
# ifdef OLCUC
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3378
    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
  3379
# endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3380
    onocr = t.c_oflag & ONOCR ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3381
    onlret = t.c_oflag & ONLRET ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3382
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3383
    sz = t.c_cflag & CSIZE;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3384
    switch (sz) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3385
	case CS5:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3386
	    csize = @symbol(cs5);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3387
	    break;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3388
	case CS6:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3389
	    csize = @symbol(cs6);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3390
	    break;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3391
	case CS7:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3392
	    csize = @symbol(cs7);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3393
	    break;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3394
	case CS8:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3395
	    csize = @symbol(cs8);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3396
	    break;
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3397
    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3398
    cstopb = t.c_cflag & CSTOPB ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3399
    cread = t.c_cflag & CREAD ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3400
    parenb = t.c_cflag & PARENB ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3401
    parodd = t.c_cflag & PARODD ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3402
    hupcl = t.c_cflag & HUPCL ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3403
    clocal = t.c_cflag & CLOCAL ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3404
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3405
    echoke = t.c_lflag & ECHOKE ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3406
    echoe = t.c_lflag & ECHOE ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3407
    echo = t.c_lflag & ECHO ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3408
    echonl = t.c_lflag & ECHONL ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3409
    echoctl = t.c_lflag & ECHOCTL ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3410
    isig = t.c_lflag & ISIG ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3411
    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
  3412
# ifdef ALTWERASE
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3413
    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
  3414
# endif
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3415
# ifdef IEXTEN
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3416
    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
  3417
# endif
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3418
# ifdef EXTPROC
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3419
    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
  3420
# endif
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  3421
# ifdef TOSTOP
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3422
    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
  3423
# endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3424
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3425
#else
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3426
    error = @symbol(unsupportedOperation);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3427
#endif
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
out:;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3430
%}.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3431
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3432
	error == #unsupportedOperation ifTrue:[
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3433
	    "/ 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
  3434
	    ^ self errorUnsupportedOperation
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3435
	].
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3436
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3437
	^ self ioError:error.
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3438
    ].
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3439
    handle isNil ifTrue:[^ self errorNotOpen].
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3440
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3441
    "/ construct a dictionary...
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3442
    ret := Dictionary new.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3443
    ret at:#iflags put:(iflags := Dictionary new).
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3444
    ret at:#oflags put:(oflags := Dictionary new).
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3445
    ret at:#cflags put:(cflags := Dictionary new).
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3446
    ret at:#lflags put:(lflags := Dictionary new).
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3447
    iflags at:#ignbrk put:ignbrk.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3448
    iflags at:#brkint put:brkint.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3449
    iflags at:#ignpar put:ignpar.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3450
    iflags at:#parmrk put:parmrk.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3451
    iflags at:#inpck put:inpck.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3452
    iflags at:#istrip put:istrip.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3453
    iflags at:#inlcr put:inlcr.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3454
    iflags at:#igncr put:igncr.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3455
    iflags at:#icrnl put:icrnl.
16509
2cf139885242 Fixed ExternalStream>>tcgetattr
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16508
diff changeset
  3456
    iflags at:#uiclc put:iuclc.
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3457
    iflags at:#ixon put:ixon.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3458
    iflags at:#ixoff put:ixoff.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3459
    iflags at:#ixany put:ixany.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3460
    iflags at:#imaxbel put:imaxbel.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3461
    iflags at:#iutf8 put:iutf8.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3462
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3463
    oflags at:#opost put:opost.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3464
    oflags at:#onlcr put:onlcr.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3465
    oflags at:#oxtabs put:oxtabs.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3466
    oflags at:#onoteot put:onoteot.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3467
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3468
    cflags at:#csize put:csize.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3469
    cflags at:#cstopb put:cstopb.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3470
    cflags at:#cread put:cread.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3471
    cflags at:#parenb put:parenb.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3472
    cflags at:#parodd put:parodd.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3473
    cflags at:#hupcl put:hupcl.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3474
    cflags at:#clocal put:clocal.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3475
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3476
    lflags at:#echoke put:echoke.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3477
    lflags at:#echoe put:echoe.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3478
    lflags at:#echok put:echok.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3479
    lflags at:#echo put:echo.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3480
    lflags at:#echonl put:echonl.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3481
    lflags at:#echoprt put:echoprt.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3482
    lflags at:#echoctl put:echoctl.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3483
    lflags at:#isig put:isig.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3484
    lflags at:#icanon put:icanon.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3485
    lflags at:#altwerase put:altwerase.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3486
    lflags at:#iexten put:iexten.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3487
    lflags at:#extproc put:extproc.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3488
    lflags at:#tostop put:tostop.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3489
    ^ ret
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3490
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3491
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3492
!ExternalStream methodsFor:'non homogenous reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3493
17609
b06cbfcc4a11 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17608
diff changeset
  3494
next:count into:aCollection startingAt:start
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3495
    "return the next count bytes or characters from the stream."
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3496
17609
b06cbfcc4a11 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17608
diff changeset
  3497
    |readCount|
b06cbfcc4a11 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17608
diff changeset
  3498
b06cbfcc4a11 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17608
diff changeset
  3499
    readCount := self nextBytes:count into:aCollection startingAt:start.
b06cbfcc4a11 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17608
diff changeset
  3500
    readCount = count ifTrue:[
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3501
        ^ aCollection.
17609
b06cbfcc4a11 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17608
diff changeset
  3502
    ].
b06cbfcc4a11 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17608
diff changeset
  3503
    ^ aCollection copyFrom:1 to:start+readCount-1.
15254
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3504
!
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3505
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3506
nextAvailable:count
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3507
    "return the next count elements of the stream as aCollection.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3508
     If the stream reaches the end before count elements have been read,
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3509
     return what is available. (i.e. a shorter collection).
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3510
     The type of collection is specified in #contentsSpecies."
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3511
3956
51f1a9a4d63f changes for egcs (stdio uses __new / utsname)
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3512
    |buffer n|
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3513
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3514
    buffer := self contentsSpecies uninitializedNew:count.
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3515
    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
  3516
    n == 0 ifTrue:[
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3517
        binary ifTrue:[
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3518
            ^ #[]
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3519
        ].
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3520
        ^ ''
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3521
    ].
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3522
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3523
    n ~~ count ifTrue:[
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3524
        ^ buffer copyTo:n
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3525
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3526
    ^ buffer.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3527
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3528
    "
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3529
     (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
  3530
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:10
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3531
     (ReadStream on:'hello') nextAvailable:3
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3532
     (ReadStream on:'hello') nextAvailable:10
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3533
    "
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3534
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3535
    "Modified: / 16.6.1998 / 15:52:41 / cg"
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3536
!
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3537
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  3538
nextAvailable:count into:aCollection startingAt:pos
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  3539
    "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
  3540
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  3541
    ^ self nextAvailableBytes:count into:aCollection startingAt:pos.
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  3542
!
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  3543
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3544
nextAvailableBytes:count into:anObject startingAt:start
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3545
    "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
  3546
     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
  3547
     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
  3548
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3549
     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
  3550
     is raised if the connection is broken.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3551
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3552
     Notice, that in contrast to other methods,
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3553
     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
  3554
     Thus allowing read of partial blocks.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3555
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3556
     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
  3557
     (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
  3558
     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
  3559
     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
  3560
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3561
     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
  3562
     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
  3563
     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
  3564
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3565
    |error|
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3566
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3567
%{
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3568
    FILEPOINTER f;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3569
    int cnt, offs, ret, _buffered;
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3570
    int objSize, nInstBytes;
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3571
    char *cp;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3572
    char *extPtr;
7195
755c46f9b774 also handle subclasses of ExternalBytes (Mapped..)
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
  3573
    OBJ fp;
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3574
    int o_offs;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3575
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3576
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3577
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3578
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3579
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3580
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3581
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3582
        if (((fp = __INST(handle)) != nil)
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3583
            && (__INST(mode) != @symbol(writeonly))
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3584
            && __bothSmallInteger(count, start)
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3585
        ) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3586
            f = __FILEVal(fp);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3587
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3588
            cnt = __intVal(count);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3589
            offs = __intVal(start) - 1;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3590
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3591
            if (__isExternalBytesLike(anObject)) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3592
                OBJ sz;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3593
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3594
                nInstBytes = 0;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3595
                extPtr = (char *)(__externalBytesAddress(anObject));
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3596
                if (extPtr == NULL) goto bad;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3597
                sz = __externalBytesSize(anObject);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3598
                if (__isSmallInteger(sz)) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3599
                    objSize = __intVal(sz);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3600
                } else {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3601
                    objSize = 0; /* unknown */
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3602
                }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3603
            } else {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3604
                OBJ oClass = __Class(anObject);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3605
                int nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3606
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3607
                nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3608
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3609
                switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3610
                    case BYTEARRAY:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3611
                    case WORDARRAY:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3612
                    case LONGARRAY:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3613
                    case SWORDARRAY:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3614
                    case SLONGARRAY:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3615
                    case FLOATARRAY:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3616
                        break;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3617
                    case DOUBLEARRAY:
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3618
#ifdef __NEED_DOUBLE_ALIGN
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3619
                        nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1);
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3620
#endif
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3621
                        break;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3622
                    case LONGLONGARRAY:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3623
                    case SLONGLONGARRAY:
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3624
#ifdef __NEED_LONGLONG_ALIGN
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3625
                        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
  3626
#endif
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3627
                        break;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3628
                    default:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3629
                        goto bad;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3630
                }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3631
                extPtr = (char *)0;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3632
                objSize = __Size(anObject) - nInstBytes;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3633
            }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3634
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3635
            if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3636
                _buffered = (__INST(buffered) == true);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3637
                if (_buffered) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3638
                    __READING__(f);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3639
                }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3640
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3641
                if (extPtr) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3642
                    __READAVAILBYTES__(ret, f, extPtr+offs, cnt, _buffered, __INST(handleType));
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3643
                } else {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3644
                    /*
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3645
                     * on interrupt, anObject may be moved to another location.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3646
                     * So we pass (char *)__InstPtr(anObject) + nInstBytes + offs to the macro __READ_BYTES__,
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3647
                     * to get a new address.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3648
                     */
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3649
                    offs += nInstBytes;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3650
                    __READAVAILBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered, __INST(handleType));
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3651
                }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3652
                /* 0 is NOT an EOF condition here ... */
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3653
                if (ret >= 0) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3654
                    if (__isSmallInteger(__INST(position))) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3655
                        INT np = __intVal(__INST(position)) + ret;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3656
                        OBJ t;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3657
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3658
                        t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3659
                    } else {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3660
                        __INST(position) = nil; /* i.e. do not know */
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3661
                    }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3662
                    RETURN (__mkSmallInteger(ret));
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3663
                }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3664
                __INST(position) = nil;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3665
                error = __mkSmallInteger(__threadErrno);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3666
            }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3667
        }
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3668
    }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3669
bad: ;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3670
%}.
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3671
    hitEOF ifTrue:[^ 0].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3672
    error notNil ifTrue:[
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3673
        lastErrorNumber := error.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3674
        ^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3675
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3676
    handle isNil ifTrue:[^ self errorNotOpen].
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3677
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3678
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3679
     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
  3680
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3681
    ^ self primitiveFailed
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3682
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3683
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3684
nextByte
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3685
    "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
  3686
     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
  3687
     bytes binary value as an integer in 0..255."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3688
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3689
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3690
%{
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  3691
#ifdef __SCHTEAM__
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  3692
    STObject handle = self.instVarAt(I_handle);
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  3693
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  3694
    if (handle != STObject.Nil) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3695
	STObject next;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3696
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3697
	next = handle.nextByte();
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3698
	if (next != STObject.EOF) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3699
	    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
  3700
	    return __c__._RETURN( next );
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3701
	}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3702
	self.instVarAt_put(I_hitEOF, STObject.True);
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  3703
    }
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  3704
#else
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3705
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3706
    unsigned char byte;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3707
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3708
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3709
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3710
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3711
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3712
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3713
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3714
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3715
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3716
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3717
	 && (__INST(mode) != @symbol(writeonly))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3718
	    f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3719
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3720
	    _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3721
	    if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3722
		__READING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3723
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3724
	    __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
  3725
	    if (ret > 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3726
		if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3727
		    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
  3728
		    OBJ t;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3729
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3730
		    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
  3731
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3732
		    __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
  3733
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3734
		RETURN (__mkSmallInteger(byte));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3735
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3736
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3737
	    if (ret == 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3738
		__INST(hitEOF) = true;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3739
	    } else /* ret < 0 */ {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3740
		__INST(position) = nil;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3741
		error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3742
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3743
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3744
    }
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  3745
#endif /* not SCHTEAM */
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3746
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3747
    hitEOF ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3748
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3749
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3750
	^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3751
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3752
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3753
    ^ self errorWriteOnly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3754
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3755
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3756
nextBytes:count into:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3757
    "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
  3758
     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
  3759
     If the receiver is some socket/pipe-like stream, an exception
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3760
     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
  3761
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3762
     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
  3763
     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
  3764
     to only read whats there.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3765
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3766
     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
  3767
     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
  3768
     Thus allowing read of partial blocks.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3769
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3770
     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
  3771
     (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
  3772
     or an externalBytes object (with known size).
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3773
     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
  3774
     fastest possible physical I/O (since no new objects are allocated).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3775
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3776
     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
  3777
     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
  3778
     architectures (unless you prepared the buffer with care),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3779
     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
  3780
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3781
    |error|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3782
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3783
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3784
    int cnt, offs, ret, _buffered;
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3785
    int objSize, nInstBytes;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3786
    char *extPtr;
7195
755c46f9b774 also handle subclasses of ExternalBytes (Mapped..)
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
  3787
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3788
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3789
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3790
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3791
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3792
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3793
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3794
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3795
        if (((fp = __INST(handle)) != nil)
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3796
            && (__INST(mode) != @symbol(writeonly))
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3797
            && __bothSmallInteger(count, start)
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3798
        ) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3799
            f = __FILEVal(fp);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3800
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3801
            cnt = __intVal(count);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3802
            offs = __intVal(start) - 1;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3803
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3804
            if (__isExternalBytesLike(anObject)) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3805
                OBJ sz;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3806
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3807
                nInstBytes = 0;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3808
                extPtr = (char *)(__externalBytesAddress(anObject));
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3809
                if (extPtr == NULL) goto bad;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3810
                sz = __externalBytesSize(anObject);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3811
                if (__isSmallInteger(sz)) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3812
                    objSize = __intVal(sz);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3813
                } else {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3814
                    objSize = 0; /* unknown */
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3815
                }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3816
            } else {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3817
                OBJ oClass = __Class(anObject);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3818
                int nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3819
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3820
                nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3821
                switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3822
                    case BYTEARRAY:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3823
                    case WORDARRAY:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3824
                    case LONGARRAY:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3825
                    case SWORDARRAY:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3826
                    case SLONGARRAY:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3827
                    case FLOATARRAY:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3828
                        break;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3829
                    case DOUBLEARRAY:
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3830
#ifdef __NEED_DOUBLE_ALIGN
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3831
                        nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1);
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3832
#endif
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3833
                        break;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3834
                    case LONGLONGARRAY:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3835
                    case SLONGLONGARRAY:
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3836
#ifdef __NEED_LONGLONG_ALIGN
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3837
                        nInstBytes = (nInstBytes-1+__LONGLONG_ALIGN) &~ (__LONGLONG_ALIGN-1);
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3838
#endif
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3839
                        break;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3840
                    default:
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3841
                        goto bad;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3842
                }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3843
                extPtr = (char *)0;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3844
                objSize = __Size(anObject) - nInstBytes;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3845
            }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3846
            if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3847
                _buffered = (__INST(buffered) == true);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3848
                if (_buffered) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3849
                    __READING__(f);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3850
                }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3851
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3852
                if (extPtr) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3853
                    __READBYTES__(ret, f, extPtr+offs, cnt, _buffered, __INST(handleType));
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3854
                } else {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3855
                    /*
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3856
                     * on interrupt, anObject may be moved to another location.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3857
                     * So we pass anObject, and the offset to the __READBYTES_OBJ__ macro.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3858
                     */
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3859
                    offs += nInstBytes;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3860
                    __READBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered, __INST(handleType));
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3861
                }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3862
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3863
                if (ret > 0) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3864
                    if (__isSmallInteger(__INST(position))) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3865
                        INT np = __intVal(__INST(position)) + ret;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3866
                        OBJ t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3867
                    } else {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3868
                        __INST(position) = nil; /* i.e. do not know */
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3869
                    }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3870
                    RETURN (__mkSmallInteger(ret));
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3871
                }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3872
                if (ret == 0) {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3873
                    __INST(hitEOF) = true;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3874
                } else /* ret < 0 */ {
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3875
                    __INST(position) = nil;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3876
                    error = __mkSmallInteger(__threadErrno);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3877
                }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3878
            }
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3879
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3880
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3881
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3882
%}.
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3883
    hitEOF ifTrue:[^ 0].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3884
    error notNil ifTrue:[
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3885
        lastErrorNumber := error.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  3886
        ^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3887
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3888
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3889
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3890
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3891
     count not integer or arg not bit-like (String, ByteArray etc)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3892
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3893
    ^ self primitiveFailed
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3894
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3895
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3896
nextInt16MSB:msbFlag
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3897
    "Read two bytes and return the value as a 16-bit signed Integer.
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3898
     If msbFlag is true, value is read with most-significant byte first,
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3899
     otherwise least-significant byte comes first.
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3900
     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
  3901
     Works in both binary and text modes."
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3902
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3903
    |error|
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3904
%{
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3905
    OBJ fp;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3906
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3907
    __INST(lastErrorNumber) = nil;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3908
    if ((__INST(handleType) == nil)
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3909
     || (__INST(handleType) == @symbol(filePointer))
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3910
     || (__INST(handleType) == @symbol(socketFilePointer))
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3911
     || (__INST(handleType) == @symbol(socketHandle))
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3912
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3913
	if (((fp = __INST(handle)) != nil)
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3914
	    && (__INST(mode) != @symbol(writeonly))
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3915
	) {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3916
	    FILEPOINTER f;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3917
	    int ret, _buffered;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3918
	    short value;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3919
	    union {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3920
		unsigned char buffer[2];
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3921
		short shortVal;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3922
	    } u;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3923
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3924
	    f = __FILEVal(fp);
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3925
	    _buffered = (__INST(buffered) == true);
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3926
	    if (_buffered) {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3927
		__READING__(f)
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3928
	    }
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3929
	    __READBYTES__(ret, f, u.buffer, 2, _buffered, __INST(handleType));
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3930
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3931
	    if (ret == 2) {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3932
		if (__isSmallInteger(__INST(position))) {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3933
		    INT np = __intVal(__INST(position)) + 2;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3934
		    OBJ t;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3935
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3936
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3937
		} else {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3938
		    __INST(position) = nil; /* i.e. do not know */
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3939
		}
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3940
		if (msbFlag == true) {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3941
#if defined(__MSBFIRST__)
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3942
		    value = u.shortVal;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3943
#else
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3944
		    value = ((u.buffer[0] & 0xFF) << 8) | (u.buffer[1] & 0xFF);
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3945
#endif
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3946
		} else {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3947
#if defined(__LSBFIRST__)
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3948
		    value = u.shortVal;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3949
#else
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3950
		    value = ((u.buffer[1] & 0xFF) << 8) | (u.buffer[0] & 0xFF);
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3951
#endif
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3952
		}
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3953
		RETURN (__mkSmallInteger(value));
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3954
	    }
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3955
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3956
	    if (ret < 0) {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3957
		__INST(position) = nil; /* i.e. do not know */
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3958
		error = __mkSmallInteger(__threadErrno);
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3959
	    } else /* ret == 0 */ {
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3960
		__INST(hitEOF) = true;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3961
	    }
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3962
	}
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3963
    }
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3964
%}.
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3965
    hitEOF ifTrue:[^ self pastEndRead].
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3966
    handle isNil ifTrue:[^ self errorNotOpen].
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3967
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3968
    lastErrorNumber := error.
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  3969
    ^ self readError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3970
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3971
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  3972
nextInt32MSB:msbFlag
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3973
    "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
  3974
     which may be a LargeInteger.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3975
     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
  3976
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3977
     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
  3978
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3979
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3980
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3981
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3982
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3983
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3984
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3985
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3986
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3987
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3988
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3989
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3990
	if (((fp = __INST(handle)) != nil)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3991
	    && (__INST(mode) != @symbol(writeonly))
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3992
	) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3993
	    FILEPOINTER f;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3994
	    int ret, _buffered;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3995
	    int value;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3996
	    union {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3997
		unsigned char buffer[4];
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3998
		int intVal;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  3999
	    } u;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4000
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4001
	    f = __FILEVal(fp);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4002
	    _buffered = (__INST(buffered) == true);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4003
	    if (_buffered) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4004
		__READING__(f)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4005
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4006
	    __READBYTES__(ret, f, u.buffer, 4, _buffered, __INST(handleType));
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4007
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4008
	    if (ret == 4) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4009
		if (__isSmallInteger(__INST(position))) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4010
		    INT np = __intVal(__INST(position)) + 4;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4011
		    OBJ t;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4012
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4013
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4014
		} else {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4015
		    __INST(position) = nil; /* i.e. do not know */
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4016
		}
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4017
		if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4018
#if defined(__MSBFIRST__)
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4019
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4020
#else
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4021
		    value = (u.buffer[0] & 0xFF);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4022
		    value = (value << 8) | (u.buffer[1] & 0xFF);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4023
		    value = (value << 8) | (u.buffer[2] & 0xFF);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4024
		    value = (value << 8) | (u.buffer[3] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4025
#endif
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4026
		} else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4027
#if defined(__LSBFIRST__)
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4028
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4029
#else
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4030
		    value = (u.buffer[3] & 0xFF);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4031
		    value = (value << 8) | (u.buffer[2] & 0xFF);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4032
		    value = (value << 8) | (u.buffer[1] & 0xFF);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4033
		    value = (value << 8) | (u.buffer[0] & 0xFF);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4034
#endif
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4035
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4036
#if __POINTER_SIZE__ == 8
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4037
		RETURN ( __mkSmallInteger(value));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4038
#else
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4039
		RETURN ( __MKINT(value) );
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4040
#endif
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4041
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4042
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4043
	    if (ret < 0) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4044
		__INST(position) = nil;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4045
		error = __mkSmallInteger(__threadErrno);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4046
	    } else /* ret == 0 */ {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4047
		__INST(hitEOF) = true;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4048
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4049
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4050
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4051
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  4052
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4053
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4054
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4055
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4056
    ^ self readError:error.
362
claus
parents: 360
diff changeset
  4057
!
claus
parents: 360
diff changeset
  4058
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4059
nextUnsignedInt16MSB:msbFlag
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4060
    "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
  4061
     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
  4062
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4063
     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
  4064
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4065
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4066
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4067
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4068
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4069
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4070
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4071
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4072
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4073
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4074
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4075
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4076
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4077
	    && (__INST(mode) != @symbol(writeonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4078
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4079
	    FILEPOINTER f;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4080
	    int ret, _buffered;
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4081
	    unsigned int value;
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4082
	    union {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4083
		unsigned char buffer[2];
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4084
		unsigned short shortVal;
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4085
	    } u;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4086
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4087
	    f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4088
	    _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4089
	    if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4090
		__READING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4091
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4092
	    __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
  4093
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4094
	    if (ret == 2) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4095
		if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4096
		    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
  4097
		    OBJ t;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4098
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4099
		    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
  4100
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4101
		    __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
  4102
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4103
		if (msbFlag == true) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4104
#if defined(__MSBFIRST__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4105
		    value = u.shortVal;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4106
#else
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4107
		    value = (u.buffer[0] << 8) | u.buffer[1];
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4108
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4109
		} else {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4110
#if defined(__LSBFIRST__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4111
		    value = u.shortVal;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4112
#else
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4113
		    value = (u.buffer[1] << 8) | u.buffer[0];
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4114
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4115
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4116
		RETURN (__mkSmallInteger(value));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4117
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4118
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4119
	    if (ret < 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4120
		__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
  4121
		error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4122
	    } else /* ret == 0 */ {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4123
		__INST(hitEOF) = true;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4124
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4125
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4126
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4127
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  4128
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4129
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4130
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4131
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4132
    ^ self readError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4133
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4134
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4135
nextUnsignedInt32MSB:msbFlag
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4136
    "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
  4137
     a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4138
     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
  4139
     least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4140
     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
  4141
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4142
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4143
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4144
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4145
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4146
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4147
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4148
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4149
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4150
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4151
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4152
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4153
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4154
	    && (__INST(mode) != @symbol(writeonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4155
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4156
	    FILEPOINTER f;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4157
	    int ret, _buffered;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4158
	    unsigned INT value;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4159
	    union {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4160
		unsigned char buffer[4];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4161
		unsigned int intVal;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4162
	    } u;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4163
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4164
	    f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4165
	    _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4166
	    if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4167
		__READING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4168
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4169
	    __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
  4170
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4171
	    if (ret == 4) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4172
		if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4173
		    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
  4174
		    OBJ t;
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
		    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
  4177
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4178
		    __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
  4179
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4180
		if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4181
#if defined(__MSBFIRST__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4182
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4183
#else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4184
		    value = u.buffer[0];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4185
		    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
  4186
		    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
  4187
		    value = (value << 8) | u.buffer[3];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4188
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4189
		} else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4190
#if defined(__LSBFIRST__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4191
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4192
#else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4193
		    value = u.buffer[3];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4194
		    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
  4195
		    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
  4196
		    value = (value << 8) | u.buffer[0];
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
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4199
#if __POINTER_SIZE__ == 8
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4200
		value &= 0xFFFFFFFF;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4201
		RETURN (__mkSmallInteger(value));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4202
#else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4203
		if (value <= _MAX_INT) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4204
		    RETURN (__mkSmallInteger(value));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4205
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4206
		RETURN (__MKULARGEINT(value) );
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  4207
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4208
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4209
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4210
	    if (ret < 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4211
		__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
  4212
		error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4213
	    } else /* ret == 0 */ {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4214
		__INST(hitEOF) = true;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4215
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4216
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4217
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4218
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  4219
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4220
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4221
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4222
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4223
    ^ self readError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4224
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4225
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4226
nextWord
15452
e2a3b2dc064b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15435
diff changeset
  4227
    <resource: #obsolete>
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4228
    "in text-mode:
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4229
         read the alphaNumeric next word (i.e. up to non letter-or-digit).
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4230
         return a string containing those characters.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4231
     in binary-mode:
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4232
         read two bytes (msb-first) and return the value as a 16-bit
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4233
         unsigned Integer (for compatibility with other smalltalks)"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4234
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4235
    binary ifTrue:[
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4236
        self obsoleteMethodWarning:'use #nextUnsignedInt16MSB:true'.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4237
        ^ self nextUnsignedInt16MSB:true
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4238
    ].
14518
7dad78183779 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14440
diff changeset
  4239
    self obsoleteMethodWarning:'use #nextAlphaNumericWord'.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4240
    ^ self nextAlphaNumericWord
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4241
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4242
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4243
!ExternalStream methodsFor:'non homogenous writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4244
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4245
nextPutByte:aByteValue
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4246
    "write a byte.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4247
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4248
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4249
    |error|
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4250
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4251
%{
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4252
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4253
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4254
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4255
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4256
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4257
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4258
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4259
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4260
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4261
	 && (__INST(mode) != @symbol(readonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4262
	 && __isSmallInteger(aByteValue)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4263
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
	    int _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4266
	    FILEPOINTER f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4267
	    char c = __intVal(aByteValue);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4268
	    int cnt;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4269
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4270
	    if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4271
		__WRITING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4272
	    }
18514
acbf73341410 Fix for MING32/MING64: threat stdout/stderr as normal files
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18374
diff changeset
  4273
#if defined(WIN32) && !defined(__MINGW__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4274
	    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
  4275
		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
  4276
	    } else
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
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
	    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4279
		__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
  4280
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4281
	    if (cnt == 1) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4282
		if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4283
		    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
  4284
		    OBJ t;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4285
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4286
		    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
  4287
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4288
		    __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
  4289
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4290
		RETURN (self);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4291
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4292
	    if (cnt < 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4293
		__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
  4294
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4295
	    error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4296
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4297
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4298
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4299
    handle isNil ifTrue:[self errorNotOpen. ^ self].
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4300
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4301
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4302
    self writeError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4303
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4304
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4305
nextPutInt16:anIntegerOrCharacter MSB:msbFlag
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4306
    "Write the argument, anIntegerOrCharacter as a short (two bytes).
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4307
     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
  4308
     otherwise least first.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4309
     Notice that integers in the range -16r8000 to +16rFFFF can be written
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4310
     (i.e. both signed and unsigned int32 values can be written.
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4311
     Works in both binary and text modes."
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4312
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4313
    |error|
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4314
%{
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4315
    int num;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4316
    union {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4317
	char bytes[2];
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4318
	short shortVal;
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4319
    } u;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4320
    OBJ fp;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4321
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4322
    __INST(lastErrorNumber) = nil;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4323
    if ((__INST(handleType) == nil)
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4324
     || (__INST(handleType) == @symbol(filePointer))
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4325
     || (__INST(handleType) == @symbol(socketFilePointer))
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4326
     || (__INST(handleType) == @symbol(socketHandle))
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4327
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4328
	if (((fp = __INST(handle)) != nil)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4329
	 && (__INST(mode) != @symbol(readonly))
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4330
	) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4331
	    FILEPOINTER f = __FILEVal(fp);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4332
	    int _buffered = (__INST(buffered) == true);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4333
	    int cnt;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4334
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4335
	    if (__isSmallInteger(anIntegerOrCharacter)) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4336
		num = __intVal(anIntegerOrCharacter);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4337
	    } else if (__isCharacter(anIntegerOrCharacter)) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4338
		num = __smallIntegerVal(__characterVal(anIntegerOrCharacter));
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4339
	    } else
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4340
		goto out;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4341
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4342
	    if (msbFlag == true) {
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4343
#if defined(__MSBFIRST__)
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4344
		u.shortVal = num;
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4345
#else
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4346
		u.bytes[0] = (num >> 8) & 0xFF;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4347
		u.bytes[1] = num & 0xFF;
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4348
#endif
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4349
	    } else {
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4350
#if defined(__LSBFIRST__)
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4351
		u.shortVal = num;
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4352
#else
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4353
		u.bytes[1] = (num >> 8) & 0xFF;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4354
		u.bytes[0] = num & 0xFF;
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4355
#endif
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4356
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4357
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4358
	    if (_buffered) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4359
		__WRITING__(f)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4360
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4361
	    __WRITEBYTES__(cnt, f, u.bytes, 2, _buffered, __INST(handleType));
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4362
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4363
	    if (cnt == 2) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4364
		if (__isSmallInteger(__INST(position))) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4365
		    INT np = __intVal(__INST(position)) + 2;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4366
		    OBJ t;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4367
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4368
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4369
		} else {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4370
		    __INST(position) = nil; /* i.e. do not know */
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4371
		}
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4372
		RETURN ( self );
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4373
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4374
	    __INST(position) = nil; /* i.e. do not know */
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4375
	    error = __mkSmallInteger(__threadErrno);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4376
	}
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4377
    }
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4378
out:;
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4379
%}.
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4380
    error notNil ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4381
	lastErrorNumber := error.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4382
	self writeError:error.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4383
	^ self
19219
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4384
    ].
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4385
    handle isNil ifTrue:[self errorNotOpen. ^ self].
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4386
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4387
    self argumentMustBeInteger
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4388
!
4988f69224c3 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19213
diff changeset
  4389
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4390
nextPutInt16LSB:anIntegerOrCharacter
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4391
    "do not remove.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4392
     See #patchByteOrderOptimizedMethods"
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4393
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4394
    self nextPutInt16:anIntegerOrCharacter MSB:false
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4395
!
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4396
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4397
nextPutInt16MSB:anIntegerOrCharacter
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4398
    "do not remove.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4399
     See #patchByteOrderOptimizedMethods"
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4400
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4401
    self nextPutInt16:anIntegerOrCharacter MSB:true
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4402
!
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4403
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4404
nextPutInt16NATIVE:anIntegerOrCharacter
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4405
    "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
  4406
     This is the CPU-specific byte order (LSB on x86, MSB on sparc, VAX and possibly on ARM).
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4407
     Notice that integers in the range -16r8000 to +16rFFFF can be written
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4408
     (i.e. both signed and unsigned int32 values can be written.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4409
     Works in both binary and text modes."
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4410
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4411
    |error|
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4412
%{
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4413
    int num;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4414
    union {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4415
	char bytes[2];
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4416
	short shortVal;
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4417
    } u;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4418
    OBJ fp;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4419
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4420
    __INST(lastErrorNumber) = nil;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4421
    if ((__INST(handleType) == nil)
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4422
     || (__INST(handleType) == @symbol(filePointer))
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4423
     || (__INST(handleType) == @symbol(socketFilePointer))
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4424
     || (__INST(handleType) == @symbol(socketHandle))
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4425
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4426
	if (((fp = __INST(handle)) != nil)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4427
	 && (__INST(mode) != @symbol(readonly))
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4428
	) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4429
	    FILEPOINTER f = __FILEVal(fp);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4430
	    int _buffered = (__INST(buffered) == true);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4431
	    int cnt;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4432
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4433
	    if (__isSmallInteger(anIntegerOrCharacter)) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4434
		num = __intVal(anIntegerOrCharacter);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4435
	    } else if (__isCharacter(anIntegerOrCharacter)) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4436
		num = __smallIntegerVal(__characterVal(anIntegerOrCharacter));
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4437
	    } else
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4438
		goto out;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4439
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4440
	    u.shortVal = num;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4441
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4442
	    if (_buffered) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4443
		__WRITING__(f)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4444
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4445
	    __WRITEBYTES__(cnt, f, u.bytes, 2, _buffered, __INST(handleType));
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4446
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4447
	    if (cnt == 2) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4448
		if (__isSmallInteger(__INST(position))) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4449
		    INT np = __intVal(__INST(position)) + 2;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4450
		    OBJ t;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4451
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4452
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4453
		} else {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4454
		    __INST(position) = nil; /* i.e. do not know */
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4455
		}
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4456
		RETURN ( self );
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4457
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4458
	    __INST(position) = nil; /* i.e. do not know */
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4459
	    error = __mkSmallInteger(__threadErrno);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4460
	}
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4461
    }
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4462
out:;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4463
%}.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4464
    self nextPutInt16:anIntegerOrCharacter MSB:(UninterpretedBytes isBigEndian).
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4465
!
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4466
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4467
nextPutInt32:aNumber MSB:msbFlag
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4468
    "Write the argument, aNumber as a long (four bytes).
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4469
     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
  4470
     otherwise least first.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4471
     Notice that integers in the range -16r80000000 to +16rFFFFFFFF can be written
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4472
     (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
  4473
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4474
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4475
    |error|
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4476
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4477
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4478
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4479
    union {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4480
	char bytes[4];
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4481
	int intVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4482
    } u;
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4483
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4484
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4485
    __INST(lastErrorNumber) = nil;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4486
    if (__isSmallInteger(aNumber)) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4487
	num = __intVal(aNumber);
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4488
    } else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4489
#if __POINTER_SIZE__ == 8
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4490
	// always more than 4-bytes
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4491
	goto badArg;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4492
#else
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4493
	num = __longIntVal(aNumber);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4494
	if (num == 0) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4495
	    num = __signedLongIntVal(aNumber);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4496
	    if (num == 0) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4497
		/* bad arg or out-of-range integer
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4498
		 * (handled by the fallBack code)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4499
		 */
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4500
		goto badArg;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4501
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4502
	}
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4503
#endif
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4504
    }
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4505
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4506
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4507
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4508
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4509
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4510
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4511
	if (((fp = __INST(handle)) != nil)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4512
	 && (__INST(mode) != @symbol(readonly))
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4513
	) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4514
	    int _buffered = (__INST(buffered) == true);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4515
	    FILEPOINTER f = __FILEVal(fp);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4516
	    int cnt;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4517
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4518
	    if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4519
#if defined(__MSBFIRST__)
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4520
		u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4521
#else
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4522
		u.bytes[0] = (num >> 24) & 0xFF;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4523
		u.bytes[1] = (num >> 16) & 0xFF;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4524
		u.bytes[2] = (num >> 8) & 0xFF;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4525
		u.bytes[3] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4526
#endif
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4527
	    } else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4528
#if defined(__LSBFIRST__)
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4529
		u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4530
#else
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4531
		u.bytes[3] = (num >> 24) & 0xFF;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4532
		u.bytes[2] = (num >> 16) & 0xFF;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4533
		u.bytes[1] = (num >> 8) & 0xFF;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4534
		u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4535
#endif
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4536
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4537
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4538
	    if (_buffered) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4539
		__WRITING__(f)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4540
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4541
	    __WRITEBYTES__(cnt, f, u.bytes, 4, _buffered, __INST(handleType));
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4542
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4543
	    if (cnt == 4) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4544
		if (__isSmallInteger(__INST(position))) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4545
		    INT np = __intVal(__INST(position)) + 4;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4546
		    OBJ t;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4547
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4548
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4549
		} else {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4550
		    __INST(position) = nil; /* i.e. do not know */
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4551
		}
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4552
		RETURN ( self );
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4553
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4554
	    __INST(position) = nil; /* i.e. do not know */
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4555
	    error = __mkSmallInteger(__threadErrno);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4556
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4557
    }
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4558
badArg: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4559
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4560
    handle isNil ifTrue:[self errorNotOpen. ^ self].
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4561
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4562
    error notNil ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4563
	lastErrorNumber := error.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4564
	self writeError:error.
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4565
	^ self
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4566
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4567
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4568
    aNumber isInteger ifTrue:[
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4569
	^ super nextPutInt32:aNumber MSB:msbFlag
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4570
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4571
    self argumentMustBeInteger
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4572
!
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4573
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4574
nextPutInt32LSB:anIntegerOrCharacter
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4575
    "do not remove.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4576
     See #patchByteOrderOptimizedMethods"
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4577
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4578
    self nextPutInt32:anIntegerOrCharacter MSB:false
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4579
!
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4580
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4581
nextPutInt32MSB:anIntegerOrCharacter
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4582
    "do not remove.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4583
     See #patchByteOrderOptimizedMethods"
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4584
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4585
    self nextPutInt32:anIntegerOrCharacter MSB:true
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4586
!
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4587
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4588
nextPutInt32NATIVE:anInteger
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4589
    "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
  4590
     This is the CPU-specific byte order (LSB on x86, MSB on sparc, VAX and possibly on ARM).
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4591
     Notice that integers in the range -16r80000000 to +16rFFFFFFFF can be written
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4592
     (i.e. both signed and unsigned int32 values can be written.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4593
     Works in both binary and text modes.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4594
     Notice: this message should not be sent explicitly by ANY program.
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4595
	     the following implementation replaces the code of either nextPutInt32MSB or LSB
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4596
	     dynamically (see #initialize on the class side)"
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4597
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4598
    |error|
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4599
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4600
%{
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4601
    int num;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4602
    union {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4603
	char bytes[4];
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4604
	int intVal;
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4605
    } u;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4606
    OBJ fp;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4607
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4608
    __INST(lastErrorNumber) = nil;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4609
    if (__isSmallInteger(anInteger)) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4610
	num = __intVal(anInteger);
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4611
    } else {
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4612
#if __POINTER_SIZE__ == 8
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4613
	// always more than 4-bytes
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4614
	goto badArg;
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4615
#else
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4616
	num = __longIntVal(anInteger);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4617
	if (num == 0) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4618
	    num = __signedLongIntVal(anInteger);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4619
	    if (num == 0) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4620
		/* bad arg or out-of-range integer
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4621
		 * (handled by the fallBack code)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4622
		 */
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4623
		goto badArg;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4624
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4625
	}
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4626
#endif
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4627
    }
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4628
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4629
    if ((__INST(handleType) == nil)
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4630
     || (__INST(handleType) == @symbol(filePointer))
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4631
     || (__INST(handleType) == @symbol(socketFilePointer))
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4632
     || (__INST(handleType) == @symbol(socketHandle))
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4633
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4634
	if (((fp = __INST(handle)) != nil)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4635
	 && (__INST(mode) != @symbol(readonly))
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4636
	) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4637
	    int _buffered = (__INST(buffered) == true);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4638
	    FILEPOINTER f = __FILEVal(fp);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4639
	    int cnt;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4640
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4641
	    u.intVal = num;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4642
	    if (_buffered) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4643
		__WRITING__(f)
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4644
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4645
	    __WRITEBYTES__(cnt, f, u.bytes, 4, _buffered, __INST(handleType));
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4646
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4647
	    if (cnt == 4) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4648
		if (__isSmallInteger(__INST(position))) {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4649
		    INT np = __intVal(__INST(position)) + 4;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4650
		    OBJ t;
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4651
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4652
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4653
		} else {
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4654
		    __INST(position) = nil; /* i.e. do not know */
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4655
		}
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4656
		RETURN ( self );
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4657
	    }
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4658
	    __INST(position) = nil; /* i.e. do not know */
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4659
	    error = __mkSmallInteger(__threadErrno);
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4660
	}
19615
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4661
    }
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4662
badArg: ;
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4663
%}.
c24b55e4bc41 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19568
diff changeset
  4664
    self nextPutInt32:anInteger MSB:(UninterpretedBytes isBigEndian)
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4665
!
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4666
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4667
nextPutUtf16:aCharacter
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4668
    "append my UTF-16 MSB representation to the argument, aStream.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4669
     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
  4670
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4671
    self nextPutUtf16Bytes:aCharacter MSB:true
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4672
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4673
    "
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4674
        (FileStream newTemporary
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4675
            nextPutUtf16:$B;
21024
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 20728 20795
diff changeset
  4676
            nextPutUtf16:$;
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4677
            nextPutUtf16:(Character codePoint:16r10CCCC);
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4678
            reset;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4679
            binary;
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4680
            contents)
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4681
    "
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4682
!
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4683
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4684
nextPutUtf16:aCharacter MSB:msbFlag
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4685
    "append my UTF-16 MSB representation to the argument, aStream.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4686
     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
  4687
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  4688
    self nextPutUtf16Bytes:aCharacter MSB:msbFlag
10
claus
parents: 5
diff changeset
  4689
! !
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4690
7053
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4691
!ExternalStream methodsFor:'positioning'!
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4692
15619
3f2e6f5fab12 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15496
diff changeset
  4693
position
7053
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4694
    self subclassResponsibility
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4695
!
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4696
15619
3f2e6f5fab12 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15496
diff changeset
  4697
position:index0Based
7053
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4698
    self subclassResponsibility
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4699
! !
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4700
12631
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4701
!ExternalStream methodsFor:'printing & storing'!
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4702
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4703
printOn:aStream
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4704
    aStream
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4705
	nextPutAll:self className;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4706
	nextPutAll:'(handle:('.
12631
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4707
    handle printOn:aStream.
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4708
    aStream nextPutAll:'))'
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4709
! !
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4710
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4711
!ExternalStream methodsFor:'private'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4712
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4713
clearEOF
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4714
    hitEOF := false
20987
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  4715
!
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4716
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4717
closeFile
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4718
    "low level close - may be redefined in subclasses
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4719
     Don't send this message, send #close instead"
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4720
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4721
    |fp error|
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4722
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4723
    handle isNil ifTrue:[
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4724
        ^ self.
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4725
    ].
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4726
    fp := handle.
19767
2647abae8b3c #BUGFIX by sr
sr
parents: 19766
diff changeset
  4727
    "/ (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
  4728
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4729
%{
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4730
    int rslt;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4731
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4732
    if (__INST(handleType) == @symbol(socketHandle)) {
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4733
        SOCKET sock = (SOCKET)(__FILEVal(fp));
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4734
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4735
        if (@global(FileOpenTrace) == true) {
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4736
            fprintf(stderr, "close socket [ExternalStream] %"_lx_"\n", (INT)sock);
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4737
        }
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4738
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4739
        // whether the close() will be successful or not - the handle is invalid now!
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4740
        __INST(handle) = nil;
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4741
        do {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4742
#ifdef __win32__
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4743
            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
  4744
#else
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4745
            rslt = close(sock);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4746
#endif
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4747
        } while((rslt < 0) && (__threadErrno == EINTR));
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4748
    } else if ((__INST(handleType) == nil)
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4749
               || (__INST(handleType) == @symbol(filePointer))
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4750
               || (__INST(handleType) == @symbol(socketFilePointer))
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4751
               || (__INST(handleType) == @symbol(pipeFilePointer)))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4752
    {
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4753
        FILEPOINTER f = __FILEVal(fp);
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4754
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4755
        if (@global(FileOpenTrace) == true) {
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4756
            fprintf(stderr, "fclose [ExternalStream] %"_lx_"\n", (INT)f);
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4757
        }
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4758
        // whether the close() will be successful or not - the handle is invalid now!
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4759
        __INST(handle) = nil;
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4760
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4761
#ifdef __win32__
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4762
        if (__INST(mode) != @symbol(readonly) && __INST(buffered) != false) {
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4763
            // do a fflush() first, so that fclose() doesn't block
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4764
            // we suspect, that EINTR causes problems in fclose()
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4765
            do {
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4766
                __threadErrno = 0;
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4767
                rslt = __STX_C_CALL1("fflush", fflush, f);
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4768
            } while((rslt < 0) && (__threadErrno == EINTR));
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4769
        }
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4770
        do {
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4771
            __threadErrno = 0;
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4772
            rslt = __STX_C_NOINT_CALL1("fclose", fclose, f);
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4773
        } while((rslt < 0) && (__threadErrno == EINTR));
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4774
#else
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4775
        // cg: the pre Nov2014 code always did the fclose interruptable;
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4776
        // I am not sure, if fclose is actually prepared to do this;
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4777
        // at least when only reading, this should not block, and we
20987
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  4778
        // should be able to do it without being interruptable.
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4779
        // Must watch this - if it leads to blockings, change and think about it.
20987
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  4780
        if (__INST(mode) == @symbol(readonly)) {
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  4781
            rslt = fclose(f);
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  4782
        } else {
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4783
            __BEGIN_INTERRUPTABLE__
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4784
            rslt = fclose(f);
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4785
            __END_INTERRUPTABLE__
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4786
        }
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4787
#endif
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4788
    } else {
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4789
        error = @symbol(badHandleType);
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4790
        goto out;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4791
    }
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4792
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4793
    if (rslt < 0) {
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4794
        error = __mkSmallInteger(__threadErrno);
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4795
        goto out;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4796
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4797
    RETURN (self);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4798
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4799
out:;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4800
%}.
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4801
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4802
    error notNil ifTrue:[
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4803
        error isInteger ifTrue:[
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4804
            lastErrorNumber := error.
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4805
            mode == #readonly ifTrue:[
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4806
                self ioError:error.
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4807
            ] ifFalse:[
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4808
                self writeError:error.
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4809
            ].
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4810
            ^ self.
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4811
        ].
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4812
        self primitiveFailed:error.
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4813
        ^ self.
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4814
    ].
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4815
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4816
    "/ fallback for rel5
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4817
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4818
    fp := handle.
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4819
    fp notNil ifTrue:[
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4820
        handle := nil.
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  4821
        self closeFile:fp
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4822
    ]
20987
35fce561fb6f #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20974
diff changeset
  4823
!
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4824
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4825
closeFile:handle
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4826
    "for rel5 only"
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4827
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4828
    self primitiveFailed
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4829
!
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4830
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  4831
connectTo:aFileDescriptor withMode:modeSymbol handleType:handleTypeSymbol
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4832
    "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
  4833
     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
  4834
     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
  4835
     a Stream object.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4836
     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
  4837
     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
  4838
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4839
    |error openmode|
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4840
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4841
    handle notNil ifTrue:[^ self errorAlreadyOpen].
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  4842
    mode := modeSymbol.
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  4843
    openmode := self fopenMode.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4844
%{
12683
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4845
    FILEPOINTER f = 0;
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4846
    OBJ fp;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4847
    FILE *fdopen();
12683
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4848
    int fd = -2;
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4849
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4850
    if (__isStringLike(openmode)) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4851
#ifdef __win32__
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4852
        __stxWrapApiEnterCritical();
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4853
#endif
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4854
        if (__isSmallInteger(aFileDescriptor)) {
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4855
            fd = __intVal(aFileDescriptor);
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4856
        }
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4857
#ifdef __win32__
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4858
        else if (__isExternalAddressLike(aFileDescriptor)) {
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4859
            fd = _open_osfhandle((long)__externalAddressVal(aFileDescriptor), O_BINARY);
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4860
            if (fd < 0) {
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4861
                if (__threadErrno == 0) {
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4862
                    // no more file descriptors
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4863
                    __threadErrno = EMFILE;
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4864
                }
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4865
                error = __mkSmallInteger(__threadErrno);
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4866
                __stxWrapApiLeaveCritical();
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4867
                goto out;
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4868
            }
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4869
        }
12683
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4870
#endif
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4871
        f = (FILEPOINTER) fdopen(fd, (char *)__stringVal(openmode));
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4872
#ifdef __win32__
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4873
        __stxWrapApiLeaveCritical();
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4874
#endif
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4875
        if (f == NULL) {
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4876
            error =__mkSmallInteger(__threadErrno);
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4877
        } else {
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4878
            if (@global(FileOpenTrace) == true) {
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4879
                fprintf(stderr, "fdopen [ExternalStream] %"_ld_" (%"_lx_") -> %"_lx_"\n", (INT)fd, (INT)fd, (INT)f);
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4880
            }
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4881
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4882
            fp = __MKFILEPOINTER(f); __INST(handle) = fp; __STORE(self, fp);
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4883
        }
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4884
    }
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4885
out:;
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4886
%}.
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4887
    error notNil ifTrue:[
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4888
        "
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4889
         the open failed for some reason ...
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4890
        "
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4891
        OperatingSystem closeFd:aFileDescriptor.
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4892
        lastErrorNumber := error.
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4893
        position := nil.
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4894
        ^ self openError:error
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4895
    ].
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4896
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4897
    position := 0.
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4898
    buffered isNil ifTrue:[
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4899
        buffered := true.       "default is buffered"
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4900
    ].
21224
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4901
    handleType := handleTypeSymbol.
9bbb95a21764 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21221
diff changeset
  4902
    self registerForFinalization.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4903
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4904
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4905
dupFd
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4906
    "duplicate my file descriptor"
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4907
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4908
    |fd dupFd|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4909
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4910
    fd := self fileHandle.
20690
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  4911
    fd isNil ifTrue:[   
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  4912
        ^ self errorNotOpen.
f6a11f77b230 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20679
diff changeset
  4913
    ].
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4914
    dupFd := OperatingSystem dup:fd.
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4915
    self setFileHandle:dupFd mode:self fopenMode.
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  4916
!
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4917
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4918
fopenMode
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4919
   "answer the mode for fopen.
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4920
    Only used internally"
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4921
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4922
   mode == #readonly ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4923
	^ ReadMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4924
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4925
   mode == #writeonly ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4926
	^ WriteMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4927
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4928
   mode == #readWrite ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4929
	^ ReadWriteMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4930
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4931
   mode == #append ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4932
	^ AppendMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4933
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4934
   ^ ReadWriteMode
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  4935
!
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4936
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4937
open:aPath withMode:openModeString
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4938
    "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
  4939
     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
  4940
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4941
    |ok error|
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4942
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4943
    ok := false.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4944
%{
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4945
    FILE *f;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4946
    OBJ fp;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4947
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4948
    if (__isStringLike(aPath) && __isStringLike(openModeString)) {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  4949
#ifdef __win32__
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
  4950
# if 1
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4951
       f = fopen((char *) __stringVal(aPath), (char *) __stringVal(openModeString));
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4952
# else
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4953
	__BEGIN_INTERRUPTABLE__
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4954
	do {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4955
	    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
  4956
	} while ((f == NULL) && (__threadErrno == EINTR));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4957
	__END_INTERRUPTABLE__
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4958
# endif
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4959
#else /* UNIX */
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4960
	__BEGIN_INTERRUPTABLE__
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4961
	do {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4962
	    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
  4963
	} while ((f == NULL) && (__threadErrno == EINTR));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4964
	__END_INTERRUPTABLE__
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4965
#endif /* UNIX */
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4966
	if (f == NULL) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4967
	    error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4968
	} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4969
	    if (@global(FileOpenTrace) == true) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4970
		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
  4971
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4972
	    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
  4973
	    __INST(handleType) = @symbol(filePointer);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4974
	    ok = true;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4975
	}
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4976
    }
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4977
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4978
    ok ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4979
	position := 0.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4980
	self registerForFinalization.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4981
	^ self.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4982
    ].
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4983
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4984
	"
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4985
	 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
  4986
	"
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4987
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  4988
	self openError:error.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4989
    ].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4990
    self primitiveFailed.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4991
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4992
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4993
reOpen
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4994
    "USERS WILL NEVER INVOKE THIS METHOD
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4995
     sent after snapin to reopen streams.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4996
     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
  4997
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4998
    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
  4999
    handle := nil.
18779
bf2e0fa40131 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18652
diff changeset
  5000
    self unregisterForFinalization.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5001
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5002
    "Modified: 10.1.1997 / 17:50:44 / cg"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5003
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  5004
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5005
setAccessor:what to:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5006
    "set the filePointer/fileHandle to the given one;
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5007
     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
  5008
     externally provided handle."
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5009
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5010
    handle := something.
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5011
    handleType := what.
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5012
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5013
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5014
setFileHandle:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5015
    "set the fileHandle to the given one;
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5016
     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
  5017
     externally provided file handle."
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5018
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5019
    self setAccessor:#fileHandle to:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5020
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
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
setFileHandle:anIntegerOrExternalAddress mode:openMode
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5023
    "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
  5024
     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
  5025
     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
  5026
     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
  5027
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5028
%{
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5029
    FILEPOINTER f;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5030
    OBJ fp;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5031
    FILE *fdopen();
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5032
    int fd;
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5033
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5034
    if (!__isStringLike(openMode))
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5035
	goto err;
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5036
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  5037
#ifdef __win32__
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  5038
    __stxWrapApiEnterCritical();
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5039
    if (__isExternalAddressLike(anIntegerOrExternalAddress) ) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5040
	HANDLE __fileHandle = (HANDLE)__externalAddressVal(anIntegerOrExternalAddress);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5041
	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
  5042
	if (fd < 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5043
	    __stxWrapApiLeaveCritical();
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5044
	    CloseHandle(__fileHandle);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5045
	    goto err;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5046
	}
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5047
    } else
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5048
#endif
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5049
    if (__isSmallInteger(anIntegerOrExternalAddress)) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5050
	fd = __smallIntegerVal(anIntegerOrExternalAddress);
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5051
    } else {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  5052
#ifdef __win32__
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5053
	__stxWrapApiLeaveCritical();
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  5054
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5055
	goto err;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5056
    }
10997
8ec53332c725 _fdopen -> fdopen()
Stefan Vogel <sv@exept.de>
parents: 10995
diff changeset
  5057
    f = fdopen(fd, __stringVal(openMode));
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  5058
#ifdef __win32__
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  5059
    __stxWrapApiLeaveCritical();
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  5060
#endif
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5061
    if (f != NULL) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5062
	if (@global(FileOpenTrace) == true) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5063
	    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
  5064
	}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5065
	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
  5066
	__INST(handleType) = @symbol(filePointer);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5067
	RETURN (self);
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5068
    }
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  5069
err:;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5070
%}.
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5071
    ^ self primitiveFailed
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5072
!
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5073
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5074
setFilePointer:something
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5075
    "set the filePointer to the given one;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5076
     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
  5077
     externally provided file."
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5078
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5079
    self setAccessor:#filePointer to:something
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5080
!
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5081
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5082
setLastError:aNumber
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  5083
    lastErrorNumber := aNumber
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5084
!
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5085
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5086
setSocketHandle:something
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5087
    "set the socketHandle to the given one;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5088
     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
  5089
     externally provided socket handle."
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5090
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5091
    self setAccessor:#socketHandle to:something
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5092
! !
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  5093
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5094
!ExternalStream methodsFor:'queries'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5095
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5096
nextError
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5097
    "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
  5098
     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
  5099
     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
  5100
     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
  5101
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5102
%{ /*NOCONTEXT*/
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5103
    FILEPOINTER f;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5104
    int ret, _buffered;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5105
    OBJ fp;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5106
    unsigned char ch;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5107
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5108
    if ((__INST(handleType) == nil)
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5109
     || (__INST(handleType) == @symbol(filePointer))
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5110
     || (__INST(handleType) == @symbol(socketFilePointer))
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5111
     || (__INST(handleType) == @symbol(socketHandle))
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5112
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5113
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5114
	    && (__INST(mode) != @symbol(writeonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5115
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5116
	    f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5117
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5118
	    _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5119
	    if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5120
		__READING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5121
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5122
	    __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
  5123
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5124
	    if (ret > 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5125
		RETURN(nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5126
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5127
	    if (ret < 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5128
		RETURN(__mkSmallInteger(__threadErrno));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5129
	    } else /* ret == 0 */ {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5130
		RETURN(__mkSmallInteger(0)); /* EOF */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5131
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5132
	}
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5133
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5134
%}.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5135
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5136
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5137
numAvailable
21130
a3a7d6f1a3b8 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21097
diff changeset
  5138
    <resource: #obsolete>
a3a7d6f1a3b8 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21097
diff changeset
  5139
    ^ self numAvailableForRead
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5140
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5141
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5142
!ExternalStream methodsFor:'reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5143
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5144
next
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5145
    "return the next element; advance read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5146
     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
  5147
     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
  5148
     - see #pastEndRead."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5149
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5150
    |c error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5151
%{
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  5152
#ifdef __SCHTEAM__
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  5153
    STObject handle = self.instVarAt(I_handle);
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  5154
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  5155
    if (handle != STObject.Nil) {
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5156
        STObject next;
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5157
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5158
        if (self.instVarAt(I_binary) == STObject.True) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5159
            next = handle.nextByte();
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5160
        } else {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5161
            next = handle.nextChar();
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5162
        }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5163
        if (next != STObject.EOF) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5164
            self.instVarAt_put(I_position, STObject.Nil);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5165
            return __c__._RETURN( next );
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5166
        }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5167
        self.instVarAt_put(I_hitEOF, STObject.True);
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  5168
    }
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  5169
#else
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5170
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5171
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5172
    OBJ pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5173
    unsigned char ch;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5174
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5175
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5176
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5177
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5178
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5179
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5180
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5181
        if (((fp = __INST(handle)) != nil)
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5182
            && (__INST(mode) != @symbol(writeonly))
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5183
        ) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5184
            f = __FILEVal(fp);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5185
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5186
            _buffered = (__INST(buffered) == true);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5187
            if (_buffered) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5188
                __READING__(f)
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5189
            }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5190
            __READBYTE__(ret, f, &ch, _buffered, __INST(handleType));
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5191
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5192
            if (ret > 0) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5193
                pos = __INST(position);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5194
                if (__isSmallInteger(pos)) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5195
                    OBJ t;
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5196
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5197
                    t = __MKINT(__intVal(pos) + 1); __INST(position) = t; __STORE(self, t);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5198
                } else {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5199
                    __INST(position) = nil; /* i.e. do not know */
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5200
                }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5201
                if (__INST(binary) == true) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5202
                    RETURN ( __mkSmallInteger(ch) );
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5203
                }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5204
                RETURN ( __MKCHARACTER(ch) );
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5205
            }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5206
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5207
            __INST(position) = nil;
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5208
            if (ret < 0) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5209
                error = __mkSmallInteger(__threadErrno);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5210
            } else /* ret == 0 */ {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5211
                __INST(hitEOF) = true;
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5212
            }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5213
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5214
    }
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  5215
#endif /* not SCHTEAM */
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5216
%}.
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5217
    hitEOF ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5218
    error notNil ifTrue:[
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5219
        lastErrorNumber := error.
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5220
        ^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5221
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5222
    handle isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5223
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5224
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5225
    readAhead notNil ifTrue:[
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5226
        c := readAhead.
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5227
        readAhead := nil.
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5228
        ^ c.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5229
    ].
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  5230
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  5231
    "unknown handleType - future"
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5232
    c := self nextByteFromFile:handle.
5430
7d0aa5fc6c22 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5420
diff changeset
  5233
    c isNil ifTrue:[
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5234
        ^ self pastEndRead.
5430
7d0aa5fc6c22 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5420
diff changeset
  5235
    ].
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5236
    binary ifTrue:[
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5237
        ^ c
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5238
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5239
    ^ Character value:c
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5240
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5241
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5242
next:count
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5243
    "return the next count elements of the stream as a collection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5244
     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
  5245
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5246
    |coll nRead|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5247
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5248
    coll := self contentsSpecies uninitializedNew:count.
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5249
    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
  5250
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5251
    nRead ~~ count ifTrue:[
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5252
        "/ for readStream protocol compatibility,
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5253
        "/ we must raise an exception here.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5254
        ^ self pastEndRead
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5255
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5256
    ^ coll
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5257
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5258
    "Modified: 11.1.1997 / 17:44:17 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5259
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5260
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5261
nextOrNil
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5262
    "return the next element; advance read position.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5263
     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
  5264
     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
  5265
     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
  5266
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5267
    |c error|
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5268
%{
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5269
    FILEPOINTER f;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5270
    int ret, _buffered;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5271
    OBJ pos, fp;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5272
    unsigned char ch;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5273
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5274
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5275
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5276
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5277
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5278
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5279
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5280
        if (((fp = __INST(handle)) != nil)
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5281
            && (__INST(mode) != @symbol(writeonly))
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5282
        ) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5283
            f = __FILEVal(fp);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5284
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5285
            _buffered = (__INST(buffered) == true);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5286
            if (_buffered) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5287
                __READING__(f)
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5288
            }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5289
            __READBYTE__(ret, f, &ch, _buffered, __INST(handleType));
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5290
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5291
            if (ret > 0) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5292
                pos = __INST(position);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5293
                if (__isSmallInteger(pos)) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5294
                    OBJ t;
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5295
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5296
                    t = __MKINT(__intVal(pos) + 1); __INST(position) = t; __STORE(self, t);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5297
                } else {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5298
                    __INST(position) = nil; /* i.e. do not know */
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5299
                }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5300
                if (__INST(binary) == true) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5301
                    RETURN ( __mkSmallInteger(ch) );
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5302
                }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5303
                RETURN ( __MKCHARACTER(ch) );
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5304
            }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5305
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5306
            __INST(position) = nil;
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5307
            if (ret < 0) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5308
                error = __mkSmallInteger(__threadErrno);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5309
            } else /* ret == 0 */ {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5310
                __INST(hitEOF) = true;
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5311
            }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5312
        }
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5313
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5314
%}.
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5315
    hitEOF ifTrue:[^ nil].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5316
    error notNil ifTrue:[
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5317
        lastErrorNumber := error.
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5318
        ^ self readError:error.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5319
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5320
    handle isNil ifTrue:[^ self errorNotOpen].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5321
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5322
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5323
    readAhead notNil ifTrue:[
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5324
        c := readAhead.
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5325
        readAhead := nil.
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5326
        ^ c.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5327
    ].
20679
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  5328
8c5a5321d13f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20675
diff changeset
  5329
    "unknown handleType - future"
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5330
    c := self nextByteFromFile:handle.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5331
    c isNil ifTrue:[
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5332
        ^ nil.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5333
    ].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5334
    binary == true ifTrue:[
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5335
        ^ c
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5336
    ].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5337
    ^ Character value:c
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5338
!
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5339
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5340
peek
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5341
    "return the element to be read next without advancing read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5342
     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
  5343
     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
  5344
     - see #pastEndRead."
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5345
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5346
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5347
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5348
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5349
    unsigned char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5350
    int ret, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  5351
    OBJ fp;
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5352
    OBJ ra;
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5353
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5354
    if ((ra = __INST(readAhead)) != nil) {
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5355
        if (__INST(binary) == true) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5356
            RETURN ( ra );
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5357
        }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5358
        c = __intVal(ra);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5359
        RETURN ( __MKCHARACTER(c) );
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  5360
    }
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  5361
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5362
    __INST(lastErrorNumber) = nil;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5363
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5364
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5365
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5366
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5367
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5368
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5369
        if (((fp = __INST(handle)) != nil)
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5370
            && (__INST(mode) != @symbol(writeonly))
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5371
        ) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5372
            f = __FILEVal(fp);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5373
            _buffered = (__INST(buffered) == true);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5374
            if (_buffered) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5375
                __READING__(f)
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5376
            }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5377
            __READBYTE__(ret, f, &c, _buffered, __INST(handleType));
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5378
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5379
            if (ret > 0) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5380
                __UNGETC__(c, f, _buffered);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5381
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5382
                if (__INST(binary) == true) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5383
                    RETURN ( __mkSmallInteger(c) );
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5384
                }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5385
                RETURN ( __MKCHARACTER(c) );
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5386
            }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5387
            if (ret < 0) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5388
                error = __mkSmallInteger(__threadErrno);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5389
            } else /* ret == 0 */ {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5390
                __INST(hitEOF) = true;
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5391
            }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5392
        }
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5393
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  5394
%}.
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5395
    hitEOF ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5396
    error notNil ifTrue:[
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5397
        lastErrorNumber := error.
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5398
        ^ self readError:error.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5399
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5400
    handle isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5401
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5402
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5403
    readAhead isNil ifTrue:[
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5404
        readAhead := self nextOrNil.
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5405
        readAhead isNil ifTrue:[
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5406
            ^ self pastEndRead.
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5407
        ].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5408
    ].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5409
    ^ readAhead
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5410
!
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5411
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5412
peekOrNil
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5413
    "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
  5414
     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
  5415
     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
  5416
     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
  5417
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5418
    |error|
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5419
%{
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5420
    FILEPOINTER f;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5421
    unsigned char c;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5422
    int ret, _buffered;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5423
    OBJ fp;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5424
    OBJ ra;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5425
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5426
    if ((ra = __INST(readAhead)) != nil) {
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5427
        if (__INST(binary) == true) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5428
            RETURN ( ra );
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5429
        }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5430
        c = __intVal(ra);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5431
        RETURN ( __MKCHARACTER(c) );
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5432
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5433
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5434
    __INST(lastErrorNumber) = nil;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5435
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5436
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5437
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5438
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5439
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5440
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5441
        if (((fp = __INST(handle)) != nil)
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5442
            && (__INST(mode) != @symbol(writeonly))
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5443
        ) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5444
            f = __FILEVal(fp);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5445
            _buffered = (__INST(buffered) == true);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5446
            if (_buffered) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5447
                __READING__(f)
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5448
            }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5449
            __READBYTE__(ret, f, &c, _buffered, __INST(handleType));
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5450
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5451
            if (ret > 0) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5452
                __UNGETC__(c, f, _buffered);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5453
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5454
                if (__INST(binary) == true) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5455
                    RETURN ( __mkSmallInteger(c) );
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5456
                }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5457
                RETURN ( __MKCHARACTER(c) );
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5458
            }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5459
            if (ret < 0) {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5460
                error = __mkSmallInteger(__threadErrno);
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5461
            } else /* ret == 0 */ {
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5462
                __INST(hitEOF) = true;
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5463
            }
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5464
        }
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5465
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5466
%}.
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5467
    hitEOF ifTrue:[^ nil].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5468
    error notNil ifTrue:[
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5469
        lastErrorNumber := error.
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5470
        ^ self readError:error.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5471
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5472
    handle isNil ifTrue:[^ self errorNotOpen].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5473
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5474
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5475
    readAhead isNil ifTrue:[
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5476
        readAhead := self nextOrNil.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5477
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5478
    ^ readAhead
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5479
!
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5480
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5481
upToEnd
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5482
    "return a collection of the elements up-to the end.
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5483
     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
  5484
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5485
    |chunkSize chunks sizes byteCount data offset|
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5486
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5487
    "adding to a ByteArray produces quadratic time-space
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5488
     behavior - therefore we allocate chunks, and concatenate them
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5489
     at the end."
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5490
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5491
    chunkSize := 4096.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5492
    byteCount := 0.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5493
    [self atEnd] whileFalse:[
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5494
        |chunk cnt|
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5495
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5496
        chunk := self contentsSpecies uninitializedNew:chunkSize.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5497
        cnt := self nextBytes:chunkSize into:chunk startingAt:1.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5498
        cnt ~~ 0 ifTrue:[
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5499
            chunks isNil ifTrue:[
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5500
                (cnt < chunkSize and:[self atEnd]) ifTrue:[
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5501
                    "all data is in a single chunk, so we are done"
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5502
                    ^ chunk copyFrom:1 to:cnt.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5503
                ].
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5504
                chunks := OrderedCollection new.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5505
                sizes := OrderedCollection new.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5506
            ].
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5507
            chunks add:chunk.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5508
            sizes add:cnt.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5509
            byteCount := byteCount + cnt
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5510
        ]
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5511
    ].
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5512
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5513
    "now, create one big array"
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5514
    data := self contentsSpecies uninitializedNew:byteCount.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5515
    offset := 1.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5516
    1 to:chunks size do:[:index |
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5517
        |chunk cnt|
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5518
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5519
        chunk := chunks at:index.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5520
        cnt := sizes at:index.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5521
        data replaceFrom:offset to:(offset + cnt - 1) with:chunk startingAt:1.
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5522
        offset := offset + cnt
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5523
    ].
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5524
    ^ data
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5525
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5526
7054
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  5527
    "
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5528
     '/dev/null' asFilename readStream upToEnd
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5529
     '/proc/self/stat' asFilename readStream upToEnd
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5530
20241
2c64d1957365 #OTHER by mawalch
mawalch
parents: 20147
diff changeset
  5531
     self assert:('smalltalk.rc' asFilename readStream upToEnd size)
20092
1b8ff1425c9b #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20064
diff changeset
  5532
                  =  ('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
  5533
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5534
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5535
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5536
!ExternalStream methodsFor:'rel5 protocol'!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5537
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5538
atEndFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5539
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5540
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5541
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5542
!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5543
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5544
nextByteFromFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5545
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5546
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5547
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5548
!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5549
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5550
nextPutByte:aByte toFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5551
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5552
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5553
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5554
! !
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5555
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5556
!ExternalStream methodsFor:'testing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5557
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5558
atEnd
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5559
    "return true, if position is at end.
21032
499174d72844 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21007
diff changeset
  5560
     If a stream is at the end, the next read operation
499174d72844 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21007
diff changeset
  5561
     would return or raise an exception immediately without waiting.
499174d72844 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 21007
diff changeset
  5562
     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
  5563
     (see NonPositionableExternalStream)"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5564
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5565
%{
21221
086752a8ec62 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21139
diff changeset
  5566
    OBJ fp, lim;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5567
    char c;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5568
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5569
    if (__INST(hitEOF) == true) {
20380
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5570
        RETURN (true);
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5571
    }
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5572
    lim = __INST(readLimit);
21221
086752a8ec62 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21139
diff changeset
  5573
    if (lim != nil && __signedLongIntVal(__INST(position)) >= __signedLongIntVal(lim)) {
086752a8ec62 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21139
diff changeset
  5574
        RETURN (true);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5575
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5576
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5577
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5578
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5579
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5580
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5581
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5582
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5583
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
20380
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5584
        if ((fp = __INST(handle)) != nil) {
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5585
            int _buffered = (__INST(buffered) == true);
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5586
            int ret;
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5587
            FILEPOINTER f = __FILEVal(fp);
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5588
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5589
            if (_buffered) {
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5590
                __READING__(f);
21221
086752a8ec62 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21139
diff changeset
  5591
            } else if (__INST(readAhead) != nil) {
086752a8ec62 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21139
diff changeset
  5592
                RETURN (false);
20380
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5593
            }
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5594
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5595
            /*
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5596
             * read ahead ...
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5597
             */
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5598
            do {
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  5599
#ifdef __win32__
20380
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5600
                __READBYTE__(ret, f, &c, _buffered, __INST(handleType));
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  5601
#else /* not __win32__ */
20380
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5602
                __BEGIN_INTERRUPTABLE__
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5603
                __READBYTE__(ret, f, &c, _buffered, __INST(handleType));
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5604
                __END_INTERRUPTABLE__
21221
086752a8ec62 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21139
diff changeset
  5605
#endif /* not __win32__ */
20380
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5606
            } while ((ret < 0) && (__threadErrno == EINTR));
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5607
            if (ret > 0) {
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5608
                __UNGETC__(c&0xff, f, _buffered);
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5609
                RETURN (false);
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5610
            }
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5611
            if (ret == 0) {
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5612
                __INST(hitEOF) = true;
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5613
                RETURN (true);
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5614
            }
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5615
            /* ret < 0 -> error */
20380
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5616
            __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
fc52f8c44127 #OTHER by mawalch
mawalch
parents: 20270
diff changeset
  5617
        }
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5618
        // we do not raise an error here - the next read operation will raise the error.
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5619
        RETURN(false);
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5620
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5621
%}.
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5622
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5623
    "/ we come here if the handle type is unknown 
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5624
    "/ migration support
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5625
    ^ self atEndFile:handle
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5626
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5627
    "Modified: / 30.10.1998 / 20:16:06 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5628
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5629
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5630
canReadWithoutBlocking
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5631
    "return true, if any data is available for reading (i.e.
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5632
     a read operation will not block the smalltalk process), false otherwise.
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5633
     We know, that error conditions do not block, so return true for errors."
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5634
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5635
    ^ readAhead notNil
21238
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5636
        or:[handle isNil
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5637
        or:[mode == #writeonly
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5638
        or:[OperatingSystem readCheck:self fileHandle]]]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5639
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5640
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5641
     |pipe|
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
     pipe := PipeStream readingFrom:'(sleep 10; echo hello)'.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5644
     pipe canReadWithoutBlocking ifTrue:[
21238
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5645
         Transcript showCR:'data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5646
     ] ifFalse:[
21238
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5647
         Transcript showCR:'no data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5648
     ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5649
     pipe close
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5650
    "
2986
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5651
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5652
    "Modified: 25.9.1997 / 13:08:45 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5653
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5654
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5655
canWriteWithoutBlocking
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5656
    "return true, if data can be written into the stream
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5657
     (i.e. a write operation will not block the smalltalk process).
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5658
     We know, that error conditions do not block, so return true for errors."
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5659
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5660
    ^ handle isNil
21238
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5661
        or:[mode == #readonly
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5662
        or:[OperatingSystem writeCheck:self fileHandle]]
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5663
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5664
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5665
gotErrorOrEOF
20675
36768de73391 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20571
diff changeset
  5666
    "answer true, if amn error or eof has been occurred on the stream"
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5667
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5668
    ^ hitEOF or:[lastErrorNumber notNil]
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5669
!
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5670
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5671
isBinary
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5672
    "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
  5673
     The default when created is false."
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5674
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5675
    ^ binary
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5676
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5677
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5678
isBlocking
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5679
    "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
  5680
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5681
    handle isNil ifTrue:[^ self errorNotOpen].
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5682
    ^ OperatingSystem isBlockingOn:self fileDescriptor
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5683
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5684
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5685
isExternalStream
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5686
    "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
  5687
     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
  5688
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5689
    ^ true
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5690
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5691
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5692
isOpen
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5693
    "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
  5694
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5695
    ^ handle notNil
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5696
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5697
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5698
isReadable
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5699
    "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
  5700
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5701
    ^ mode ~~ #writeonly
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5702
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5703
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5704
isWritable
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5705
    "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
  5706
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5707
    ^ mode ~~ #readonly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5708
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5709
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5710
!ExternalStream methodsFor:'waiting for I/O'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5711
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5712
canBeSelected
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5713
    "return true, if this stream can be selected upon"
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5714
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5715
    ^ OperatingSystem supportsSelect
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5716
!
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5717
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5718
numAvailableForRead
20241
2c64d1957365 #OTHER by mawalch
mawalch
parents: 20147
diff changeset
  5719
    "answer the number of bytes available for reading"
2c64d1957365 #OTHER by mawalch
mawalch
parents: 20147
diff changeset
  5720
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5721
    |available|
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5722
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5723
    handle isNil ifTrue:[
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5724
        ^ self errorNotOpen
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5725
    ].
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5726
    mode == #writeonly ifTrue:[
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5727
        ^ self errorWriteOnly
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5728
    ].
21238
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5729
    available := OperatingSystem numAvailableForReadOn:self fileHandle.
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5730
    readAhead notNil ifTrue:[
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5731
        available := available + 1
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5732
    ].
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5733
    ^ available.
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5734
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5735
    "
21130
a3a7d6f1a3b8 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21097
diff changeset
  5736
        '/etc/hosts' asFilename readStream numAvailableForRead
a3a7d6f1a3b8 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21097
diff changeset
  5737
    "
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5738
!
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5739
18327
57a095b55d92 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 18312
diff changeset
  5740
readWaitWithTimeoutMs:timeoutOrNil
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5741
    "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
  5742
     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
  5743
     If data is already available, return immediate.
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5744
     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
  5745
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5746
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5747
    |fd inputSema hasTimedout wasBlocked|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5748
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5749
    readAhead notNil ifTrue:[^ false].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5750
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5751
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5752
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5753
21238
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5754
    fd := self fileHandle.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5755
    (OperatingSystem readCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5756
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5757
    "cannot do a readWait (which means possible suspend),
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5758
     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
  5759
     during early startup.
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5760
     This may happen, for example, if a MiniDebugger is entered, before
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5761
     process scheduling has been setup.
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5762
     In this case, all I/O operations here will be blocking."
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5763
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5764
    Smalltalk isInitialized ifFalse:[ ^ false ].
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5765
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5766
    wasBlocked := OperatingSystem blockInterrupts.
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5767
    inputSema := Semaphore new name:'readWait'.
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5768
    [
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5769
        timeoutOrNil notNil ifTrue:[
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5770
            Processor signal:inputSema afterMilliseconds:timeoutOrNil.
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5771
        ].
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5772
        Processor signal:inputSema onInput:fd.
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5773
        Processor activeProcess state:#ioWait.
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5774
        inputSema wait.
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5775
        hasTimedout := timeoutOrNil notNil and:[(OperatingSystem readCheck:fd) not].
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5776
    ] ifCurtailed:[
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5777
        Processor disableSemaphore:inputSema.
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5778
        wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5779
    ].
18327
57a095b55d92 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 18312
diff changeset
  5780
    timeoutOrNil notNil ifTrue:[
20104
bd4f3a526e31 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20092
diff changeset
  5781
        Processor disableSemaphore:inputSema.
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5782
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5783
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5784
    ^ hasTimedout
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5785
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5786
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5787
readWriteWaitWithTimeoutMs:timeout
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5788
    "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
  5789
     becomes ready for reading or writing or a timeout (in milliseconds) expired.
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5790
     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
  5791
     Return immediate if the receiver is already ready.
5506
ffa0d32f4a51 Comment
Stefan Vogel <sv@exept.de>
parents: 5494
diff changeset
  5792
     The other threads are not affected by the wait."
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5793
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5794
    |fd sema hasTimedout wasBlocked|
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5795
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5796
    handle isNil ifTrue:[
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5797
        ^ self errorNotOpen
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5798
    ].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5799
21238
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5800
    fd := self fileHandle.
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5801
    (OperatingSystem readWriteCheck:fd) ifTrue:[^ false].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5802
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5803
    wasBlocked := OperatingSystem blockInterrupts.
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5804
    sema := Semaphore new name:'readWriteWait'.
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5805
    [
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5806
        timeout notNil ifTrue:[
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5807
            Processor signal:sema afterMilliseconds:timeout
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5808
        ].
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5809
        Processor signal:sema onOutput:fd.
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5810
        Processor signal:sema onInput:fd.
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5811
        Processor activeProcess state:#ioWait.
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5812
        sema wait.
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5813
        hasTimedout := timeout notNil and:[(OperatingSystem readWriteCheck:fd) not].
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5814
    ] ifCurtailed:[
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5815
        Processor disableSemaphore:sema.
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5816
        wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5817
    ].
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5818
    timeout notNil ifTrue:[
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5819
        Processor disableSemaphore:sema.
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5820
    ].
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5821
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5822
    ^ hasTimedout
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5823
!
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5824
18956
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5825
writeExceptionWaitWithTimeoutMs:timeout
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5826
    "suspend the current process, until the receiver
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5827
     becomes ready for reading or writing or a timeout (in milliseconds) expired.
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5828
     Return true if a timeout occurred (i.e. false, if data is available).
18956
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5829
     Return immediate if the receiver is already ready.
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5830
     The other threads are not affected by the wait."
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5831
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5832
    |fd sema hasTimedout wasBlocked|
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5833
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5834
    handle isNil ifTrue:[
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5835
        ^ self errorNotOpen
18956
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5836
    ].
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5837
21238
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5838
    fd := self fileHandle.
18956
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5839
    (OperatingSystem writeExceptionCheck:fd) ifTrue:[^ false].
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5840
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5841
    wasBlocked := OperatingSystem blockInterrupts.
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5842
    sema := Semaphore new name:'writeExceptionWait'.
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5843
    [
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5844
        timeout notNil ifTrue:[
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5845
            Processor signal:sema afterMilliseconds:timeout
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5846
        ].
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5847
        Processor signal:sema onOutput:fd.
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5848
        Processor signal:sema onException:fd.
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5849
        Processor activeProcess state:#ioWait.
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5850
        sema wait.
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5851
        hasTimedout := timeout notNil and:[(OperatingSystem readWriteCheck:fd) not].
18956
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5852
    ] ifCurtailed:[
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5853
        Processor disableSemaphore:sema.
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5854
        wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
18956
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5855
    ].
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5856
    timeout notNil ifTrue:[
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5857
        Processor disableSemaphore:sema.
18956
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5858
    ].
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5859
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5860
    ^ hasTimedout
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5861
!
9ef063595474 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18929
diff changeset
  5862
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5863
writeWaitWithTimeoutMs:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5864
    "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
  5865
     becomes ready for writing or a timeout (in milliseconds) expired.
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5866
     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
  5867
     Return immediate if the receiver is already ready.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5868
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5869
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5870
    |fd outputSema hasTimedout wasBlocked|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5871
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5872
    handle isNil ifTrue:[
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5873
        ^ self errorNotOpen
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5874
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5875
    mode == #readonly ifTrue:[
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5876
        ^ self errorReadOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5877
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5878
21238
3ee68e64910a #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21232
diff changeset
  5879
    fd := self fileHandle.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5880
    (OperatingSystem writeCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5881
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5882
    wasBlocked := OperatingSystem blockInterrupts.
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5883
    outputSema := Semaphore new name:'writeWait'.
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5884
    [
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5885
        timeout notNil ifTrue:[
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5886
            Processor signal:outputSema afterMilliseconds:timeout
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5887
        ].
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5888
        Processor signal:outputSema onOutput:fd.
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5889
        Processor activeProcess state:#ioWait.
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5890
        outputSema wait.
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5891
        hasTimedout := timeout notNil and:[(OperatingSystem writeCheck:fd) not].
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5892
    ] ifCurtailed:[
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5893
        Processor disableSemaphore:outputSema.
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5894
        wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5895
    ].
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5896
    timeout notNil ifTrue:[
20259
f32b555840f0 #OTHER by mawalch
mawalch
parents: 20241
diff changeset
  5897
        Processor disableSemaphore:outputSema.
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5898
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5899
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5900
    ^ hasTimedout
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5901
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5902
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5903
!ExternalStream methodsFor:'writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5904
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5905
cr
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5906
    "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
  5907
     reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5908
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5909
%{
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5910
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5911
     || (__INST(handleType) == @symbol(filePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5912
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5913
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5914
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
20795
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5915
        OBJ fp;
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5916
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5917
        __INST(lastErrorNumber) = nil;
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5918
        if (((fp = __INST(handle)) != nil)
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5919
         && (__INST(mode) != @symbol(readonly))
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5920
         && (__INST(binary) != true)
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5921
        ) {
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5922
            FILEPOINTER f = __FILEVal(fp);
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5923
            int _buffered = (__INST(buffered) == true);
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5924
            int len, cnt;
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5925
            char *cp;
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5926
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5927
            if (_buffered) {
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5928
                __WRITING__(f)
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5929
            }
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5930
            {
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5931
                OBJ mode = __INST(eolMode);
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5932
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5933
                if (mode == @symbol(cr)) {
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5934
                    cp = "\r"; len = 1;
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5935
                } else if (mode == @symbol(crlf)) {
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5936
                    cp = "\r\n"; len = 2;
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5937
                } else if (mode == @symbol(eot)) {
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5938
                    cp = "\004"; len = 1;
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5939
                } else if (mode == @symbol(etx)) {
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5940
                    cp = "\003"; len = 1;
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5941
                } else {
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5942
                    cp = "\n"; len = 1;
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5943
                }
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5944
            }
18514
acbf73341410 Fix for MING32/MING64: threat stdout/stderr as normal files
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18374
diff changeset
  5945
#if defined(WIN32) && !defined(__MINGW__)
20795
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5946
            if ((f == __win32_stdout()) || (f == __win32_stderr())) {
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5947
                cnt = __win32_fwrite(cp, 1, len, f);
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5948
            } else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5949
#endif
20795
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5950
            {
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5951
                __WRITEBYTES__(cnt, f, cp, len, _buffered, __INST(handleType));
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5952
            }
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5953
            if (cnt == len) {
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5954
                if (__isSmallInteger(__INST(position))) {
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5955
                    INT np = __intVal(__INST(position)) + len;
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5956
                    OBJ t;
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5957
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5958
                    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5959
                } else {
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5960
                    __INST(position) = nil; /* i.e: don't know */
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5961
                }
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5962
                RETURN ( self );
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5963
            }
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5964
            __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5965
        }
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5966
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5967
%}.
2326
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5968
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5969
    handle isNil ifTrue:[self errorNotOpen. ^ self].
2326
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5970
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  5971
    binary ifTrue:[self errorBinary. ^ self].
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5972
17426
6e49243ce4e0 fix: code treated everything but nl,cr,crnl symbols als cr (by accident).
Claus Gittinger <cg@exept.de>
parents: 17420
diff changeset
  5973
    (eolMode == #cr) ifTrue:[
20795
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5974
        self nextPut:(Character return).
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5975
        ^ 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
  5976
    ].
6e49243ce4e0 fix: code treated everything but nl,cr,crnl symbols als cr (by accident).
Claus Gittinger <cg@exept.de>
parents: 17420
diff changeset
  5977
    (eolMode == #crlf) ifTrue:[
20795
1bce9acbd4c8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20744
diff changeset
  5978
        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
  5979
    ].
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5980
    self nextPut:(Character nl).
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5981
    ^ self
612
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
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5984
flush
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5985
    "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
  5986
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5987
%{
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5988
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5989
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5990
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5991
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5992
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5993
	OBJ fp;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5994
	int _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5995
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5996
	if ((fp = __INST(handle)) != nil) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5997
	    if (__INST(mode) != @symbol(readonly)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5998
		if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  5999
		    FILEPOINTER f = __FILEVal(fp);
18514
acbf73341410 Fix for MING32/MING64: threat stdout/stderr as normal files
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18374
diff changeset
  6000
#if defined(WIN32) && !defined(__MINGW__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6001
		    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
  6002
			__win32_fflush(f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6003
		    } else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6004
			int rslt;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6005
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6006
			do {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6007
			    __threadErrno = 0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6008
			    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
  6009
			} while((rslt < 0) && (__threadErrno == EINTR));
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6010
		    }
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6011
#else /* ! __win32__ */
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6012
		    __BEGIN_INTERRUPTABLE__
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6013
		    FFLUSH(f);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6014
		    __END_INTERRUPTABLE__
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19767
diff changeset
  6015
#endif /* ! __win32__ */
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6016
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6017
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6018
	}
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  6019
    }
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  6020
%}
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  6021
!
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  6022
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6023
nextPut:aCharacter
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6024
    "write the argument, aCharacter - return nil if failed, self if ok.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6025
     Only single-byte characters are currently supported"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6026
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6027
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  6028
%{
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6029
#ifdef __SCHTEAM__
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6030
    STObject handle = self.instVarAt(I_handle);
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6031
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6032
    if ((handle != STObject.Nil)
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6033
     && (aCharacter.isSTCharacter())) {
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6034
        handle.writeChar( aCharacter );
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6035
        self.instVarAt_put(I_position, STObject.Nil);
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6036
        return __c__._RETURN_self();
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6037
    }
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6038
#else
17332
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6039
    __INST(lastErrorNumber) = nil;
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6040
    if ((__INST(handleType) == nil)
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6041
     || (__INST(handleType) == @symbol(filePointer))
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6042
     || (__INST(handleType) == @symbol(socketFilePointer))
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6043
     || (__INST(handleType) == @symbol(socketHandle))
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6044
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6045
        OBJ fp;
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6046
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6047
        if (((fp = __INST(handle)) != nil)
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6048
         && (__INST(mode) != @symbol(readonly))
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6049
        ) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6050
            FILEPOINTER f = __FILEVal(fp);
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6051
            int _buffered = (__INST(buffered) == true);
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6052
            int cnt;
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6053
            char buff[2];
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6054
            int nBytes = 1;
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6055
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6056
            if (__INST(binary) != true) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6057
                if (__isCharacter(aCharacter)) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6058
                    unsigned int codePoint = __intVal(__characterVal(aCharacter));
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6059
                    if (codePoint <= 0xFF) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6060
                        unsigned char c = codePoint;
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6061
                        buff[0] = c; nBytes = 1;
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6062
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6063
                        if (c == '\n') {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6064
                            OBJ mode = __INST(eolMode);
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6065
                            if (mode == @symbol(nl)) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6066
                                // no EOL translation
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6067
                            } else if (mode == nil) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6068
                                // no EOL translation
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6069
                            } else if (mode == @symbol(cr)) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6070
                                buff[0] = '\r';
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6071
                            } else if (mode == @symbol(eot)) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6072
                                buff[0] = '\004';
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6073
                            } else if (mode == @symbol(etx)) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6074
                                buff[0] = '\003';
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6075
                            } else if (mode == @symbol(crlf)) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6076
                                buff[0] = '\r';
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6077
                                buff[1] = '\n';
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6078
                                nBytes = 2;
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6079
                            }
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6080
                        }
17332
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6081
    doWrite:
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6082
                        if (! f) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6083
                            fprintf(stderr, "oops - fileHandle is NULL in nextPut:\n");
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6084
                            __INST(handle) = nil;
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6085
                            goto out;
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6086
                        }
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6087
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6088
                        if (_buffered) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6089
                            __WRITING__(f)
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6090
                        }
18514
acbf73341410 Fix for MING32/MING64: threat stdout/stderr as normal files
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18374
diff changeset
  6091
#if defined(WIN32) && !defined(__MINGW__)
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6092
                        if ((f == __win32_stdout()) || (f == __win32_stderr())) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6093
                            cnt = __win32_fwrite(buff, 1, nBytes, f);
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6094
                        } else
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6095
# endif
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6096
                        {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6097
                            __WRITEBYTES__(cnt, f, buff, nBytes, _buffered, __INST(handleType));
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6098
                        }
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6099
                        if (cnt == nBytes) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6100
                            if (__isSmallInteger(__INST(position))) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6101
                                INT np = __intVal(__INST(position)) + nBytes;
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6102
                                OBJ t;
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6103
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6104
                                t = __MKINT(np); __INST(position) = t; __STORE(self, t);
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6105
                            } else {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6106
                                __INST(position) = nil; /* i.e. do not know */
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6107
                            }
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6108
                            RETURN ( self );
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6109
                        }
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6110
                        error = __mkSmallInteger(__threadErrno);
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6111
                    }
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6112
                }
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6113
            } else {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6114
                if (__isSmallInteger(aCharacter)) {
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6115
                    unsigned char c = __intVal(aCharacter);
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6116
                    buff[0] = c; nBytes = 1;
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6117
                    goto doWrite;
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6118
                }
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6119
            }
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6120
        }
17332
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6121
    }
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6122
out: ;
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6123
#endif /* not SCHTEAM */
17332
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6124
%}.
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6125
    error notNil ifTrue:[
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6126
        lastErrorNumber := error.
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6127
        self writeError:error.
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6128
        ^ self
17332
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6129
    ].
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6130
    handle isNil ifTrue:[self errorNotOpen. ^ self].
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6131
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6132
    binary == true ifTrue:[
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6133
        aCharacter isInteger ifFalse:[
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6134
            self argumentMustBeInteger.
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6135
            ^ self.
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6136
        ].
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6137
    ] ifFalse:[
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6138
        (aCharacter isCharacter not
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6139
         or:[aCharacter codePoint > 16rFF]) ifTrue:[
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6140
            self argumentMustBeCharacter.
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6141
            ^ self.
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6142
        ].
17332
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6143
    ].
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6144
    "/ migration support
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6145
    self
21139
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6146
        nextPutByte:aCharacter asInteger
eed3da14afff #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21130
diff changeset
  6147
        toFile:handle
17332
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6148
!
f223abac93ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17115
diff changeset
  6149
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6150
nextPutAll:aCollection
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6151
    "write all elements of the argument, aCollection.
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6152
     Reimplemented for speed when writing strings or byteArrays.
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6153
     For others, falls back to general method in superclass."
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6154
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6155
    |error|
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6156
%{
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6157
#ifdef __SCHTEAM__
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6158
    STObject handle = self.instVarAt(I_handle);
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6159
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6160
    if ((handle != STObject.Nil)
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6161
     && (aCollection.isSTString())) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6162
	handle.writeCharacters( aCollection.asSTString().characters );
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6163
	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
  6164
	return __c__._RETURN_self();
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6165
    }
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6166
#else
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6167
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6168
    __INST(lastErrorNumber) = nil;
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6169
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6170
    if ((__INST(handleType) == nil)
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6171
     || (__INST(handleType) == @symbol(filePointer))
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6172
     || (__INST(handleType) == @symbol(socketFilePointer))
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6173
     || (__INST(handleType) == @symbol(socketHandle))
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6174
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6175
	OBJ fp;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6176
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6177
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6178
	    && (__INST(mode) != @symbol(readonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6179
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6180
	    INT len, cnt;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6181
	    INT o_offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6182
	    FILEPOINTER f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6183
	    int _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6184
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6185
	    if (! f) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6186
		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
  6187
		__INST(handle) = nil;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6188
		goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6189
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6190
	    if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6191
		__WRITING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6192
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6193
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6194
	    if (__isStringLike(aCollection)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6195
		OBJ mode = __INST(eolMode);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6196
		char *stringP = __stringVal(aCollection);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6197
		len = __stringSize(aCollection);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6198
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6199
		if (__INST(binary) != true
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6200
		    && ((mode == @symbol(cr))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6201
			|| (mode == @symbol(etx))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6202
			|| (mode == @symbol(eot))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6203
			|| (mode == @symbol(crlf)))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6204
		    && memchr(stringP, '\n', len) != NULL)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6205
		{
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6206
		    // 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
  6207
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6208
		    char *end;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6209
		    char sep[2];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6210
		    int sepLen = 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6211
		    int bufLen;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6212
		    char *buf, *endBuf, *sp, *dp;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6214
		    sep[0] = '\n';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6215
		    if (mode == @symbol(crlf)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6216
			 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
  6217
		    } else if (mode == @symbol(cr)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6218
			 sep[0] = '\r';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6219
		    } else if (mode == @symbol(eot)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6220
			 sep[0] = '\004';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6221
		    } else if (mode == @symbol(etx)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6222
			 sep[0] = '\003';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6223
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6224
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6225
		    // 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
  6226
		    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
  6227
		    buf = (char *)malloc(bufLen);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6228
		    if (buf == NULL) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6229
			error = __mkSmallInteger(ENOMEM);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6230
			goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6231
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6232
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6233
		    endBuf = buf + bufLen;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6234
		    end = stringP + len;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6235
		    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
  6236
			char c;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6237
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6238
			if ((dp+sepLen) >= endBuf) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6239
			    char *newBuf;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6240
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6241
			    bufLen = bufLen * 2;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6242
			    newBuf = (char *)realloc(buf, bufLen);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6243
			    if (newBuf == NULL) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6244
				free(buf);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6245
				error = __mkSmallInteger(ENOMEM);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6246
				goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6247
			    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6248
			    endBuf = newBuf + bufLen;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6249
			    dp = newBuf + (dp-buf);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6250
			    buf = newBuf;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6251
			}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6252
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6253
			if ((c = *sp) != '\n') {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6254
			    *dp++ = c;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6255
			} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6256
			    *dp++ = sep[0];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6257
			    if (sepLen == 2) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6258
				*dp++ = sep[1];
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
			}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6261
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6262
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6263
		    len = dp - buf;
18514
acbf73341410 Fix for MING32/MING64: threat stdout/stderr as normal files
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18374
diff changeset
  6264
#if defined(WIN32) && !defined(__MINGW__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6265
		    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
  6266
			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
  6267
		    } else
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6268
# endif
19213
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
			__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
  6271
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6272
		    free(buf);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6273
		} else  {  // No EOL conversion needed
18514
acbf73341410 Fix for MING32/MING64: threat stdout/stderr as normal files
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18374
diff changeset
  6274
#if defined(WIN32) && !defined(__MINGW__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6275
		    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
  6276
			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
  6277
		    } else
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6278
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6279
		    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6280
			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
  6281
			__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
  6282
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6283
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6284
	    } else {   // Not a String
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6285
		if (__INST(binary) == true) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6286
		    INT offs;
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
		    if (__isByteArrayLike(aCollection)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6289
			offs = 0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6290
			len = __byteArraySize(aCollection);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6291
		    } else if (__isBytes(aCollection)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6292
			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
  6293
			len = __byteArraySize(aCollection) - offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6294
		    } else
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6295
			goto out;
18514
acbf73341410 Fix for MING32/MING64: threat stdout/stderr as normal files
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18374
diff changeset
  6296
#if defined(WIN32) && !defined(__MINGW__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6297
		    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
  6298
			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
  6299
		    } else
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6300
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6301
		    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6302
			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
  6303
			o_offs += offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6304
			__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
  6305
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6306
		} else  // Not binary mode
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6307
		    goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6308
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6309
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6310
	    // Now check for errors
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6311
	    if (cnt == len) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6312
		if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6313
		    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
  6314
		    OBJ t;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6315
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6316
		    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
  6317
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6318
		    __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
  6319
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6320
		RETURN (self);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6321
	    }
19993
67164d044887 compiler warnings
Claus Gittinger <cg@exept.de>
parents: 19866
diff changeset
  6322
	    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
  6323
	    error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6324
	}
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6325
    }
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6326
out: ;
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6327
#endif /* not SCHTEAM */
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6328
%}.
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6329
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6330
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6331
	self writeError:error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6332
	^ self
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6333
    ].
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6334
    handle isNil ifTrue:[self errorNotOpen. ^ self].
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6335
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6336
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6337
    ^ super nextPutAll:aCollection
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6338
!
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6339
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6340
nextPutAll:initialWriteCount from:buffer startingAt:initialOffset
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6341
    "redefined, to wait until stream is writable, to avoid blocking in a write.
20270
d2c92e7e2294 #DOCUMENTATION by mawalch
mawalch
parents: 20259
diff changeset
  6342
     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
  6343
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6344
    buffer isByteCollection ifTrue:[
20270
d2c92e7e2294 #DOCUMENTATION by mawalch
mawalch
parents: 20259
diff changeset
  6345
        ^ self nextPutBytes:initialWriteCount from:buffer startingAt:initialOffset.
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6346
    ].
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6347
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6348
    ^ super nextPutAll:initialWriteCount from:buffer startingAt:initialOffset
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6349
!
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6350
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6351
nextPutAll:aCollection startingAt:start to:stop
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6352
    "write a range of elements of the argument, aCollection.
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6353
     Reimplemented for speed when writing strings or byteArrays.
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6354
     For others, falls back to general method in superclass."
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6355
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6356
     |error|
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6357
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6358
%{
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6359
    __INST(lastErrorNumber) = nil;
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6360
    if ((__INST(handleType) == nil)
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6361
     || (__INST(handleType) == @symbol(filePointer))
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6362
     || (__INST(handleType) == @symbol(socketFilePointer))
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6363
     || (__INST(handleType) == @symbol(socketHandle))
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6364
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6365
	OBJ fp = __INST(handle);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6366
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6367
	if ((fp != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6368
	 && (__INST(mode) != @symbol(readonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6369
	 && __bothSmallInteger(start, stop)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6370
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6371
	    int _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6372
	    FILEPOINTER f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6373
	    int offs, len, cnt;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6374
	    int iStart = __intVal(start);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6375
	    int iStop = __intVal(stop);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6376
	    int o_offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6377
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6378
	    if (_buffered ) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6379
		__WRITING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6380
	    }
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
	    if ((iStart < 1) || (iStop < iStart)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6383
		RETURN(self);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6384
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6385
	    if (__isStringLike(aCollection)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6386
		char *stringP;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6387
		OBJ mode = __INST(eolMode);
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
		len = __stringSize(aCollection);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6390
		if (iStop > len) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6391
		    RETURN(self);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6392
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6393
		if (iStop > len)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6394
		    iStop = len;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6395
		len = iStop - iStart + 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6396
		stringP = __stringVal(aCollection) + iStart - 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6397
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6398
		if (__INST(binary) != true
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6399
		    && ((mode == @symbol(cr))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6400
			|| (mode == @symbol(etx))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6401
			|| (mode == @symbol(eot))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6402
			|| (mode == @symbol(crlf)))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6403
		    && memchr(stringP, '\n', len) != NULL)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6404
		{
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6405
		    // 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
  6406
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6407
		    char *end = stringP + len;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6408
		    char sep[2];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6409
		    int sepLen = 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6410
		    int bufLen;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6411
		    char *buf, *endBuf, *sp, *dp;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6412
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6413
		    sep[0] = '\n';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6414
		    if (mode == @symbol(crlf)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6415
			 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
  6416
		    } else if (mode == @symbol(cr)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6417
			 sep[0] = '\r';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6418
		    } else if (mode == @symbol(eot)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6419
			 sep[0] = '\004';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6420
		    } else if (mode == @symbol(etx)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6421
			 sep[0] = '\003';
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6422
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6423
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6424
		    // 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
  6425
		    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
  6426
		    buf = (char *)malloc(bufLen);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6427
		    if (buf == NULL) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6428
			error = __mkSmallInteger(ENOMEM);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6429
			goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6430
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6431
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6432
		    endBuf = buf + bufLen;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6433
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6434
		    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
  6435
			char c;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6436
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6437
			if ((dp+sepLen) >= endBuf) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6438
			    char *newBuf;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6439
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6440
			    bufLen = bufLen * 2;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6441
			    newBuf = (char *)realloc(buf, bufLen);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6442
			    if (newBuf == NULL) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6443
				free(buf);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6444
				error = __mkSmallInteger(ENOMEM);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6445
				goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6446
			    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6447
			    endBuf = newBuf + bufLen;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6448
			    dp = newBuf + (dp-buf);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6449
			    buf = newBuf;
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
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6452
			if ((c = *sp) == '\n') {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6453
			    *dp++ = sep[0];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6454
			    if (sepLen == 2) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6455
				*dp++ = sep[1];
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6456
			    };
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6457
			} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6458
			    *dp++ = c;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6459
			}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6460
		    }
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
		    len = dp - buf;
18514
acbf73341410 Fix for MING32/MING64: threat stdout/stderr as normal files
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18374
diff changeset
  6463
#if defined(WIN32) && !defined(__MINGW__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6464
		    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
  6465
			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
  6466
		    } else
17420
f0895ae69f69 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17418
diff changeset
  6467
#endif
19213
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
			__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
  6470
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6471
		    free(buf);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6472
		} else  {  // No EOL conversion needed
18514
acbf73341410 Fix for MING32/MING64: threat stdout/stderr as normal files
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18374
diff changeset
  6473
#if defined(WIN32) && !defined(__MINGW__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6474
		    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
  6475
			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
  6476
		    } else
17420
f0895ae69f69 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17418
diff changeset
  6477
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6478
		    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6479
			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
  6480
			__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
  6481
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6482
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6483
	    } else {  // Not a string
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6484
		if (__INST(binary) == true) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6485
		    int offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6486
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6487
		    if (__isByteArrayLike(aCollection)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6488
			offs = 0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6489
			len = __byteArraySize(aCollection);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6490
		    } else if (__isBytes(aCollection)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6491
			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
  6492
			len = __byteArraySize(aCollection) - offs;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6493
		    } else
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6494
			goto out;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6495
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6496
		    if (iStop > len) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6497
			RETURN(self);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6498
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6499
		    if (iStop > len)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6500
			iStop = len;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6501
		    len = iStop - iStart + 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6502
		    offs += iStart - 1;
18514
acbf73341410 Fix for MING32/MING64: threat stdout/stderr as normal files
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18374
diff changeset
  6503
#if defined(WIN32) && !defined(__MINGW__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6504
		    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
  6505
			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
  6506
		    } else
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6507
#endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6508
		    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6509
			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
  6510
			__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
  6511
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6512
		} else
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
	    if (cnt == len) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6516
		if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6517
		    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
  6518
		    OBJ t;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6519
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6520
		    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
  6521
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6522
		    __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
  6523
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6524
		RETURN (self);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6525
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6526
	    error = __mkSmallInteger(__threadErrno);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6527
	}
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6528
    }
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6529
out: ;
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6530
%}.
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6531
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6532
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6533
	self writeError:error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6534
	^ self
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6535
    ].
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6536
    ^ super nextPutAll:aCollection startingAt:start to:stop
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6537
!
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6538
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6539
nextPutAllUnicode:aString
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6540
    "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
  6541
     This is needed, so that you can do ('something' asUnicode16String errorPrintCR)"
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6542
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6543
    aString do:[:eachCharacter|
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6544
	self nextPutUtf8:eachCharacter.
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6545
    ].
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6546
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6547
    "
21024
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 20728 20795
diff changeset
  6548
	'Bnnigheim' asUnicode16String errorPrintCR
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6549
    "
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6550
!
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6551
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6552
nextPutBytes:count from:anObject startingAt:start
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6553
    "write count bytes from an object starting at index start.
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6554
     return the number of bytes written - which could be 0.
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6555
     The object must have non-pointer indexed instvars
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6556
     (i.e. be a ByteArray, String, Float- or DoubleArray),
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6557
     or an externalBytes object (with known size).
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6558
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6559
     Use with care - non object oriented i/o.
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6560
     Warning:
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6561
	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
  6562
	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
  6563
	since it does not care for byte order or float representation."
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6564
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6565
    |error|
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6566
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6567
%{
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6568
#ifdef __SCHTEAM__
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6569
    byte[] bytes;
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6570
    STObject handle = self.instVarAt(I_handle);
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6571
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6572
    if (anObject.isSTString()) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6573
	char[] chars = anObject.asSTString().characters;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6574
	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
  6575
	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
  6576
	return context._RETURN(count);
18364
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6577
    }
a693511a7c46 commnts only
Claus Gittinger <cg@exept.de>
parents: 18327
diff changeset
  6578
    if (anObject.isSymbol()) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6579
	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
  6580
	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
  6581
	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
  6582
	return context._RETURN(count);
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6583
    }
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6584
#else
18652
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  6585
    int ret;
ee5e81c67497 moved local C variables down into their blcoks
Claus Gittinger <cg@exept.de>
parents: 18636
diff changeset
  6586
    int objSize, nInstBytes;
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6587
    char *extPtr;
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6588
    OBJ fp;
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6589
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6590
    __INST(lastErrorNumber) = nil;
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6591
    if ((__INST(handleType) == nil)
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6592
     || (__INST(handleType) == @symbol(filePointer))
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6593
     || (__INST(handleType) == @symbol(socketFilePointer))
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6594
     || (__INST(handleType) == @symbol(socketHandle))
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6595
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6596
	if (((fp = __INST(handle)) != nil)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6597
	    && (__INST(mode) != @symbol(readonly))
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6598
	    && __bothSmallInteger(count, start)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6599
	) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6600
	    int _buffered = (__INST(buffered) == true);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6601
	    FILEPOINTER f = __FILEVal(fp);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6602
	    int len = __intVal(count);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6603
	    int offs = __intVal(start) - 1;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6604
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6605
	    if (__isExternalBytesLike(anObject)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6606
		OBJ sz;
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
		nInstBytes = 0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6609
		extPtr = (char *)__externalBytesAddress(anObject);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6610
		if (extPtr == NULL) goto bad;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6611
		sz = __externalBytesSize(anObject);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6612
		if (__isSmallInteger(sz)) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6613
		    objSize = __intVal(sz);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6614
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6615
		    objSize = 0; /* unknown */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6616
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6617
	    } else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6618
		OBJ oClass = __Class(anObject);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6619
		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
  6620
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6621
		nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6622
		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
  6623
		    case BYTEARRAY:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6624
		    case WORDARRAY:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6625
		    case LONGARRAY:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6626
		    case SWORDARRAY:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6627
		    case SLONGARRAY:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6628
		    case FLOATARRAY:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6629
			break;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6630
		    case DOUBLEARRAY:
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6631
# ifdef __NEED_DOUBLE_ALIGN
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6632
			nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1);
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6633
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6634
			break;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6635
		    case LONGLONGARRAY:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6636
		    case SLONGLONGARRAY:
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6637
# ifdef __NEED_LONGLONG_ALIGN
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6638
			nInstBytes = (nInstBytes-1+__LONGLONG_ALIGN) &~ (__LONGLONG_ALIGN-1);
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6639
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6640
			break;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6641
		    default:
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6642
			goto bad;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6643
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6644
		extPtr = (char *)0;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6645
		objSize = __Size(anObject) - nInstBytes;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6646
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6647
	    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
  6648
		int cnt;
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6649
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6650
		if (_buffered) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6651
		    __WRITING__(f)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6652
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6653
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6654
		if (extPtr) {
18514
acbf73341410 Fix for MING32/MING64: threat stdout/stderr as normal files
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18374
diff changeset
  6655
#if defined(WIN32) && !defined(__MINGW__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6656
		    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
  6657
			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
  6658
		    } else
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6659
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6660
		    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6661
			__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
  6662
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6663
		} else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6664
		    /*
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6665
		     * 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
  6666
		     * 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
  6667
		     */
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6668
		    offs += nInstBytes;
18514
acbf73341410 Fix for MING32/MING64: threat stdout/stderr as normal files
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18374
diff changeset
  6669
#if defined(WIN32) && !defined(__MINGW__)
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6670
		    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
  6671
			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
  6672
		    } else
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6673
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6674
		    {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6675
			 __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
  6676
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6677
		}
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6678
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6679
		if (cnt >= 0) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6680
		    if (__isSmallInteger(__INST(position))) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6681
			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
  6682
			OBJ t;
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
			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
  6685
		    } else {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6686
			__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
  6687
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6688
		    RETURN ( __mkSmallInteger(cnt) );
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6689
		} else /* cnt < 0 */ {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6690
		    if (
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6691
# ifdef EWOULDBLOCK
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6692
			(__threadErrno == EWOULDBLOCK) ||
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6693
# endif
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6694
			(__threadErrno == EAGAIN)
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6695
		    ) {
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6696
			RETURN ( __mkSmallInteger(0) );
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6697
		    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6698
		    __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
  6699
		    error = __mkSmallInteger(__threadErrno);
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
	    }
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6702
	}
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6703
    }
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6704
bad: ;
18312
b414c7a96a1e comment sonly
Claus Gittinger <cg@exept.de>
parents: 18218
diff changeset
  6705
#endif /* not SCHTEAM */
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6706
%}.
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6707
    error notNil ifTrue:[
19213
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6708
	lastErrorNumber := error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6709
	self writeError:error.
b990f28738b2 refactored to get rid of implizit sizeinnextPutXX:MSM:methods
Claus Gittinger <cg@exept.de>
parents: 19072
diff changeset
  6710
	^ 0
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6711
    ].
17634
76a10ce9c870 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17618
diff changeset
  6712
    handle isNil ifTrue:[self errorNotOpen. ^ 0].
76a10ce9c870 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17618
diff changeset
  6713
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ 0].
76a10ce9c870 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17618
diff changeset
  6714
    self primitiveFailed.
76a10ce9c870 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17618
diff changeset
  6715
    ^ 0.
17608
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6716
!
03f28a6ee650 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17533
diff changeset
  6717
17418
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6718
nextPutUnicode:aCharacter
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6719
    "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
  6720
e574f4adb86b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 17360
diff changeset
  6721
    self nextPutUtf8:aCharacter.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6722
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6723
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  6724
!ExternalStream class methodsFor:'documentation'!
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  6725
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  6726
version
18636
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  6727
    ^ '$Header$'
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  6728
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  6729
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  6730
version_CVS
18636
16d8110eb172 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 18372
diff changeset
  6731
    ^ '$Header$'
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  6732
! !
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  6733
14603
f73f90e25023 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14518
diff changeset
  6734
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6735
ExternalStream initialize!