ExternalStream.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 02 Jun 2014 13:50:27 +0200
changeset 16509 2cf139885242
parent 16508 f2d6afb19d35
child 16551 352de37575d7
permissions -rw-r--r--
Fixed ExternalStream>>tcgetattr Added iuclc temp var and add it into output value.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1988 by Claus Gittinger
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
    12
"{ Package: 'stx:libbasic' }"
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
    13
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    14
ReadWriteStream subclass:#ExternalStream
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    15
	instanceVariableNames:'handleType handle mode buffered binary eolMode hitEOF didWrite
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    16
		lastErrorNumber readAhead'
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    17
	classVariableNames:'Lobby LastErrorNumber InvalidReadSignal InvalidWriteSignal
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    18
		InvalidModeSignal OpenErrorSignal StreamNotOpenSignal
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    19
		InvalidOperationSignal DefaultEOLMode ReadMode ReadWriteMode
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    20
		WriteMode AppendMode CreateReadWriteMode StreamIOErrorSignal
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    21
		FileOpenTrace'
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    22
	poolDictionaries:''
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
    23
	category:'Streams-External'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    24
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    25
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    26
!ExternalStream primitiveDefinitions!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    27
%{
10328
ad731a7584a3 ensure that win32_fwrite is used for stdout and stderr
Claus Gittinger <cg@exept.de>
parents: 9053
diff changeset
    28
#undef fwrite
ad731a7584a3 ensure that win32_fwrite is used for stdout and stderr
Claus Gittinger <cg@exept.de>
parents: 9053
diff changeset
    29
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    30
#include <stdio.h>
437
claus
parents: 436
diff changeset
    31
#define _STDIO_H_INCLUDED_
claus
parents: 436
diff changeset
    32
2903
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    33
#ifndef NO_FCNTL_H
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    34
# include <fcntl.h>
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    35
# define _FCNTL_H_INCLUDED_
e64704e86cce various VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    36
#endif
437
claus
parents: 436
diff changeset
    37
10
claus
parents: 5
diff changeset
    38
#include <errno.h>
437
claus
parents: 436
diff changeset
    39
#define _ERRNO_H_INCLUDED_
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    40
1141
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    41
#ifdef LINUX
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    42
  /* use inline string macros */
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    43
# define __STRINGDEFS__
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    44
# include <linuxIntern.h>
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    45
#endif
8ea1b43f7034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
    46
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
    47
#if !defined(MSDOS_LIKE) && !defined(__openVMS__)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
    48
# include <termios.h>
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
    49
#endif
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
    50
42
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    51
#ifdef hpux
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    52
# define fileno(f)      ((f->__fileH << 8) | (f->__fileL))
e33491f6f260 *** empty log message ***
claus
parents: 38
diff changeset
    53
#endif
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    54
933
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    55
#ifndef SEEK_SET
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    56
# define SEEK_SET 0
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    57
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    58
#ifndef SEEK_CUR
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    59
# define SEEK_CUR 1
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    60
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    61
#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
    62
# 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
    63
#endif
2eebae059045 oops - when truncating buffered streams, we must flush & seek first (stdio trouble)
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
    64
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
    65
#if defined(__VMS__) || defined(__sparc__) || defined(WIN32)
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 5101
diff changeset
    66
# define CLEAR_ERRNO            __threadErrno = 0;
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    67
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
    68
# define CLEAR_ERRNO            /* nothing */
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    69
#endif
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
    70
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    71
#ifdef LATER
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    72
# define __isFilePointer(x)      (__Class(x) == ExternalStream__FilePointer)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    73
# define __CHANGECLASS(o, x)     (__qClass(o) = (x), o)
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    74
# define __MKFILEPOINTER(f)      __CHANGECLASS(__MKEXTERNALADDRESS(f), ExternalStream__FilePointer)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    75
#else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
    76
# define __MKFILEPOINTER(f)      __MKEXTERNALADDRESS(f)
3420
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    77
#endif
4dc6667afda9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3419
diff changeset
    78
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    79
#ifdef WIN32
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    80
# define NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    81
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    82
# undef __HANDLE_INTERRUPTS__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    83
# define __HANDLE_INTERRUPTS__    /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    84
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    85
# undef __BEGIN_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    86
# define __BEGIN_INTERRUPTABLE__  /* nothing */
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    87
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    88
# undef __END_INTERRUPTABLE__
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    89
# define __END_INTERRUPTABLE__    /* nothing */
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
    90
#endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
    91
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
    92
# ifdef __i386__
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    93
#  define _X86_
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    94
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    95
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
    96
#ifdef WIN32
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    97
# undef INT
14644
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
    98
# undef UINT
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
    99
# undef Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   100
# undef Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   101
# undef Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   102
# undef Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   103
# undef Rectangle
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   104
# undef Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   105
# undef Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   106
# undef Date
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   107
# undef Delay
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   108
# undef Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   109
# undef Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   110
# undef Context
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   111
# undef Message
9024
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   112
# undef Process
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   113
# undef Processor
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   114
# undef String
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   115
# undef Character
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   116
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   117
# define NOATOM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   118
# define NOGDICAPMASKS
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   119
# define NOMETAFILE
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   120
# define NOMINMAX
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
   121
//# define NOOPENFILE
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   122
# define NOSOUND
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   123
# define NOWH
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   124
//# define NOCOMM
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   125
# define NOKANJI
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   126
# define NOCRYPT
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   127
//# define NOMCX
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   128
# define WIN32_LEAN_AND_MEAN
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   129
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   130
# include <windows.h>
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
   131
# include <winsock2.h>
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   132
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   133
# ifdef __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   134
#  define Array __DEF_Array
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   135
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   136
# ifdef __DEF_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   137
#  define Number __DEF_Number
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   138
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   139
# ifdef __DEF_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   140
#  define Method __DEF_Method
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   141
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   142
# ifdef __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   143
#  define Point __DEF_Point
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   144
# endif
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   145
# ifdef __DEF_Block
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   146
#  define Block __DEF_Block
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_Time
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   149
#  define Time __DEF_Time
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_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   152
#  define Date __DEF_Date
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   153
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   154
# ifdef __DEF_Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   155
#  define Set __DEF_Set
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   156
# endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   157
# ifdef __DEF_Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   158
#  define Signal __DEF_Signal
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   159
# endif
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   160
# ifdef __DEF_Delay
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   161
#  define Delay __DEF_Delay
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
   162
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   163
# ifdef __DEF_Context
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   164
#  define Context __DEF_Context
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   165
# endif
9023
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   166
# ifdef __DEF_Message
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   167
#  define Message __DEF_Message
7919c66b8fb0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9002
diff changeset
   168
# endif
9024
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   169
# ifdef __DEF_Process
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   170
#  define Process __DEF_Process
8066b17d9ccf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9023
diff changeset
   171
# endif
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   172
# ifdef __DEF_Processor
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   173
#  define Processor __DEF_Processor
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
   174
# endif
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   175
# ifdef __DEF_String
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   176
#  define String __DEF_String
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   177
# endif
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   178
# ifdef __DEF_Character
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   179
#  define Character __DEF_Character
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
   180
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   181
14644
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   182
# define INT    STX_INT
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   183
# define UINT   STX_UINT
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   184
# ifndef off_t
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   185
#  define off_t  long
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   186
# endif
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   187
#endif /* WIN32 */
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   188
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   189
#ifndef NO_STDIO /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   190
# define STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   191
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   192
# define READ(f, cp, n)         read(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   193
# define WRITE(f, cp, n)        write(f, cp, n)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   194
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   195
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   196
#endif /* use STDIO */
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   197
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   198
#ifdef DEBUGGING
4092
fee552eb3418 removed win32 stuff
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   199
  extern char *__survStartPtr, *__survEndPtr;
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   200
# define DEBUGBUFFER(buf)  \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   201
    if (((char *)(buf) >= __survStartPtr) \
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   202
     && ((char *)(buf) < __survEndPtr)) { \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   203
	__fatal0("read into survivor\n"); \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   204
    }
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   205
3682
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   206
#else
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   207
# define DEBUGBUFFER(buf) /* nothing */
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   208
#endif
Claus Gittinger <cg@exept.de>
parents: 3681
diff changeset
   209
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   210
/*
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   211
 * stdio library requires an fseek before reading whenever a file
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   212
 * is open for read/write and the last operation was a write.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   213
 * (also vice-versa).
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   214
 * All code should use the following macro before doing reads:
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   215
 */
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   216
#ifdef STDIO_NEEDS_FSEEK
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   217
# 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
   218
#else
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   219
# 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
   220
#endif
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   221
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   222
#ifdef WIN32
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   223
#  define READ(ret, f, cp, n, handleType) { \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   224
	if (handleType == @symbol(socketHandle)) { \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   225
	  (ret) = __STX_WSA_NOINT_CALL4("recv", recv, (f), (cp), (n), 0); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   226
	} else { \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   227
	  HANDLE h = _get_osfhandle(fileno(f)); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   228
	  if (handleType == @symbol(socketFilePointer)) { \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   229
	    (ret) = __STX_WSA_NOINT_CALL4("recv", recv, h, (cp), (n), 0);\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   230
	  } else { \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   231
	    int __res; \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   232
	    (ret) = __STX_API_NOINT_CALL5("ReadFile", ReadFile, h, (cp), (n), &__res, 0);\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   233
	    (ret) = (ret) ? __res : -1; \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   234
	  } \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   235
	} \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   236
      }
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   237
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   238
#  define WRITE(ret, f, cp, n, handleType) { \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   239
	if (handleType == @symbol(socketHandle)) { \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   240
	  (ret) = __STX_WSA_NOINT_CALL4("send", send, (f), (cp), (n), 0); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   241
	} else {\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   242
	  HANDLE h = _get_osfhandle(fileno(f)); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   243
	  if (handleType == @symbol(socketFilePointer)) { \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   244
	    (ret) = __STX_WSA_NOINT_CALL4("send", send, h, (cp), (n), 0);\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   245
	  } else {\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   246
	    int __res; \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   247
	    (ret) = __STX_API_NOINT_CALL5("WriteFile", WriteFile, h, (cp), (n), &__res, 0);\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   248
	    (ret) = (ret) ? __res : -1; \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   249
	  } \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   250
	} \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   251
      }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   252
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   253
# define FFLUSH(fp)             fflush(fp)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   254
# undef STDIO_NEEDS_FSEEK
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   255
# define FILEPOINTER            FILE *
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   256
# define FILENO(f)              fileno(f)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   257
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   258
# define __READING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   259
    if ((__INST(didWrite) != false)              \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   260
     && (__INST(mode) == @symbol(readwrite))) {  \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   261
	__INST(didWrite) = false;                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   262
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   263
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   264
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   265
# define __WRITING__(f)                          \
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   266
    if ((__INST(didWrite) != true)               \
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
   267
     && (__INST(mode) == @symbol(readwrite))) {  \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   268
	__INST(didWrite) = true;                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   269
	OPT_FSEEK(f, 0L, SEEK_CUR); /* needed in stdio */  \
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   270
    }
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
   271
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   272
# define __UNGETC__(c, f, isBuffered)                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   273
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   274
	ungetc((c), (f));                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   275
    } else {                                            \
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   276
      __INST(readAhead) = __mkSmallInteger((c));        \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   277
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   278
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   279
# define __READBYTE__(ret, f, buf, isBuffered, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   280
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   281
	for (;;) {                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   282
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   283
	    (ret) = getc(f);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   284
	    if ((ret) >= 0) {                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   285
		*(buf) = (ret);                         \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   286
		(ret) = 1;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   287
	    } else if (ferror(f)) {                     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   288
		if (__threadErrno == EINTR) {           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   289
		    clearerr(f);                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   290
		    continue;                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   291
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   292
	    } else {                                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   293
		(ret) = 0;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   294
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   295
	    break;                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   296
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   297
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   298
	OBJ rA = __INST(readAhead);                     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   299
	if (rA != nil) {                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   300
	    *(buf) = (char)__intVal(rA);                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   301
	    __INST(readAhead) = nil;                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   302
	    (ret) = 1;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   303
	} else {                                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   304
	    for (;;) {                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   305
		CLEAR_ERRNO;                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   306
		READ((ret), f, buf, 1, handleType);       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   307
		if ((ret) >= 0 || __threadErrno != EINTR) \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   308
		    break;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   309
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   310
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   311
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   312
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   313
  /*
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   314
   * read_bytes into a c-buffer
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   315
   * (which may NOT move)
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   316
   */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   317
# define __READBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   318
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   319
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   320
	int __offs = 0;                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   321
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   322
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   323
	    (ret) = getc(f);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   324
	    if ((ret) < 0) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   325
		if (ferror(f)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   326
		    if (__threadErrno == EINTR) {       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   327
			clearerr(f);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   328
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   329
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   330
		} else {                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   331
		    (ret) = 0;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   332
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   333
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   334
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   335
	    (buf)[__offs++] = (ret);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   336
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   337
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   338
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   339
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   340
	int __offs = 0;                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   341
							\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   342
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   343
	    OBJ rA = __INST(readAhead);                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   344
	    if (rA != nil) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   345
		(buf)[__offs] = __intVal(rA);           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   346
		__INST(readAhead) = nil;                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   347
		(ret) = 1;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   348
	    } else {                                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   349
		CLEAR_ERRNO;                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   350
		READ((ret), f, (buf)+__offs, (cnt)-__offs, handleType); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   351
		if ((ret) <= 0) {                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   352
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   353
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   354
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   355
		    break;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   356
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   357
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   358
	    __offs += (ret);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   359
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   360
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   361
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   362
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   363
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   364
# define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered, handleType) \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   365
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   366
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   367
    int oldFlags;                                       \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   368
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   369
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   370
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   371
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   372
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   373
	    (ret) = getc(f);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   374
	    if ((ret) < 0) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   375
		if (ferror(f)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   376
		    if (__threadErrno == EINTR) {       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   377
			clearerr(f);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   378
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   379
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   380
		} else {                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   381
		    (ret) = 0;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   382
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   383
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   384
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   385
	    (buf)[__offs++] = (ret);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   386
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   387
	(ret) = __offs;                                 \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   388
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   389
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   390
	    OBJ rA = __INST(readAhead);                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   391
	    if (rA != nil) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   392
		(buf)[__offs] = __intVal(rA);           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   393
		__INST(readAhead) = nil;                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   394
		(ret) = 1;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   395
		__offs ++;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   396
		continue;                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   397
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   398
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   399
	    {                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   400
	      int res = 0;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   401
	      if ((handleType == @symbol(socketFilePointer) && (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)),FIONREAD,&res), 1)) \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   402
		  || (handleType == @symbol(socketHandle) && (ioctlsocket((SOCKET)(f), FIONREAD, &res), 1)) \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   403
		  || (handleType == @symbol(pipeFilePointer) && (PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0, 0,0,&res,0), 1))) { \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   404
		  if (res > 0) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   405
		      if (res > ((cnt)-__offs))         \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   406
			  res = (cnt)-__offs;           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   407
		      READ((ret), f, (buf)+__offs, res, handleType); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   408
		  } else {                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   409
		      (ret) = 0;                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   410
		      break;                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   411
		  }                                     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   412
	      } else {                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   413
		  READ((ret), f, (buf)+__offs, (cnt)-__offs, handleType); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   414
	      }                                         \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   415
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   416
	    if ((ret) <= 0) {                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   417
		if (ret < 0 && __threadErrno == EINTR)  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   418
		    continue;                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   419
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   420
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   421
	    __offs += (ret);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   422
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   423
	(ret) = __offs;                                 \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   424
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   425
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   426
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   427
# define IO_BUFFER_SIZE        (8*1024)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   428
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   429
# 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
   430
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   431
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   432
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   433
    char *buf = (char *)(obj);                          \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   434
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   435
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   436
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   437
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   438
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   439
	    (ret) = getc(f);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   440
	    if ((ret) < 0) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   441
		if (ferror(f)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   442
		    if (__threadErrno == EINTR) {       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   443
			clearerr(f);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   444
			/* refetch */                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   445
			buf = (char *)(obj);   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   446
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   447
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   448
		} else {                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   449
		    (ret) = 0;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   450
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   451
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   452
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   453
	    (buf)[__ooffs+__offs] = (ret);              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   454
	    __offs++;                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   455
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   456
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   457
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   458
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   459
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   460
	    char __buf[IO_BUFFER_SIZE];                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   461
	    OBJ rA = __INST(readAhead);                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   462
	    if (rA != nil) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   463
		(buf)[__ooffs+__offs] = __intVal(rA);   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   464
		__INST(readAhead) = nil;                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   465
		(ret) = 1;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   466
	    } else {                                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   467
		int l;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   468
		CLEAR_ERRNO;                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   469
		l = (cnt)-__offs;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   470
		if ( l > IO_BUFFER_SIZE)                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   471
		  l = IO_BUFFER_SIZE;                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   472
		READ((ret),f, __buf, l, handleType);                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   473
		if ((ret) <= 0) {                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   474
		    if ((ret) < 0 && __threadErrno == EINTR) {  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   475
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   476
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   477
		    break;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   478
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   479
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   480
	    if ((ret) > 0 ) {                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   481
		/* refetch */                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   482
		buf = (char *)(obj);               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   483
		memcpy((buf)+__ooffs+__offs,__buf,(ret));   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   484
		__offs += (ret);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   485
	    } else {                                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   486
		(ret) = 0;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   487
	    }                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   488
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   489
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   490
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   491
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   492
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   493
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
   494
# 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
   495
  {                                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   496
    int __ooffs = obj_offs;                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   497
    int __offs = 0;                                  \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   498
    char *buf = (char *)(obj);                       \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   499
						     \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   500
    (ret) = 0;                                       \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   501
    if (isBuffered) {                                \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   502
	while (__offs < (cnt)) {                     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   503
	    CLEAR_ERRNO;                             \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   504
	    (ret) = getc(f);                         \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   505
	    if ((ret) < 0) {                         \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   506
		if (ferror(f)) {                     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   507
		    if (__threadErrno == EINTR) {    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   508
			clearerr(f);                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   509
			/* refetch */                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   510
			buf = (char *)(obj);\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   511
			continue;                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   512
		    }                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   513
		} else {                             \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   514
		    (ret) = 0;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   515
		}                                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   516
		break;                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   517
	    }                                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   518
	    (buf)[__ooffs+__offs] = (ret);           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   519
	    __offs++;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   520
	}                                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   521
	if (__offs > 0)                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   522
	    (ret) = __offs;                          \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   523
    } else {                                         \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   524
	while (__offs < (cnt)) {                     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   525
	    char __buf[IO_BUFFER_SIZE];              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   526
	    OBJ rA = __INST(readAhead);              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   527
	    if (rA != nil) {                         \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   528
		(buf)[__ooffs+__offs] = __intVal(rA);\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   529
		__INST(readAhead) = nil;             \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   530
		(ret) = 1;                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   531
		__offs++;                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   532
		continue;                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   533
	    }                                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   534
	    {                                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   535
		int res = 0;                         \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   536
		int l = (cnt)-__offs;                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   537
		CLEAR_ERRNO;                         \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   538
		if (l > IO_BUFFER_SIZE)              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   539
		    l = IO_BUFFER_SIZE;              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   540
		if ((handleType == @symbol(socketFilePointer) && (ioctlsocket((SOCKET)_get_osfhandle(fileno(f)), FIONREAD, &res), 1)) \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   541
		    || (handleType == @symbol(socketHandle) && (ioctlsocket((SOCKET)(f), FIONREAD, &res), 1)) \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   542
		    || (handleType == @symbol(pipeFilePointer) && (PeekNamedPipe((HANDLE)_get_osfhandle(fileno(f)),0,0,0,&res,0), 1))) { \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   543
		    if (res > 0) {                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   544
			if (res > l) res = l;        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   545
			READ((ret), f, __buf, res, handleType); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   546
		    } else {                         \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   547
			(ret) = 0;                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   548
			break;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   549
		    }                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   550
		} else {                             \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   551
		    READ((ret), f, __buf, l, handleType); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   552
		}                                     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   553
		if ((ret) <= 0) {                     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   554
		    if (ret < 0 && __threadErrno == EINTR) \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   555
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   556
		    break;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   557
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   558
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   559
	    if ((ret) > 0) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   560
		buf = (char *)(obj);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   561
		memcpy((buf)+__ooffs+__offs, __buf, (ret)); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   562
		__offs += (ret);                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   563
	    } else {                                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   564
		(ret) = 0;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   565
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   566
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   567
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   568
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   569
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   570
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   571
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   572
# define __WRITEBYTE__(ret, f, buf, isBuffered, handleType)         \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   573
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   574
	for (;;) {                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   575
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   576
	    ret = putc(*(buf), f);                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   577
	    if ((ret) >= 0) {                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   578
		(ret) = 1;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   579
	    } else if (ferror(f)) {                     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   580
		if (__threadErrno == EINTR) {                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   581
		    clearerr(f);                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   582
		    continue;                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   583
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   584
	    } else                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   585
		(ret) = 0;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   586
	    break;                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   587
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   588
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   589
	for (;;) {                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   590
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   591
	    WRITE(ret,f, buf, 1, handleType);                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   592
	    if ((ret) >= 0 || __threadErrno != EINTR)           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   593
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   594
	}                                               \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   595
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   596
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   597
# define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)   \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   598
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   599
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   600
	int __offs = 0;                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   601
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   602
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   603
	    (ret) = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   604
	    if ((ret) <= 0) {                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   605
		if (ferror(f)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   606
		    if (__threadErrno == EINTR) {               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   607
			clearerr(f);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   608
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   609
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   610
		    break;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   611
		} else {                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   612
		    (ret) = 0;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   613
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   614
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   615
	    __offs += (ret);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   616
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   617
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   618
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   619
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   620
	int __offs = 0;                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   621
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   622
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   623
	    WRITE(ret,f, (buf)+__offs, (cnt)-__offs, handleType);   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   624
	    if (ret <= 0) {                             \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   625
		if (ret < 0 && __threadErrno == EINTR) { \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   626
		    continue;                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   627
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   628
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   629
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   630
	    __offs += (ret);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   631
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   632
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   633
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   634
   }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   635
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   636
# 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
   637
  {                                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   638
    int __ooffs = obj_offs;                             \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   639
    int __offs = 0;                                     \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   640
    char *buf = (char *)(obj);                          \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   641
							\
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   642
    (ret) = 0;                                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   643
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   644
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   645
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   646
	    ret = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   647
	    if ((ret) <= 0) {                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   648
		if (ferror(f)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   649
		    if (__threadErrno == EINTR) {       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   650
			/* refetch */                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   651
			buf = (char *)(obj);   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   652
			clearerr(f);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   653
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   654
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   655
		    break;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   656
		} else {                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   657
		    (ret) = 0;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   658
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   659
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   660
	    __offs += (ret);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   661
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   662
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   663
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   664
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   665
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   666
	    char __buf[IO_BUFFER_SIZE];                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   667
	    int l;                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   668
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   669
	    l = (cnt)-__offs;                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   670
	    if ( l > IO_BUFFER_SIZE)                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   671
	      l = IO_BUFFER_SIZE;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   672
	    /* refetch */                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   673
	    buf = (char *)(obj);               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   674
	    memcpy(__buf,(buf)+__ooffs+__offs,l);       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   675
	    WRITE(ret,f, __buf, l, handleType);                     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   676
	    if (ret <= 0) {                             \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   677
		if (ret < 0 && __threadErrno == EINTR) {        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   678
		    continue;                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   679
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   680
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   681
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   682
	    __offs += (ret);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   683
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   684
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   685
	    (ret) = __offs;                             \
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   686
    }                                                   \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   687
  }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   688
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   689
#else /* ! WIN32 */
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
   690
/* ========================   UNIX / LINUX ====================================================== */
16373
9b9827530bf4 Adapt previous change for linux
Stefan Vogel <sv@exept.de>
parents: 16368
diff changeset
   691
typedef int SOCKET;
9b9827530bf4 Adapt previous change for linux
Stefan Vogel <sv@exept.de>
parents: 16368
diff changeset
   692
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   693
# define __READING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   694
    if ((__INST(didWrite) != false)              \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   695
     && (__INST(mode) == @symbol(readwrite))) {  \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   696
	__INST(didWrite) = false;                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   697
	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
   698
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   699
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   700
# define __WRITING__(f)                          \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   701
    if ((__INST(didWrite) != true)               \
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   702
     && (__INST(mode) == @symbol(readwrite))) {  \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   703
	__INST(didWrite) = true;                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   704
	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
   705
    }
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   706
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   707
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   708
# ifdef NO_STDIO
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   709
#  define __UNGETC__(c, f, isBuffered)                  \
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   710
    __INST(readAhead) = __mkSmallInteger((c));
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   711
# else /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   712
#  define __UNGETC__(c, f, isBuffered)                  \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   713
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   714
	ungetc((c), (f));                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   715
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   716
	__INST(readAhead) = __mkSmallInteger((c));          \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   717
    }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   718
# endif /* use STDIO */
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
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   721
#  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
   722
    {                                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   723
	OBJ rA = __INST(readAhead);                     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   724
	if (rA != nil) {                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   725
	    *(buf) = __intVal(rA);                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   726
	    DEBUGBUFFER(buf);                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   727
	    __INST(readAhead) = nil;                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   728
	    (ret) = 1;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   729
	} else {                                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   730
	    for (;;) {                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   731
		CLEAR_ERRNO;                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   732
		(ret) = READ(f, buf, 1, handleType);    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   733
		DEBUGBUFFER(buf);                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   734
		if ((ret) >= 0) break;                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   735
		if (errno != EINTR) {                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   736
		    break;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   737
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   738
		__HANDLE_INTERRUPTS__;                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   739
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   740
	}                                               \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   741
    }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   742
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   743
#  define __READBYTE__(ret, f, buf, isBuffered, handleType)         \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   744
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   745
	for (;;) {                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   746
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   747
	    (ret) = getc(f);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   748
	    if ((ret) >= 0) {                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   749
		DEBUGBUFFER(buf);                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   750
		*(buf) = (ret);                         \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   751
		(ret) = 1;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   752
	    } else if (ferror(f)) {                     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   753
		if (errno == EINTR) {                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   754
		    __HANDLE_INTERRUPTS__;              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   755
		    clearerr(f);                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   756
		    continue;                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   757
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   758
	    } else                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   759
		(ret) = 0;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   760
	    break;                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   761
	}                                               \
2264
ac5dfc03aa26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   762
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   763
	OBJ rA = __INST(readAhead);                     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   764
	if (rA != nil) {                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   765
	    *(buf) = __intVal(rA);                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   766
	    DEBUGBUFFER(buf);                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   767
	    __INST(readAhead) = nil;                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   768
	    (ret) = 1;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   769
	} else {                                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   770
	    for (;;) {                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   771
		CLEAR_ERRNO;                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   772
		(ret) = read(fileno(f), buf, 1);        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   773
		DEBUGBUFFER(buf);                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   774
		if ((ret) >= 0) break;                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   775
		if (errno != EINTR) {                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   776
		    break;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   777
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   778
		__HANDLE_INTERRUPTS__;                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   779
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   780
	}                                               \
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   781
   }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   782
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   783
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   784
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   785
 * 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
   786
 * (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
   787
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   788
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   789
#  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
   790
    {                                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   791
	int __offs = 0, __cnt;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   792
							\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   793
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   794
	    OBJ rA = __INST(readAhead);                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   795
	    if (rA != nil) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   796
		(buf)[__offs] = __intVal(rA);           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   797
		DEBUGBUFFER(buf);                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   798
		__INST(readAhead) = nil;                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   799
		__offs++;                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   800
	    } else {                                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   801
		CLEAR_ERRNO;                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   802
		__cnt = READ(f, (buf)+__offs, (cnt)-__offs, handleType); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   803
		DEBUGBUFFER(buf);                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   804
		if (__cnt <= 0) {                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   805
		    if (__cnt < 0 && errno == EINTR) {  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   806
			__HANDLE_INTERRUPTS__;          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   807
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   808
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   809
		    break;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   810
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   811
		__offs += __cnt;                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   812
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   813
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   814
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   815
	    (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   816
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   817
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   818
#  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
   819
    (ret) = 0;                                          \
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   820
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   821
	int __offs = 0;                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   822
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   823
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   824
	    (ret) = getc(f);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   825
	    if ((ret) < 0) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   826
		if (ferror(f)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   827
		    if (errno == EINTR) {               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   828
			__HANDLE_INTERRUPTS__;          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   829
			clearerr(f);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   830
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   831
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   832
		} else {                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   833
		    (ret) = 0;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   834
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   835
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   836
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   837
	    DEBUGBUFFER(buf);                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   838
	    (buf)[__offs++] = (ret);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   839
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   840
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   841
	    (ret) = __offs;                             \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
   842
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   843
	int __offs = 0, __cnt;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   844
	int fd = fileno(f);                             \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   845
							\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   846
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   847
	    OBJ rA = __INST(readAhead);                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   848
	    if (rA != nil) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   849
		DEBUGBUFFER(buf);                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   850
		(buf)[__offs] = __intVal(rA);           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   851
		__INST(readAhead) = nil;                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   852
		__offs++;                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   853
	    } else {                                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   854
		CLEAR_ERRNO;                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   855
		__cnt = read(fd, (buf)+__offs, (cnt)-__offs);  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   856
		DEBUGBUFFER(buf);                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   857
		if (__cnt <= 0) {                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   858
		    if (__cnt < 0 && errno == EINTR) {  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   859
			__HANDLE_INTERRUPTS__;          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   860
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   861
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   862
		    break;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   863
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   864
		__offs += __cnt;                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   865
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   866
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   867
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   868
	    (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   869
   }
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   870
6563
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   871
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   872
/*
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   873
 * 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
   874
 */
f786651428c8 Support O_NONBLOCK which is the POSIX way of FNDELAY
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   875
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   876
#  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
   877
#   define SETFLAGS(fd, flags) \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   878
	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
   879
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   880
#   if defined(O_NONBLOCK)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   881
#    define __STX_NONBLOCK_FLAG O_NONBLOCK
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   882
#   else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   883
#    if defined(O_NDELAY)
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   884
#     define __STX_NONBLOCK_FLAG O_NDELAY
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   885
#    else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   886
#     define __STX_NONBLOCK_FLAG FNDELAY
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   887
#    endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   888
#   endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   889
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   890
#   define SETNONBLOCKING(fd, oldFlags) \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   891
	{ \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   892
	    int flags = fcntl(fd, F_GETFL, 0); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   893
	    if (flags >= 0) { \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   894
		fcntl(fd, F_SETFL, flags | __STX_NONBLOCK_FLAG); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   895
	    } \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   896
	    oldFlags = flags; \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   897
	}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   898
#  else
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   899
#   define SETFLAGS(fd, flags) /* nothing */
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   900
#   define SETNONBLOCKING(fd, oldFlags) /* nothing */
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   901
#  endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   902
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   903
#  define __READAVAILBYTES__(ret, f, buf, cnt, isBuffered, handleType) \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   904
  {                                                     \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   905
    int __offs = 0, __cnt;                              \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   906
    int oldFlags;                                       \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   907
							\
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   908
    (ret) = 0;                                          \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
   909
    SETNONBLOCKING(fileno(f), oldFlags);                \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   910
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   911
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   912
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   913
	    (ret) = getc(f);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   914
	    if ((ret) < 0) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   915
		if (ferror(f)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   916
		    if (errno == EINTR) {               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   917
			(ret) = 0;                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   918
			clearerr(f);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   919
			break;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   920
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   921
		} else {                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   922
		    (ret) = 0;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   923
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   924
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   925
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   926
	    (buf)[__offs++] = (ret);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   927
	    DEBUGBUFFER(buf);                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   928
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   929
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   930
	    (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   931
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   932
	int fd = fileno(f);                             \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   933
							\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   934
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   935
	    OBJ rA = __INST(readAhead);                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   936
	    if (rA != nil) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   937
		(buf)[__offs] = __intVal(rA);           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   938
		DEBUGBUFFER(buf);                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   939
		__INST(readAhead) = nil;                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   940
		__offs++;                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   941
		continue;                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   942
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   943
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   944
	    __cnt = read(fd, (buf)+__offs, (cnt)-__offs); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   945
	    DEBUGBUFFER(buf);                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   946
	    if (__cnt > 0) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   947
		__offs += __cnt;                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   948
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   949
	    break;                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   950
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   951
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   952
	    (ret) = __offs;                             \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   953
    }                                                   \
3681
55dc17d40aab fixed nextAvail
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
   954
    SETFLAGS(fileno(f), oldFlags);                      \
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   955
  }
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   956
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
   957
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
   958
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   959
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
   960
 * 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
   961
 * (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
   962
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
   963
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
   964
#  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
   965
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   966
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   967
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
   968
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   969
    char *buf = (char *)(obj);                          \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   970
							\
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   971
    (ret) = 0;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   972
    {                                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   973
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   974
	    OBJ rA = __INST(readAhead);                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   975
	    if (rA != nil) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   976
		(buf)[__ooffs+__offs] = __intVal(rA);   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   977
		DEBUGBUFFER(buf);                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   978
		__INST(readAhead) = nil;                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   979
		__offs++;                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   980
	    } else {                                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   981
		CLEAR_ERRNO;                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   982
		__cnt = READ(f, (buf)+__ooffs+__offs, (cnt)-__offs, handleType); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   983
		DEBUGBUFFER(buf);                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   984
		if (__cnt <= 0) {                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   985
		    if (__cnt < 0 && errno == EINTR) {  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   986
			__HANDLE_INTERRUPTS__;          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   987
			/* refetch */                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   988
			buf = (char *)(obj);            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   989
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   990
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   991
		    break;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   992
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   993
		__offs += __cnt;                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   994
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   995
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   996
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
   997
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
   998
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   999
  }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  1000
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1001
# else /* use STDIO */
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  1002
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1003
#  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
  1004
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1005
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1006
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
  1007
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1008
    char *buf = (char *)(obj);                          \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1009
							\
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1010
    (ret) = 0;                                          \
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1011
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1012
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1013
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1014
	    (ret) = getc(f);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1015
	    if ((ret) < 0) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1016
		if (ferror(f)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1017
		    if (errno == EINTR) {               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1018
			__HANDLE_INTERRUPTS__;          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1019
			clearerr(f);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1020
			/* refetch */                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1021
			buf = (char *)(obj);            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1022
			DEBUGBUFFER(buf);               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1023
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1024
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1025
		} else {                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1026
		    (ret) = 0;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1027
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1028
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1029
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1030
	    (buf)[__ooffs+__offs] = (ret);              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1031
	    DEBUGBUFFER(buf);                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1032
	    __offs++;                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1033
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1034
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1035
	    (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
  1036
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1037
	int fd = fileno(f);                             \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1038
							\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1039
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1040
	    OBJ rA = __INST(readAhead);                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1041
	    if (rA != nil) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1042
		(buf)[__ooffs+__offs] = __intVal(rA);   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1043
		DEBUGBUFFER(buf);                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1044
		__INST(readAhead) = nil;                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1045
		__offs++;                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1046
	    } else {                                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1047
		CLEAR_ERRNO;                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1048
		__cnt = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1049
		DEBUGBUFFER(buf);                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1050
		if (__cnt <= 0) {                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1051
		    if (__cnt < 0 && errno == EINTR) {  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1052
			__HANDLE_INTERRUPTS__;          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1053
			/* refetch */                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1054
			buf = (char *)(obj);            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1055
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1056
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1057
		    break;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1058
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1059
		__offs += __cnt;                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1060
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1061
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1062
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1063
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1064
    }                                                   \
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1065
  }
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1066
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1067
# 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
  1068
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1069
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1070
    int __offs = 0;                                     \
7540
7cd542f29024 Fix reading when readAheadBuffer is filled and following read fails
Stefan Vogel <sv@exept.de>
parents: 7503
diff changeset
  1071
    int __cnt;                                          \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1072
    char *buf = (char *)(obj);                          \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
  1073
    int oldFlags;                                       \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1074
							\
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1075
    (ret) = 0;                                          \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
  1076
    SETNONBLOCKING(fileno(f), oldFlags);                \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1077
							\
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1078
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1079
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1080
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1081
	    (ret) = getc(f);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1082
	    if ((ret) < 0) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1083
		if (ferror(f)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1084
		    if (errno == EINTR) {               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1085
			clearerr(f);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1086
			/* refetch */                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1087
			buf = (char *)(obj);            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1088
			(ret) = 0;                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1089
			break;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1090
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1091
		} else {                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1092
		    (ret) = 0;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1093
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1094
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1095
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1096
	    (buf)[__ooffs+__offs] = (ret);              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1097
	    DEBUGBUFFER(buf);                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1098
	    __offs++;                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1099
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1100
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1101
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1102
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1103
	int fd = fileno(f);                             \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1104
							\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1105
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1106
	    OBJ rA = __INST(readAhead);                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1107
	    if (rA != nil) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1108
		(buf)[__ooffs+__offs] = __intVal(rA);   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1109
		DEBUGBUFFER(buf);                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1110
		__INST(readAhead) = nil;                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1111
		__offs++;                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1112
		continue;                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1113
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1114
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1115
	    __cnt = read(fd, (buf)+__ooffs+__offs, (cnt)-__offs); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1116
	    DEBUGBUFFER(buf);                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1117
	    if (__cnt > 0) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1118
		__offs += __cnt;                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1119
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1120
	    break;                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1121
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1122
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1123
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1124
    }                                                   \
15342
d89884677c76 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15304
diff changeset
  1125
    SETFLAGS(fileno(f), oldFlags);                      \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1126
  }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1127
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1128
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1129
# endif /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1130
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1131
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1132
#  define __WRITEBYTE__(ret, f, buf, isBuffered, handleType)          \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1133
	for (;;) {                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1134
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1135
	    (ret) = WRITE(f, buf, 1, handleType);       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1136
	    if ((ret) >= 0) break;                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1137
	    if (errno != EINTR) {                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1138
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1139
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1140
	    __HANDLE_INTERRUPTS__;                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1141
	}
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1142
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1143
#  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
  1144
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1145
	for (;;) {                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1146
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1147
	    ret = putc(*(buf), f);                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1148
	    if ((ret) >= 0) {                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1149
		(ret) = 1;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1150
	    } else if (ferror(f)) {                     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1151
		/* SOLARIS/SPARC (2.6) generates spurious errors with errno = 0 */ \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1152
		if (errno == EINTR || errno == 0) {     \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1153
		    __HANDLE_INTERRUPTS__;              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1154
		    clearerr(f);                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1155
		    continue;                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1156
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1157
	    } else                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1158
		(ret) = 0;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1159
	    break;                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1160
	}                                               \
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  1161
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1162
	for (;;) {                                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1163
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1164
	    (ret) = write(fileno(f), buf, 1);           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1165
	    if ((ret) >= 0) break;                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1166
	    if (errno != EINTR) {                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1167
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1168
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1169
	    __HANDLE_INTERRUPTS__;                      \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1170
	}                                               \
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1171
   }
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1172
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1173
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1174
/*
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1175
 * 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
  1176
 * (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
  1177
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1178
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1179
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1180
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1181
    {                                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1182
	int __offs = 0;                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1183
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1184
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1185
	    ret = WRITE(f, (buf)+__offs, (cnt)-__offs, handleType); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1186
	    if (ret <= 0) {                             \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1187
		if (ret < 0 && errno == EINTR) {        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1188
		    __HANDLE_INTERRUPTS__;              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1189
		    continue;                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1190
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1191
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1192
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1193
	    __offs += (ret);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1194
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1195
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1196
	    (ret) = __offs;                             \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1197
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1198
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1199
#  define __WRITEBYTES__(ret, f, buf, cnt, isBuffered, handleType)    \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1200
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1201
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1202
	int __offs = 0;                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1203
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1204
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1205
	    (ret) = fwrite((buf)+__offs, 1, (cnt)-__offs, f);\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1206
	    if ((ret) <= 0) {                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1207
		if (ferror(f)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1208
		    if (errno == EINTR) {               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1209
			__HANDLE_INTERRUPTS__;          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1210
			clearerr(f);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1211
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1212
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1213
		} else {                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1214
		    (ret) = 0;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1215
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1216
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1217
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1218
	    __offs += (ret);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1219
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1220
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1221
	    (ret) = __offs;                             \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1222
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1223
	int __offs = 0;                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1224
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1225
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1226
	    (ret) = write(fileno(f), (buf)+__offs, (cnt)-__offs);\
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1227
	    if ((ret) <= 0) {                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1228
		if ((ret) < 0) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1229
		    if (errno == EINTR) {               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1230
			__HANDLE_INTERRUPTS__;          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1231
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1232
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1233
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1234
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1235
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1236
	    __offs += (ret);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1237
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1238
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1239
	    (ret) = __offs;                             \
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1240
   }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1241
# endif /* use STDIO */
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  1242
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 216
diff changeset
  1243
/*
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  1244
 * 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
  1245
 * (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
  1246
 */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1247
# ifdef NO_STDIO
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1248
#  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
  1249
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1250
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1251
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1252
    char *buf = (char *)(obj);                          \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1253
							\
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1254
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1255
    {                                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1256
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1257
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1258
	    ret = WRITE(f, (buf)+__ooffs+__offs, (cnt)-__offs, handleType); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1259
	    if (ret <= 0) {                             \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1260
		if (ret < 0 && errno == EINTR) {        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1261
		    __HANDLE_INTERRUPTS__;              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1262
		    /* refetch */                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1263
		    buf = (char *)(obj);                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1264
		    continue;                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1265
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1266
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1267
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1268
	    __offs += (ret);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1269
	}                                               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1270
	if (__offs > 0)                                 \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1271
	    (ret) = __offs;                             \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1272
    }                                                   \
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  1273
  }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1274
# else /* use STDIO */
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  1275
#  define __WRITEBYTES_OBJ__(ret, f, obj, obj_offs, cnt, isBuffered, handleType)            \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1276
  {                                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1277
    int __ooffs = obj_offs;                             \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1278
    int __offs = 0;                                     \
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1279
    char *buf = (char *)(obj);                          \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1280
							\
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1281
    (ret) = 0;                                          \
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1282
    if (isBuffered) {                                   \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1283
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1284
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1285
	    (ret) = fwrite((buf)+__ooffs+__offs, 1, (cnt)-__offs, f);  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1286
	    if ((ret) <= 0) {                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1287
		if (ferror(f)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1288
		    if (errno == EINTR) {               \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1289
			__HANDLE_INTERRUPTS__;          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1290
			/* refetch */                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1291
			buf = (char *)(obj);            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1292
			clearerr(f);                    \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1293
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1294
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1295
		    break;                              \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1296
		} else {                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1297
		    (ret) = 0;                          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1298
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1299
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1300
	    __offs += (ret);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1301
	}                                               \
2961
a188727d0619 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2920
diff changeset
  1302
    } else {                                            \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1303
	while (__offs < (cnt)) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1304
	    CLEAR_ERRNO;                                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1305
	    (ret) = write(fileno(f), (buf)+__ooffs+__offs, (cnt)-__offs); \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1306
	    if ((ret) <= 0) {                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1307
		if ((ret) < 0) {                        \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1308
		    if (errno == EINTR){                \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1309
			__HANDLE_INTERRUPTS__;          \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1310
			/* refetch */                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1311
			buf = (char *)(obj);            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1312
			continue;                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1313
		    }                                   \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1314
		}                                       \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1315
		break;                                  \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1316
	    }                                           \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1317
	    __offs += (ret);                            \
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1318
	}                                               \
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  1319
    }                                                   \
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  1320
    if (__offs > 0)                                     \
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1321
	(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
  1322
  }
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1323
# endif /* use STDIO */
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  1324
#endif /* unix */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1325
%}
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1326
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1327
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1328
!ExternalStream class methodsFor:'documentation'!
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1329
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1330
copyright
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1331
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1332
 COPYRIGHT (c) 1988 by Claus Gittinger
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1333
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1334
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1335
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1336
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1337
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1338
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1339
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1340
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1341
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1342
!
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
  1343
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1344
documentation
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1345
"
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1346
    ExternalStream defines protocol common to Streams which have a file-descriptor and
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1347
    represent some file or communicationChannel of the underlying OperatingSystem.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1348
    ExternalStream is abstract; concrete classes are FileStream, PipeStream etc.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1349
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1350
    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
  1351
    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
  1352
    while in binary-mode the basic elements are bytes which read/write as SmallIntegers
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1353
    in the range 0..255.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1354
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1355
    Also, the stream can be either in buffered or unbuffered mode. In buffered mode,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1356
    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
  1357
    is sent (in both modes).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1358
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1359
    The underlying OperatingSystem streams may either be closed explicitely (sending a close)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1360
    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
  1361
    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
  1362
    happens - so it is recommended, that you close your files when no longer needed).
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1363
    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
  1364
    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
  1365
    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
  1366
    a noop in one of the superclasses).
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1367
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1368
    Most of the methods found here redefine inherited methods for better performance,
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1369
    since I/O from/to files should be fast.
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1370
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1371
    Recovering a snapshot:
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1372
      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
  1373
      reOpen in subclasses for more information.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1374
      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
  1375
      reestablish the stream upon image restart (make someone dependent on ObjectMemory).
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1376
      FileStreams are reopened and positioned to their offset they had at snapshot time.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1377
      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
  1378
      if the contents changed in the meantime.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1379
      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
  1380
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1381
    [Instance variables:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1382
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1383
	handleType      <Symbol>        desribes what handle is:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1384
					    win32: #fileHandle, #socketHandle,
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1385
						   #filePointer, #socketFilePointer, #pipeFilePointer
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1386
					    unix: #filePointer, #socketFilePointer, #pipeFilePointer
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1387
					needed for win32, which uses different APIs for the different handles (sigh)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1388
	handle          <Integer>       used to be always a filePointer somehow mapped to an integer (FILE* - not the fd);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1389
					now, either a filePointer or a handle (win32)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1390
	mode            <Symbol>        #readwrite, #readonly or #writeonly
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1391
	buffered        <Boolean>       true, if buffered (i.e. collects characters - does
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1392
					not output immediately)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1393
	binary          <Boolean>       true if in binary mode (reads bytes instead of chars)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1394
	eolMode         <Symbol>        one of nil, #cr or #crlf.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1395
					determines how lines should be terminated.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1396
					nil -> newLine (as in Unix);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1397
					#crlf -> with cr-lf (as in MSDOS)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1398
					#cr -> with cr (as in VMS)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1399
	hitEOF          <Boolean>       true, if EOF was reached
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1400
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1401
	lastErrorNumber <Integer>       the value of errno (only valid right after the error -
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1402
					updated with next i/o operation)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1403
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1404
    [Class variables:]
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1405
	Lobby           <Registry>      keeps track of used ext-streams (to free up FILE*'s)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1406
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1407
	StreamErrorSignal       <Signal> parent of all stream errors (see Stream class)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1408
	InvalidReadSignal       <Signal> raised on read from writeonly stream
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1409
	InvalidWriteSignal      <Signal> raised on write to readonly stream
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1410
	InvalidModeSignal       <Signal> raised on text I/O with binary-stream
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1411
					 or binary I/O with text-stream
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1412
	OpenErrorSignal         <Signal> raised if open fails
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1413
	StreamNotOpenSignal     <Signal> raised on I/O with non-open stream
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1414
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1415
    Additional notes:
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1416
      This class is implemented using the underlying stdio-c library package, which
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1417
      has both advantages and disadvantages: since it is portable (posix defined), porting
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1418
      ST/X to non-Unix machines is simplified. The disadvantage is that the stdio library
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1419
      has big problems handling unbounded Streams, since the EOF handling in stdio is
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1420
      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
  1421
      a complete rewrite for UnboundedStream ...
325
claus
parents: 308
diff changeset
  1422
188
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1423
      Also, depending on the system, the stdio library behaves infriendly when signals
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1424
      occur while reading (for example, timer interrupts) - on real unixes (i.e. BSD) the signal
454ed0ee733e EINTR problems
claus
parents: 159
diff changeset
  1425
      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
  1426
      an error and errno is set to EINTR.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1427
      Thats what the ugly code around all getc-calls is for ...
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1428
      Since things get more and more ugly - we will rewrite ExternalStream
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1429
      completely, to NOT use any stdio stuff (and do its buffering itself).
325
claus
parents: 308
diff changeset
  1430
claus
parents: 308
diff changeset
  1431
      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
  1432
      this was bad design in the stdio lib (right from the very beginning), since it's much
325
claus
parents: 308
diff changeset
  1433
      harder to deal with this in the presence of lightweight processes, where errno gets
claus
parents: 308
diff changeset
  1434
      overwritten by an I/O operation done in another thread. (stdio should have been written
claus
parents: 308
diff changeset
  1435
      to return errno as a negative number ...).
claus
parents: 308
diff changeset
  1436
      To deal with this, the scheduler treats errno like a per-thread private variable,
claus
parents: 308
diff changeset
  1437
      and saves/restores the errno setting when switching to another thread.
claus
parents: 308
diff changeset
  1438
      (Notice that some thread packages do this also, but ST/X's thread implementation
claus
parents: 308
diff changeset
  1439
      does not depend on those, but instead uses a portable private package).
claus
parents: 308
diff changeset
  1440
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1441
      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
  1442
      fseek whenever we are about to read after write and vice versa.
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1443
      Two macros (__READING__ and __WRITING__) have been defined to be used before every
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  1444
      fread/fgetc and fwrite/putc respectively.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1445
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1446
    [author:]
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1447
	Claus Gittinger
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1448
	Stefan Vogel (many, many fixes ...)
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1449
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  1450
    [see also:]
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1451
	FileStream Socket PipeStream
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  1452
	Filename OperatingSystem
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1453
"
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1454
!
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1455
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1456
examples
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1457
"
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1458
    open a file, read the contents and display it in a textView:
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1459
									[exBegin]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1460
	|topView scrollPane textView fileStream text|
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1461
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1462
	topView := StandardSystemView new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1463
	topView label:'contents of Makefile'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1464
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1465
	scrollPane := HVScrollableView in:topView.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1466
	scrollPane origin:0.0@0.0 corner:1.0@1.0.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1467
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1468
	textView := EditTextView new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1469
	scrollPane scrolledView:textView.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1470
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1471
	fileStream := 'Makefile' asFilename readStream.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1472
	text := fileStream upToEnd.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1473
	fileStream close.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1474
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1475
	textView contents:text.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1476
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1477
	topView open.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1478
									[exEnd]
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1479
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1480
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1481
    Notice, all of the above can also be done (simply) as:
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1482
									[exBegin]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1483
	EditTextView openOn:'Makefile'
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1484
									[exEnd]
3255
eb76cba071a1 example
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  1485
"
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1486
! !
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  1487
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1488
!ExternalStream class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1489
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1490
initDefaultEOLMode
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1491
    OperatingSystem isUNIXlike ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1492
	"/ unix EOL conventions
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1493
	DefaultEOLMode := #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1494
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1495
	OperatingSystem isVMSlike ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1496
	    "/ vms EOL conventions
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1497
	    DefaultEOLMode := #cr
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1498
	] ifFalse:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1499
	    "/ msdos EOL conventions
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1500
	    DefaultEOLMode := #crlf
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1501
	]
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1502
    ]
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1503
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1504
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1505
initModeStrings
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1506
    "initialize modeStrings which are passed down to the underlying
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1507
     fopen/fdopen functions."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1508
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1509
    OperatingSystem isMSDOSlike ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1510
	ReadMode := 'rb'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1511
	ReadWriteMode := 'rb+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1512
	WriteMode := 'wb'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1513
	AppendMode := 'ab+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1514
	CreateReadWriteMode := 'wb+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1515
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1516
	ReadMode := 'r'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1517
	ReadWriteMode := 'r+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1518
	WriteMode := 'w'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1519
	AppendMode := 'a+'.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1520
	CreateReadWriteMode := 'w+'.
3132
037027ae20fd msdos MUST use binary mode in I/O
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1521
    ]
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1522
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1523
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1524
initialize
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 583
diff changeset
  1525
    OpenErrorSignal isNil ifTrue:[
8066
0dbcbe8989b8 OpenError is now a class based exception
Claus Gittinger <cg@exept.de>
parents: 8008
diff changeset
  1526
"/        OpenErrorSignal := OpenError.
0dbcbe8989b8 OpenError is now a class based exception
Claus Gittinger <cg@exept.de>
parents: 8008
diff changeset
  1527
"/        OpenErrorSignal nameClass:self message:#openErrorSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1528
	OpenErrorSignal := OpenError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1529
	OpenErrorSignal notifierString:'open error'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1530
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1531
"/        InvalidReadSignal := ReadErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1532
"/        InvalidReadSignal nameClass:self message:#invalidReadSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1533
	InvalidReadSignal := InvalidReadError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1534
	InvalidReadSignal notifierString:'stream does not support reading'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1535
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1536
"/        InvalidWriteSignal := WriteErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1537
"/        InvalidWriteSignal nameClass:self message:#invalidWriteSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1538
	InvalidWriteSignal := InvalidWriteError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1539
	InvalidWriteSignal notifierString:'stream does not support writing'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1540
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1541
"/        InvalidModeSignal :=  StreamErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1542
"/        InvalidModeSignal nameClass:self message:#invalidModeSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1543
	InvalidModeSignal := InvalidModeError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1544
	InvalidModeSignal notifierString:'binary/text mode mismatch'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1545
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1546
"/        InvalidOperationSignal :=  StreamErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1547
"/        InvalidOperationSignal nameClass:self message:#invalidOperationSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1548
	InvalidOperationSignal := InvalidOperationError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1549
	InvalidOperationSignal notifierString:'unsupported file operation'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1550
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1551
"/        StreamNotOpenSignal := StreamErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1552
"/        StreamNotOpenSignal nameClass:self message:#streamNotOpenSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1553
	StreamNotOpenSignal := StreamNotOpenError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1554
	StreamNotOpenSignal notifierString:'stream is not open'.
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1555
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1556
"/        StreamIOErrorSignal := StreamErrorSignal newSignalMayProceed:false.
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1557
"/        StreamIOErrorSignal nameClass:self message:#streamIOErrorSignal.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1558
	StreamIOErrorSignal := StreamIOError.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1559
	StreamIOErrorSignal notifierString:'I/O error'.
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1560
    ].
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1561
31
75f2b9f78be2 *** empty log message ***
claus
parents: 25
diff changeset
  1562
    Lobby isNil ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1563
	Lobby := Registry new.
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1564
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1565
	"want to get informed when returning from snapshot"
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1566
	ObjectMemory addDependent:self
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1567
    ].
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1568
    DefaultEOLMode isNil ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1569
	self initDefaultEOLMode.
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1570
    ].
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1571
    ReadMode isNil ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1572
	self initModeStrings.
5442
24b88d75396d only init once
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1573
    ].
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1574
    "Modified: / 21.5.1998 / 16:33:53 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1575
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1576
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1577
reOpenFiles
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1578
    "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
  1579
     This is invoked via the #earlyRestart change notification."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1580
301
35e40a6fc72b *** empty log message ***
claus
parents: 269
diff changeset
  1581
    Lobby do:[:aFileStream |
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1582
	aFileStream reOpen
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1583
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1584
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1585
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1586
update:something with:aParameter from:changedObject
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1587
    "have to reopen files when returning from snapshot"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1588
4108
8c4a45bc70eb perform reOpen of streams earlier (before doing the view-reinit)
Claus Gittinger <cg@exept.de>
parents: 4093
diff changeset
  1589
    something == #earlyRestart ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1590
	self reOpenFiles.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1591
	self initDefaultEOLMode
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1592
    ]
1469
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1593
570ef7f8667b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1464
diff changeset
  1594
    "Created: 15.6.1996 / 15:19:59 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1595
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1596
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1597
!ExternalStream class methodsFor:'instance creation'!
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1598
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1599
forFileDescriptor:aFileDescriptor mode:modeSymbol
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1600
    "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
  1601
     to operate on this fd.
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1602
     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
  1603
     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
  1604
     primitive code, or to wrap pipe-fds into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1605
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1606
    ^ self forFileDescriptor:aFileDescriptor mode:modeSymbol buffered:true handleType:nil
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1607
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1608
    "
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1609
     the example below will probably fail (15 is a random FD):
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1610
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1611
     |s|
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1612
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1613
     s := ExternalStream forFileDescriptor:15 mode:'r'.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1614
     s next.
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1615
    "
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1616
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1617
    "Created: 29.2.1996 / 18:05:00 / cg"
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1618
    "Modified: 29.2.1996 / 18:17:07 / cg"
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1619
!
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1620
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1621
forFileDescriptor:aFileDescriptor mode:modeSymbol buffered:buffered handleType:handleTypeSymbol
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1622
    "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
  1623
     to operate on this fd.
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1624
     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
  1625
     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
  1626
     primitive code, or to wrap pipe-fds into externalStreams."
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1627
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1628
    |newStream|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1629
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1630
    newStream := self basicNew.
7002
7a5d55f87cd7 make pseudoTTYs unbuffered (req'd for UNIXWARE)
penk
parents: 6812
diff changeset
  1631
    newStream text; buffered:buffered; eolMode:DefaultEOLMode; clearEOF.
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1632
    ^ newStream connectTo:aFileDescriptor withMode:modeSymbol handleType:handleTypeSymbol
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1633
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1634
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1635
     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
  1636
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1637
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1638
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1639
     s := ExternalStream forFileDescriptor:15 mode:#radonly handleType:#filePointer.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1640
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1641
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1642
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1643
    "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
  1644
    "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
  1645
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1646
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1647
forReadWriteToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1648
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1649
     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
  1650
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1651
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1652
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1653
    ^ self forFileDescriptor:aFileDescriptor mode:#readWrite
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1654
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1655
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1656
     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
  1657
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1658
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1659
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1660
     s := ExternalStream forReadWriteToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1661
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1662
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1663
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1664
    "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
  1665
    "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
  1666
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1667
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1668
forReadingFromFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1669
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1670
     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
  1671
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1672
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1673
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1674
    ^ self forFileDescriptor:aFileDescriptor mode:#readonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1675
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1676
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1677
     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
  1678
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1679
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1680
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1681
     s := ExternalStream forReadingFromFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1682
     s next.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1683
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1684
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1685
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1686
     |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
  1687
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1688
     'create OS pipe ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1689
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1690
     pipe := OperatingSystem makePipe.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1691
     readFd := pipe at:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1692
     writeFd := pipe at:2.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1693
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1694
     'connect Smalltalk streams ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1695
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1696
     rs := ExternalStream forReadingFromFileDescriptor:readFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1697
     ws := ExternalStream forWritingToFileDescriptor:writeFd.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1698
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1699
     'read ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1700
     [
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1701
	 1 to:10 do:[:i |
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1702
	     Transcript showCR:rs nextLine
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1703
	 ].
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1704
	 rs close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1705
     ] forkAt:7.
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
     'write ...'.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1708
     [
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1709
	 1 to:10 do:[:i |
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1710
	     ws nextPutAll:'hello world '; nextPutAll:i printString; cr
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1711
	 ].
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  1712
	 ws close.
1048
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1713
     ] fork.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1714
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1715
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1716
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1717
    "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
  1718
    "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
  1719
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1720
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1721
forWritingToFileDescriptor:aFileDescriptor
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1722
    "given a fileDescriptor, create an ExternalStream object
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1723
     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
  1724
     as returned by user primitive code, or to wrap pipe-
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1725
     filedescriptors into externalStreams."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1726
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  1727
    ^ self forFileDescriptor:aFileDescriptor mode:#writeonly
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1728
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1729
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  1730
     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
  1731
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1732
     |s|
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1733
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1734
     s := ExternalStream forWritingToFileDescriptor:15.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1735
     s binary.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1736
     s nextPut:1.
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1737
    "
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1738
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1739
    "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
  1740
    "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
  1741
!
c535c5a73cba added facilities to connect to given Fd's and #makePipe
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  1742
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1743
new
15918
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  1744
    "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
  1745
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  1746
    ^ self basicNew initialize.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1747
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1748
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1749
!ExternalStream class methodsFor:'Signal constants'!
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1750
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1751
inaccessibleSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1752
    "ST-80 compatibility: return openErrorSignal"
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1753
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1754
    ^ self openErrorSignal
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1755
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1756
    "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
  1757
!
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  1758
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1759
invalidModeSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1760
    "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
  1761
     or binary-I/O with a text stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1762
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1763
    ^ InvalidModeError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1764
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1765
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1766
invalidOperationSignal
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1767
    "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
  1768
     I/O operation is attempted"
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1769
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1770
    ^ InvalidOperationError
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1771
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  1772
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1773
invalidReadSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1774
    "return the signal raised when reading from writeonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1775
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1776
    ^ InvalidReadError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1777
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1778
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1779
invalidWriteSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1780
    "return the signal raised when writing to readonly streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1781
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1782
    ^ InvalidWriteError
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1783
!
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1784
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1785
openErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1786
    "return the signal raised when a file open failed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1787
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1788
    ^ OpenErrorSignal
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1789
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1790
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1791
streamIOErrorSignal
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1792
    "return the signal raised when an I/O error occurs.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1793
     (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
  1794
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1795
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1796
    ^ StreamIOError
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1797
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1798
    "Created: / 21.5.1998 / 16:32:55 / cg"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1799
!
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  1800
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1801
streamNotOpenSignal
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1802
    "return the signal raised on I/O with closed streams"
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1803
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  1804
    ^ StreamNotOpenError
2
claus
parents: 1
diff changeset
  1805
! !
claus
parents: 1
diff changeset
  1806
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  1807
!ExternalStream class methodsFor:'error handling'!
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1808
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1809
errorReporter
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1810
    "I know about error codes"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1811
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1812
    ^ self
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1813
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1814
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1815
lastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1816
    "return the errno of the last error"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1817
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1818
    ^ LastErrorNumber
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1819
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1820
    "
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1821
     ExternalStream lastErrorNumber
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  1822
    "
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1823
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1824
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1825
lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1826
    "return a message string describing the last error"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1827
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1828
    ^ OperatingSystem errorTextForNumber:LastErrorNumber
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1829
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1830
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1831
     ExternalStream lastErrorString
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1832
    "
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1833
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1834
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1835
reportOn:anErrorSymbolOrNumber
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1836
    "an error occured.
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1837
     Report it via an Exception"
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1838
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1839
    anErrorSymbolOrNumber isInteger ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1840
	StreamError
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1841
	    raiseRequestWith:anErrorSymbolOrNumber
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1842
	    errorString:(' - os error:' , (OperatingSystem errorTextForNumber:anErrorSymbolOrNumber))
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1843
    ].
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1844
    (self respondsTo:anErrorSymbolOrNumber) ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1845
	self perform:anErrorSymbolOrNumber
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1846
    ] ifFalse:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1847
	StreamError
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1848
	    raiseRequestWith:anErrorSymbolOrNumber
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1849
	    errorString:(' - ' , anErrorSymbolOrNumber printString)
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1850
    ].
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  1851
    ^ false
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1852
! !
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1853
7497
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1854
!ExternalStream class methodsFor:'obsolete'!
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1855
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1856
makePTYPair
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1857
    "obsolete since 12-07-2003"
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1858
    <resource:#obsolete>
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1859
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1860
    self obsoleteMethodWarning:'use NonPositionableExternalStream makePTYPair'.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1861
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1862
    ^ NonPositionableExternalStream makePTYPair.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1863
!
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1864
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1865
makePipe
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1866
    "obsolete since 12-07-2003"
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1867
    <resource:#obsolete>
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1868
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1869
    self obsoleteMethodWarning:'use NonPositionableExternalStream makePipe'.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1870
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1871
    ^ NonPositionableExternalStream makePipe.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1872
! !
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7261
diff changeset
  1873
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7195
diff changeset
  1874
!ExternalStream methodsFor:'Compatibility-Dolphin'!
6474
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1875
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1876
beText
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1877
    self text
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1878
! !
92a666c5b104 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6461
diff changeset
  1879
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7195
diff changeset
  1880
!ExternalStream methodsFor:'Compatibility-Squeak'!
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1881
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1882
nextInto:aByteArrayOrString
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1883
    "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
  1884
     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
  1885
     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
  1886
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1887
    |n nWanted|
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1888
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1889
    nWanted := aByteArrayOrString byteSize.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1890
    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
  1891
    n == nWanted ifTrue:[^ aByteArrayOrString].
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1892
    ^ aByteArrayOrString copyTo:n
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1893
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1894
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1895
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1896
readInto:aContainer startingAt:index count:nElements
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1897
    "same as #nextBytes:into:startingAt: for ByteArrays;
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1898
     for LongArrays, nelements longs are read.
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1899
     Squeak compatibility."
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1900
4368
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1901
    |elementSize n|
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1902
d69568f9ad95 squeak compatibility fixes
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1903
    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
  1904
    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
  1905
    ^ n // elementSize
3872
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1906
13940
12eb1c056d5e fixed: #readInto:startingAt:count:; offset was wrong for non-byte elements
Claus Gittinger <cg@exept.de>
parents: 13927
diff changeset
  1907
    "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
  1908
!
cab901645d2a added #nextInto: and #readInto: for Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 3863
diff changeset
  1909
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1910
readOnly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1911
    "Squeak compatibility: make the stream readOnly"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1912
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1913
    mode := #readonly
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1914
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1915
    "Modified: 20.10.1997 / 19:23:04 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1916
    "Created: 20.10.1997 / 19:23:19 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1917
! !
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1918
5187
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1919
!ExternalStream methodsFor:'Signal constants'!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1920
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1921
invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1922
    ^ self class invalidReadSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1923
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1924
    "Created: / 3.12.1998 / 15:12:06 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1925
!
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1926
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1927
invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1928
    ^ self class invalidWriteSignal
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1929
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1930
    "Created: / 3.12.1998 / 15:12:10 / cg"
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1931
! !
4bf3787cc63a category renamining
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1932
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1933
!ExternalStream methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1934
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1935
binary
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1936
    "switch to binary mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1937
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1938
    binary := true
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1939
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1940
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1941
buffered:aBoolean
10
claus
parents: 5
diff changeset
  1942
    "turn buffering on or off - default is on"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1943
10
claus
parents: 5
diff changeset
  1944
    buffered := aBoolean
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1945
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1946
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1947
contents
2
claus
parents: 1
diff changeset
  1948
    "return the contents of the file from the current position up-to
claus
parents: 1
diff changeset
  1949
     the end. If the stream is in binary mode, a ByteArray containing
claus
parents: 1
diff changeset
  1950
     the byte values is returned.
claus
parents: 1
diff changeset
  1951
     In text-mode, a collection of strings, each representing one line,
claus
parents: 1
diff changeset
  1952
     is returned."
claus
parents: 1
diff changeset
  1953
claus
parents: 1
diff changeset
  1954
    |text l chunks sizes chunk byteCount cnt bytes offset|
claus
parents: 1
diff changeset
  1955
claus
parents: 1
diff changeset
  1956
    binary ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1957
	"adding to a ByteArray produces quadratic time-space
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1958
	 behavior - therefore we allocate chunks, and concatenate them
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1959
	 at the end."
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1960
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1961
	chunks := OrderedCollection new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1962
	sizes := OrderedCollection new.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1963
	byteCount := 0.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1964
	[self atEnd] whileFalse:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1965
	    chunk := ByteArray uninitializedNew:4096.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1966
	    cnt := self nextBytes:(chunk size) into:chunk.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1967
	    cnt notNil ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1968
		chunks add:chunk.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1969
		sizes add:cnt.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1970
		byteCount := byteCount + cnt
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1971
	    ]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1972
	].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1973
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1974
	"now, create one big ByteArray"
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1975
	bytes := ByteArray uninitializedNew:byteCount.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1976
	offset := 1.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1977
	1 to:chunks size do:[:index |
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1978
	    chunk := chunks at:index.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  1979
	    cnt := sizes at:index.
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1980
	    bytes replaceFrom:offset to:(offset + cnt - 1) with:chunk.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1981
	    offset := offset + cnt
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1982
	].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1983
	^ bytes
2
claus
parents: 1
diff changeset
  1984
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1985
244
9faa2da0650a Text <-> StringCollection
claus
parents: 223
diff changeset
  1986
    text := StringCollection new.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1987
    [self atEnd] whileFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1988
	l := self nextLine.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1989
	l isNil ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1990
	    ^ text
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1991
	].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  1992
	text add:l
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1993
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1994
    ^ text
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1995
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1996
11751
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  1997
contentsAsString
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  1998
    "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
  1999
     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
  2000
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2001
    ^ self contentsOfEntireFile
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2002
!
1e75c54748ef added #contentsAsString for Filename compatibility
Stefan Vogel <sv@exept.de>
parents: 11651
diff changeset
  2003
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2004
contentsOfEntireFile
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  2005
    "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
  2006
     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
  2007
6305
53b87502fc21 Fix #contentsOfEntireFile
Stefan Vogel <sv@exept.de>
parents: 6269
diff changeset
  2008
    binary ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2009
	^ self contents.
3938
4e7d1880336b oops - #contentsOfEntireFile must return a byteArray if in binaryMode.
Claus Gittinger <cg@exept.de>
parents: 3906
diff changeset
  2010
    ].
6305
53b87502fc21 Fix #contentsOfEntireFile
Stefan Vogel <sv@exept.de>
parents: 6269
diff changeset
  2011
    ^ self upToEnd
1522
1d0b4bc2e563 ST-80 compatibility: #contentsOfEntireFile must return a String.
Stefan Vogel <sv@exept.de>
parents: 1515
diff changeset
  2012
3876
a680b41a014c comment
Claus Gittinger <cg@exept.de>
parents: 3872
diff changeset
  2013
    "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
  2014
    "Modified: / 27.11.1998 / 16:29:43 / cg"
2
claus
parents: 1
diff changeset
  2015
!
claus
parents: 1
diff changeset
  2016
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2017
contentsSpecies
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2018
    "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
  2019
     (such as upTo)"
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2020
5441
e88302747bbd rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5431
diff changeset
  2021
    binary == true ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2022
	^ ByteArray
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2023
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2024
    ^ String
2
claus
parents: 1
diff changeset
  2025
!
claus
parents: 1
diff changeset
  2026
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2027
eolMode:aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2028
    "specify how end-of-line (EOL) is to be marked.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2029
     The argument may be one of:
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2030
	#crlf         -> add a CR-NL, as in MSDOS
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2031
	#cr           -> add a CR, as in VMS
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2032
	#nl           -> add a NL, as in Unix
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2033
	anyOther      -> like #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2034
    "
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2035
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2036
    eolMode := aSymbolOrNil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2037
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2038
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2039
fileDescriptor
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2040
    "return the fileDescriptor of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2041
     notice: this one returns the underlying OSs fileDescriptor -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2042
     this may not be available on all platforms (i.e. non unix systems)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2043
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3956
diff changeset
  2044
%{
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2045
    OBJ _handle  = __INST(handle);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2046
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2047
    if (_handle != nil) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2048
	if (__INST(handleType) == @symbol(socketHandle)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2049
	    RETURN (_handle);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2050
	} else if ((__INST(handleType) == nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2051
		     || (__INST(handleType) == @symbol(filePointer))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2052
		     || (__INST(handleType) == @symbol(socketFilePointer))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2053
		     || (__INST(handleType) == @symbol(pipeFilePointer))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2054
	    RETURN ( __MKINT(fileno(__FILEVal(_handle))));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2055
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2056
    }
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2057
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2058
    handle isNil ifTrue:[^ self errorNotOpen].
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2059
    ^ self fileDescriptorOfFile:handle
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2060
!
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2061
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2062
fileDescriptorOfFile:handle
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2063
    "for migration to rel5 only:
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2064
     return the fileDescriptor of the argument handle -
5852
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2065
     notice: this one returns the underlying OSs fileDescriptor -
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2066
     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
  2067
338c6e0cab8f rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5851
diff changeset
  2068
    self primitiveFailed
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2069
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2070
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2071
fileHandle
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2072
    "return the fileHandle of the receiver.
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2073
     Under unix, this is the fileDescriptor; under windows, this is the Handle."
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2074
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2075
%{
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2076
    OBJ _handle  = __INST(handle);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2077
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2078
    if (_handle != nil) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2079
	if ((__INST(handleType) == @symbol(fileHandle))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2080
	    || (__INST(handleType) == @symbol(socketHandle))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2081
	    RETURN (_handle);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2082
	} else if ((__INST(handleType) == nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2083
		     || (__INST(handleType) == @symbol(filePointer))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2084
		     || (__INST(handleType) == @symbol(socketFilePointer))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2085
		     || (__INST(handleType) == @symbol(pipeFilePointer))) {
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2086
#ifdef WIN32
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2087
	    RETURN(__MKEXTERNALADDRESS(_get_osfhandle(fileno(__FILEVal(_handle)))));
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2088
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2089
	    RETURN (__MKINT(fileno(__FILEVal(_handle))));
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2090
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2091
	}
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2092
    }
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2093
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2094
    handle isNil ifTrue:[^ self errorNotOpen].
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2095
    ^ handle
10455
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2096
!
8a434bc03256 +fileHandle
Claus Gittinger <cg@exept.de>
parents: 10450
diff changeset
  2097
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2098
filePointer
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2099
    "return the filePointer of the receiver -
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2100
     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
  2101
     a FILE * - not a fileDescriptor.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2102
     (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
  2103
     You cannot do much with the returned value
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2104
     - except passing it to a primitive, for example."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2105
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2106
    (handleType isNil or:[handleType == #filePointer]) ifTrue:[
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2107
	^ handle
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2108
    ].
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2109
    ^ self error:'not a FILE*'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2110
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2111
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2112
handleType
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2113
    ^ handleType
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2114
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2115
5323
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2116
lineEndCRLF
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2117
    eolMode := #crlf
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2118
!
f4c3a230f42f more VW compatibility
Claus Gittinger <cg@exept.de>
parents: 5204
diff changeset
  2119
3016
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2120
lineEndTransparent
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2121
    eolMode := #cr
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2122
!
42466b291fae more ST80 compatibility
ca
parents: 2999
diff changeset
  2123
8069
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2124
pathName
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2125
    "answer the pathName of the stream.
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2126
     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
  2127
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2128
    ^ ''
8069
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2129
!
fdf460457c96 acessing: pathName added (returns nil)
Michael Beyl <mb@exept.de>
parents: 8066
diff changeset
  2130
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2131
readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2132
    "set access mode to readonly"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2133
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2134
    mode := #readonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2135
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2136
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2137
readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2138
    "set access mode to readwrite"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2139
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2140
    mode := #readwrite
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2141
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2142
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2143
text
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2144
    "switch to text mode - default is text"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2145
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2146
    binary := false
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2147
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2148
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2149
useCRLF:aBoolean
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2150
    "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
  2151
     This method is provided for backward compatibility - see #eolMode:
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2152
     which offers another choice."
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2153
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2154
    aBoolean ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2155
	eolMode := #crlf
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2156
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2157
	eolMode := #nl
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2158
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2159
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2160
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2161
writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2162
    "set access mode to writeonly"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2163
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2164
    mode := #writeonly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2165
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2166
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2167
!ExternalStream methodsFor:'closing'!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2168
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2169
close
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2170
    "close the stream.
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  2171
     No error of the stream is not open."
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2172
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2173
    self isOpen ifTrue:[
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2174
	Lobby unregister:self.
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2175
	self closeFile.
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  2176
    ].
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2177
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2178
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2179
shutDown
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2180
    "close the stream - added for protocol compatibility with PipeStream.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2181
     see comment there"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2182
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2183
    self isOpen ifTrue:[
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2184
	Lobby unregister:self.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2185
	self closeFile
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2186
    ]
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2187
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2188
    "Modified: 30.8.1996 / 00:39:21 / cg"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2189
! !
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2190
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2191
!ExternalStream methodsFor:'copying'!
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2192
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2193
copy
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2194
    "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
  2195
     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
  2196
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2197
    |copy|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2198
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2199
    copy := super copy.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2200
    copy dupFd.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2201
    Lobby register:copy.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2202
    ^ copy
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2203
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2204
    "
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2205
       |stream1 stream2|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2206
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2207
       stream1 := Filename newTemporary writeStream.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2208
       stream2 := stream1 copy.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2209
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2210
       stream1 inspect.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2211
       stream2 inspect.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2212
    "
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2213
! !
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  2214
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2215
!ExternalStream methodsFor:'error handling'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2216
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2217
argumentMustBeCharacter
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2218
    "report an error, that the argument must be a character in 0..FF"
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2219
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2220
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2221
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2222
    ArgumentError raiseErrorString:' - argument must be a single byte character'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2223
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2224
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2225
argumentMustBeInteger
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2226
    "report an error, that the argument must be an integer"
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2227
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2228
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2229
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2230
    ArgumentError raiseErrorString:' - argument must be an integer'
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2231
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2232
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2233
argumentMustBeString
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2234
    "report an error, that the argument must be a string"
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2235
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2236
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2237
14440
88e708da1ae1 changed:
Stefan Vogel <sv@exept.de>
parents: 14438
diff changeset
  2238
    ArgumentError raiseErrorString:' - argument must be a string'
612
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
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2241
errorAlreadyOpen
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2242
    "{ Pragma: +optSpace }"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2243
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2244
    "report an error, that the stream is already opened"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2245
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2246
    ^ OpenError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2247
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2248
	errorString:' - stream is already open'
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2249
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2250
    "
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2251
      self new errorAlreadyOpen
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2252
    "
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2253
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2254
    "Modified: / 8.5.1999 / 20:12:30 / cg"
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2255
!
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4468
diff changeset
  2256
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2257
errorBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2258
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2259
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2260
    "report an error, that the stream is in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2261
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2262
    ^ InvalidModeError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2263
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2264
	errorString:(self class name , ' is in binary mode')
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2265
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2266
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2267
    "Modified: / 8.5.1999 / 20:12:43 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2268
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2269
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2270
errorNotBinary
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2271
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2272
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2273
    "report an error, that the stream is not in binary mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2274
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2275
    ^ InvalidModeError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2276
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2277
	errorString:(self class name , ' is not in binary mode')
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2278
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2279
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2280
    "Modified: / 8.5.1999 / 20:12:40 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2281
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2282
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2283
errorNotBuffered
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2284
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2285
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2286
    "report an error, that the stream is not in buffered mode"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2287
8074
4dce05d6d0a1 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8070
diff changeset
  2288
    ^ StreamError
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2289
	raiseRequestWith:self
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2290
	errorString:(self class name , ' is unbuffered - operation not allowed')
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2291
	"/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2292
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2293
    "Modified: / 8.5.1999 / 20:12:36 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2294
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2295
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2296
errorNotOpen
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2297
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2298
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2299
    "report an error, that the stream has not been opened"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2300
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2301
    ^ StreamNotOpenError raiseRequestWith:self  "/ in:thisContext sender
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2302
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2303
    "Modified: / 8.5.1999 / 20:12:33 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2304
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2305
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2306
errorReadOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2307
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2308
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2309
    "report an error, that the stream is a readOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2310
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2311
    ^ 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
  2312
4468
8c67b4f973d8 raise vs. raiseRequest
Claus Gittinger <cg@exept.de>
parents: 4456
diff changeset
  2313
    "Modified: / 30.7.1999 / 17:08:19 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2314
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2315
6255
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2316
errorReporter
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2317
    "ST-80 mimicry."
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2318
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  2319
    ^ self class
6255
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2320
!
d68343dc8288 Define #errorReporter and #reportError: (ST-80 protocol)
Stefan Vogel <sv@exept.de>
parents: 6012
diff changeset
  2321
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2322
errorUnsupportedOperation
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2323
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2324
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2325
    "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
  2326
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2327
    ^ 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
  2328
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2329
    "Modified: / 8.5.1999 / 20:12:24 / cg"
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2330
!
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  2331
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2332
errorWriteOnly
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2333
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2334
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2335
    "report an error, that the stream is a writeOnly stream"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2336
8511
eb02df149f42 Raise proceedable exception proceedable.
Stefan Vogel <sv@exept.de>
parents: 8472
diff changeset
  2337
    ^ 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
  2338
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2339
    "Modified: / 8.5.1999 / 20:12:20 / cg"
2
claus
parents: 1
diff changeset
  2340
!
claus
parents: 1
diff changeset
  2341
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2342
ioError
3474
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2343
    "report an error, that some I/O error occured.
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2344
     (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
  2345
     which is no longer available and has been mounted soft)"
1af4d150dab4 added extra streamIOError signal.
Claus Gittinger <cg@exept.de>
parents: 3467
diff changeset
  2346
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2347
    "{ Pragma: +optSpace }"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2348
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2349
    self ioError:lastErrorNumber
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2350
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2351
    "Modified: / 8.5.1999 / 20:12:16 / cg"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2352
!
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2353
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2354
ioError:errorNumber
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2355
    "report an error, that some I/O error occured.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2356
     (for example, a device-IO-error, or reading an NFS-dir,
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2357
     which is no longer available and has been mounted soft)"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2358
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2359
    "{ Pragma: +optSpace }"
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2360
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2361
    ^ StreamIOError newException
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2362
	errorCode:errorNumber;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2363
	osErrorHolder:(OperatingSystem errorHolderForNumber:errorNumber);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2364
	parameter:self;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2365
	raiseRequest
4161
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2366
3f2758cfeff5 raise errors in thisContext (not in sender context)
Claus Gittinger <cg@exept.de>
parents: 4152
diff changeset
  2367
    "Modified: / 8.5.1999 / 20:12:16 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2368
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2369
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2370
lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2371
    "return the last error"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2372
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2373
    ^ lastErrorNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2374
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2375
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2376
lastErrorString
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2377
    "return a message string describing the last error"
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
    (lastErrorNumber isNil or:[lastErrorNumber == 0]) ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2380
	^ 'I/O error'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2381
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2382
    ^ OperatingSystem errorTextForNumber:lastErrorNumber
2
claus
parents: 1
diff changeset
  2383
!
claus
parents: 1
diff changeset
  2384
10932
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2385
lastErrorSymbol
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2386
    "return an error symbol describing the last error"
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2387
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2388
    ^ OperatingSystem errorSymbolForNumber:lastErrorNumber
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2389
!
c9148f19b2ea add #lastErrorSymbol
Stefan Vogel <sv@exept.de>
parents: 10852
diff changeset
  2390
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2391
openError
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2392
    "report an error, that the open failed"
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2393
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2394
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2395
14438
a4280b8038c0 changed:
Stefan Vogel <sv@exept.de>
parents: 14068
diff changeset
  2396
    ^ self openError:lastErrorNumber.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2397
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2398
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2399
openError:errorNumber
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2400
    "report an error, that the open failed"
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2401
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2402
    "{ Pragma: +optSpace }"
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2403
15496
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2404
    |exClass errorHolder|
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2405
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2406
    errorHolder := OperatingSystem errorHolderForNumber:errorNumber.
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2407
21bb54fa8521 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15494
diff changeset
  2408
    exClass := (errorHolder errorCategory == #nonexistentSignal)
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2409
	ifTrue:[ FileDoesNotExistException ]
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2410
	ifFalse:[ OpenError ].
13673
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2411
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2412
    ^ exClass newException
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2413
	errorCode:errorNumber;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2414
	osErrorHolder:errorHolder;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2415
	"/ cg: initialized lazyly - see OpenError>>#description
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2416
	"/ errorString:(' : ' , errorHolder errorString);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2417
	parameter:self;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2418
	raiseRequest
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2419
	"/ in:thisContext sender
13673
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2420
744194003e48 changed:
Claus Gittinger <cg@exept.de>
parents: 13306
diff changeset
  2421
    "Modified: / 09-09-2011 / 07:22:49 / cg"
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2422
!
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  2423
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2424
readError
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2425
    "report an error, that some read error occured"
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2426
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2427
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2428
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2429
    ^ self readError:lastErrorNumber
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2430
!
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2431
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2432
readError:errorNumber
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2433
    "report an error, that some read error occured"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2434
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2435
    "{ Pragma: +optSpace }"
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2436
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2437
    ^ ReadError newException
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2438
	errorCode:errorNumber;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2439
	osErrorHolder:(OperatingSystem errorHolderForNumber:errorNumber);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2440
	parameter:self;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2441
	raiseRequest
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2442
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2443
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2444
writeError
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2445
    "report an error, that some write error occured"
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2446
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2447
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  2448
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2449
    ^ self writeError:lastErrorNumber
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2450
!
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2451
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2452
writeError:errorNumber
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2453
    "report an error, that some write error occured"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2454
15845
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2455
    "{ Pragma: +optSpace }"
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2456
2b732fc8a4f4 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15655
diff changeset
  2457
    ^ WriteError newException
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2458
	errorCode:errorNumber;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2459
	osErrorHolder:(OperatingSystem errorHolderForNumber:errorNumber);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2460
	parameter:self;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2461
	raiseRequest
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2462
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2463
6461
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2464
!ExternalStream methodsFor:'finalization'!
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2465
15468
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2466
executor
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2467
    "return a copy for finalization-registration;
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2468
     since all we need at finalization time is the fileDescriptor,
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2469
     a cheaper copy is possible."
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2470
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2471
    ^ self class basicNew setAccessor:handleType to:handle
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2472
!
816f9e81a546 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15452
diff changeset
  2473
6461
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2474
finalizationLobby
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2475
    "answer the registry used for finalization.
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2476
     ExternalStreams have their own Registry"
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2477
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2478
    ^ Lobby
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2479
!
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2480
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2481
finalize
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2482
    "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
  2483
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2484
    self closeFile
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2485
! !
f5efaff3457b Allow #registerForFinalization for classes defining their own Lobby.
Stefan Vogel <sv@exept.de>
parents: 6441
diff changeset
  2486
15918
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2487
!ExternalStream methodsFor:'initialization'!
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2488
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2489
initialize
15921
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2490
    position := 0.
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2491
    binary := false.
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2492
    buffered := true.
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2493
    eolMode := DefaultEOLMode.
9941c0e5132a initialize methods
Stefan Vogel <sv@exept.de>
parents: 15920
diff changeset
  2494
    hitEOF := false.
15918
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2495
! !
d5fe9b9e87d3 Initialize in instance initialize method insted in #new
Stefan Vogel <sv@exept.de>
parents: 15896
diff changeset
  2496
2
claus
parents: 1
diff changeset
  2497
!ExternalStream methodsFor:'line reading/writing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2498
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2499
nextLine
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2500
    "read the next line (characters up to newline).
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2501
     Return a string containing those characters excluding the newline.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2502
     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
  2503
     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
  2504
     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
  2505
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2506
    |line error|
971
eb70f5674303 max lineLength (in nextLine) increased to 16k
Claus Gittinger <cg@exept.de>
parents: 933
diff changeset
  2507
12873
f6b24aa46bb1 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 12710
diff changeset
  2508
%{  /* STACK:100000 */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2509
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2510
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2511
    int len, ret;
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  2512
    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
  2513
    char *rslt, *nextPtr, *limit;
22
847106305963 *** empty log message ***
claus
parents: 12
diff changeset
  2514
    int fd, ch;
1068
92fdcccf12a3 alles MIST - zurueck zu 1.89 und NOCONTEXT entfernt
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  2515
    int _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  2516
    OBJ fp;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2517
    int lineTooLong = 0;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2518
    int cutOff = 0;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2519
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2520
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2521
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2522
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2523
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2524
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2525
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2526
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2527
	    && (__INST(mode) != @symbol(writeonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2528
	    && (__INST(binary) != true)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2529
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2530
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2531
	    buffer[0] = '\0';
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2532
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2533
	    _buffered = (__INST(buffered) == true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2534
	    if (_buffered) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2535
		__READING__(f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2536
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2537
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2538
	    rslt = nextPtr = buffer;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2539
	    limit = buffer + sizeof(buffer) - 2;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2540
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2541
	    for (;;) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2542
		__READBYTE__(ret, f, nextPtr, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2543
		if (ret <= 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2544
		    if (nextPtr == buffer)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2545
			rslt = NULL;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2546
		    if (ret == 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2547
			__INST(hitEOF) = true;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2548
			break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2549
		    } else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2550
			error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2551
			goto err;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2552
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2553
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2554
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2555
		if (*nextPtr == '\n') {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2556
		    cutOff = 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2557
		    *nextPtr = '\0';
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2558
		    break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2559
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2560
		if (*nextPtr == '\r') {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2561
		    char peekChar;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2562
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2563
		    /*
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2564
		     * peek ahead for a newLine ...
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2565
		     */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2566
		    __READBYTE__(ret, f, &peekChar, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2567
		    if (ret <= 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2568
			cutOff = 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2569
			*nextPtr = '\0';
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2570
			if (ret == 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2571
			    __INST(hitEOF) = true;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2572
			    break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2573
			}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2574
			error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2575
			goto err;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2576
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2577
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2578
		    if (peekChar == '\n') {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2579
			cutOff = 2;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2580
			*nextPtr = '\0';
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2581
			break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2582
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2583
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2584
		    __UNGETC__(peekChar, f, _buffered);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2585
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2586
		    cutOff = 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2587
		    *nextPtr = '\0';
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2588
		    break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2589
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2590
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2591
		nextPtr++;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2592
		if (nextPtr >= limit) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2593
		    *nextPtr = '\0';
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2594
		    lineTooLong = 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2595
		    if (@global(InfoPrinting) == true) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2596
			fprintf(stderr, "ExtStream [warning]: line truncated in nextLine\n");
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2597
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2598
		    break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2599
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2600
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2601
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2602
	    if (rslt != NULL) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2603
		len = nextPtr-buffer;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2604
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2605
		if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2606
		    INT np = __intVal(__INST(position)) + len + cutOff;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2607
		    OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2608
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2609
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2610
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2611
		    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2612
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2613
		/* remove any EOL character */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2614
		if (len != 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2615
		    if (buffer[len-1] == '\n') {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2616
			buffer[--len] = '\0';
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2617
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2618
		    if ((len != 0) && (buffer[len-1] == '\r')) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2619
			buffer[--len] = '\0';
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2620
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2621
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2622
		line = __MKSTRING_L(buffer, len);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2623
		if (! lineTooLong) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2624
		    RETURN ( line );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2625
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2626
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2627
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2628
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  2629
err: ;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2630
%}.
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2631
    line notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2632
	"/ the line as read is longer than 32k characters (boy - what a line)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2633
	"/ The exception could be handled by reading more and returning the
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2634
	"/ concatenation in your exception handler (the receiver and the partial
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2635
	"/ line are passed as parameter)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2636
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2637
	LineTooLongErrorSignal isHandled ifTrue:[
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2638
	    ^ LineTooLongErrorSignal
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2639
		raiseRequestWith:(Array with:self with:line)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2640
		     errorString:('line too long read error')
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2641
	].
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2642
	^ line , self nextLine
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2643
    ].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  2644
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  2645
    (hitEOF == true) ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2646
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2647
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2648
	^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2649
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2650
    handle isNil ifTrue:[^ self errorNotOpen].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2651
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
5431
24ce291c71f2 migration support
Claus Gittinger <cg@exept.de>
parents: 5430
diff changeset
  2652
    (binary == true) ifTrue:[^ self errorBinary].
24ce291c71f2 migration support
Claus Gittinger <cg@exept.de>
parents: 5430
diff changeset
  2653
    ^ super nextLine
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2654
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2655
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2656
nextPutLine:aString
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2657
    "write the characters in aString and append an end-of-Line marker
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2658
     (LF, CR or CRLF - depending in the setting of eolMode)"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2659
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2660
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2661
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2662
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  2663
    int len, cnt, len1, _buffered;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  2664
    OBJ fp;
537
dc4dad8a5ddd many ExtStream rewrites - has to be reevaluated in all platforms
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  2665
    char *cp;
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  2666
    int o_offs;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2667
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2668
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2669
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2670
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2671
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2672
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  2673
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2674
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2675
	    && (__INST(mode) != @symbol(readonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2676
	    && (__INST(binary) != true)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2677
	    && __isStringLike(aString)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2678
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2679
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2680
	    len = __stringSize(aString);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2681
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2682
	    if (_buffered = (__INST(buffered) == true)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2683
		__WRITING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2684
	    }
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  2685
#ifdef WIN32
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2686
	    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2687
		cnt = __win32_fwrite(__stringVal(aString), 1, len, f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2688
	    } else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2689
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2690
	    {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2691
		o_offs = (char *)__stringVal(aString)-(char *)aString;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2692
		__WRITEBYTES_OBJ__(cnt, f, aString, o_offs, len, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2693
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2694
	    if (cnt == len) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2695
		OBJ mode = __INST(eolMode);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2696
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2697
		len1 = len;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2698
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2699
		if (mode == @symbol(cr)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2700
		    cp = "\r"; len = 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2701
		} else if (mode == @symbol(crlf)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2702
		    cp = "\r\n"; len = 2;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2703
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2704
		    cp = "\n"; len = 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2705
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2706
#ifdef WIN32
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2707
		if ((f == __win32_stdout()) || (f == __win32_stderr())) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2708
		    cnt = __win32_fwrite(cp, 1, len, f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2709
		} else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2710
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2711
		{
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2712
		    __WRITEBYTES__(cnt, f, cp, len, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2713
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2714
		if (cnt > 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2715
		    if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2716
			INT np = __intVal(__INST(position)) + cnt;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2717
			OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2718
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2719
			t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2720
		    } else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2721
			__INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2722
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2723
		    RETURN ( self );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2724
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2725
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2726
	    error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2727
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2728
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2729
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2730
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2731
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2732
	self writeError:error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2733
	^ self
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2734
    ].
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  2735
    super nextPutLine:aString.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2736
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2737
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2738
nextPutLinesFrom:aStream upToLineStartingWith:aStringOrNil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2739
    "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
  2740
     and append all lines to self.
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2741
     Can be used to copy/create large files or copy from a pipe/socket.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2742
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2743
     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
  2744
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2745
    |line|
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2746
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2747
    [aStream atEnd] whileFalse:[
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2748
	line := aStream nextLine.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2749
	line isNil ifTrue:[
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2750
	    ^ self.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2751
	].
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2752
	self nextPutLine:line.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2753
	(aStringOrNil notNil and:[line startsWith:aStringOrNil]) ifTrue:[
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2754
	    ^ self
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2755
	]
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2756
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2757
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2758
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2759
peekForLineStartingWith:aString
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2760
    "read ahead for next line starting with aString;
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2761
     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
  2762
     If matched, do not advance position beyond that line
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  2763
     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
  2764
     If not matched, reposition to original position for further reading."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2765
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2766
    |firstPos lastPos line|
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2767
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2768
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2769
    handle isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2770
    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
  2771
    buffered ifFalse:[^ self errorNotBuffered].
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  2772
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2773
    firstPos := self position.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2774
    [self atEnd] whileFalse:[
8070
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2775
	lastPos := self position.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2776
	line := self nextLine.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2777
	line isNil ifTrue:[
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2778
	    self position:firstPos.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2779
	    ^ nil
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2780
	].
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2781
	(line startsWith:aString) ifTrue:[
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2782
	    self position:lastPos.
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2783
	    ^ line
2fec8e67e119 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8069
diff changeset
  2784
	]
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2785
    ].
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2786
    self position:firstPos.
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2787
    ^ nil
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2788
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2789
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2790
peekForLineStartingWithAny:aCollectionOfStrings
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2791
    "read ahead for next line starting with any of aCollectionOfStrings;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2792
     return the index in aCollection if found, nil otherwise..
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2793
     If no match, do not change position; otherwise advance right before the
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2794
     matched line so that nextLine will return this line."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2795
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2796
    |line startPos linePos index|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2797
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2798
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2799
    handle isNil ifTrue:[^ self errorNotOpen].
2
claus
parents: 1
diff changeset
  2800
    binary ifTrue:[^ self errorBinary].
claus
parents: 1
diff changeset
  2801
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2802
    startPos := self position.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2803
    [self atEnd] whileFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2804
	linePos := self position.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2805
	line := self nextLine.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2806
	line notNil ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2807
	    index := 1.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2808
	    aCollectionOfStrings do:[:prefix |
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2809
		(line startsWith:prefix) ifTrue:[
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2810
		    self position:linePos.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2811
		    ^ index
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2812
		].
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2813
		index := index + 1
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2814
	    ]
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2815
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2816
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2817
    self position:startPos.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2818
    ^ nil
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2819
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2820
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2821
!ExternalStream methodsFor:'misc functions'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2822
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2823
async:aBoolean
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2824
    "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
  2825
     the receiver will trigger an ioInterrupt.
779
0e41a665038a commentary
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  2826
     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
  2827
     Notice:
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  2828
	not every OS supports this
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2829
	- check with OS>>supportsIOInterrupts before using"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2830
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2831
    |fd|
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2832
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2833
    handle isNil ifTrue:[^ self errorNotOpen].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2834
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2835
    OperatingSystem supportsIOInterrupts ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2836
	^ self errorUnsupportedOperation
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2837
    ].
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2838
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2839
    fd := self fileDescriptor.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2840
    aBoolean ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  2841
	^ OperatingSystem enableIOInterruptsOn:fd
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2842
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2843
    ^ OperatingSystem disableIOInterruptsOn:fd
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2844
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2845
    "Modified: 11.1.1997 / 17:50:21 / cg"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2846
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2847
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2848
blocking:aBoolean
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2849
    "set/clear the blocking attribute - if set (which is the default)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2850
     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
  2851
     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
  2852
     nil.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  2853
     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
  2854
     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
  2855
     in advance. However, the data must then be read using #nextBytes:
8616
6014ed5c67f9 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8614
diff changeset
  2856
     methods, in order to avoid other (pastEndRead) exceptions."
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2857
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2858
    handle isNil ifTrue:[^ self errorNotOpen].
7499
53b7a86e1f0b ExternalStream>>blocking: returns previous blocking status
Stefan Vogel <sv@exept.de>
parents: 7497
diff changeset
  2859
    ^ 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
  2860
3174
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2861
    "Modified: / 11.1.1997 / 17:48:01 / cg"
668414a73de9 Typo in comment
Stefan Vogel <sv@exept.de>
parents: 3132
diff changeset
  2862
    "Modified: / 15.1.1998 / 11:49:48 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2863
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2864
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2865
copyToEndInto:outStream
7017
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  2866
    "copy the data into another stream."
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  2867
8362
e17d9ffb6fa8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8339
diff changeset
  2868
    |bufferSize|
7700
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2869
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2870
    OperatingSystem isMSDOSlike ifTrue:[
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2871
	"/ mhmh - NT hangs, when copying bigger blocks to a network drive - why ?
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2872
	bufferSize := 1 * 1024.
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2873
    ] ifFalse:[
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  2874
	bufferSize := 8 * 1024.
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2875
    ].
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2876
7017
03f1bd57c001 no one cares about the signal in copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 7013
diff changeset
  2877
    ^ self copyToEndInto:outStream bufferSize:bufferSize
7700
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2878
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2879
    "
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2880
     |in out|
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2881
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2882
     in := 'Makefile' asFilename readStream.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2883
     out := Stdout.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2884
     in copyToEndInto:out.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2885
     in close.
767e11efc326 use sendfile if supported by OS
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2886
    "
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2887
!
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  2888
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2889
create
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2890
    "create the stream
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2891
     - this must be redefined in subclass"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2892
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2893
    ^ self subclassResponsibility
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2894
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2895
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2896
ioctl:ioctlNumber
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2897
    "to provide a simple ioctl facility - an ioctl is performed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2898
     on the underlying file; no arguments are passed."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2899
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2900
    ^ self ioctl:ioctlNumber with:nil
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2901
!
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2902
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2903
ioctl:ioctlNumber with:arg
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2904
    "to provide a simple ioctl facility - an ioctl is performed
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2905
     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
  2906
     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
  2907
     - for example, to control proprietrary I/O devices.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2908
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2909
     Since the type of the argument depends on the ioctl being
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2910
     performed, different arg types are allowed here.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2911
     If the argument is nil, an ioctl without argument is performed.
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2912
     If the argument is an integral number, it's directly passed;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2913
     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
  2914
     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
  2915
     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
  2916
     This allows performing most ioctls
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2917
     - however, it might be tricky to setup the buffer.
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2918
     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
  2919
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2920
    |error|
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2921
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  2922
%{
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2923
#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
  2924
    int fd;
10552
d52aa8e066e5 #ioctl:with: accept 32-bit integers as arguments
Stefan Vogel <sv@exept.de>
parents: 10469
diff changeset
  2925
    int ret;
d52aa8e066e5 #ioctl:with: accept 32-bit integers as arguments
Stefan Vogel <sv@exept.de>
parents: 10469
diff changeset
  2926
    unsigned int ioNum;
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2927
    INT ioArg;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2928
    OBJ fp = __INST(handle);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2929
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2930
    if (fp == nil)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2931
	goto out;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2932
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2933
    if (!__isInteger(ioctlNumber)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2934
	 || (!__isInteger(arg)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2935
	     && (arg != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2936
	     && !__isBytes(arg)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2937
	     && !__isExternalBytesLike(arg)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2938
	     && !__isExternalAddress(arg))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2939
	error = @symbol(badArgument);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2940
	goto out;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2941
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2942
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2943
    if (__INST(handleType) == @symbol(socketHandle)) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2944
	fd = __FILEVal(fp);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2945
    } else if ((__INST(handleType) == nil)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2946
	 || (__INST(handleType) == @symbol(filePointer))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2947
	 || (__INST(handleType) == @symbol(socketFilePointer))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2948
	 || (__INST(handleType) == @symbol(pipeFilePointer))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2949
	fd = fileno(__FILEVal(fp));
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2950
    } else {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2951
	error = @symbol(badHandleType);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2952
	goto out;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2953
    }
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2954
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2955
    ioNum = __unsignedLongIntVal(ioctlNumber);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2956
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2957
    __BEGIN_INTERRUPTABLE__
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2958
    do {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2959
	__threadErrno = 0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2960
	if (arg == nil) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2961
	    ioArg = 0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2962
	} else if (__isSmallInteger(arg)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2963
	    ioArg = __intVal(arg);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2964
	} else if (__isInteger(arg)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2965
	    ioArg = __unsignedLongIntVal(arg);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2966
	} else if (__isExternalBytesLike(arg)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2967
	    ioArg = (INT)(__externalBytesAddress(arg));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2968
	} else if (__isExternalAddress(arg)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2969
	    ioArg = (INT)(__externalAddressVal(arg));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2970
	} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2971
	    ioArg = (INT)(__ByteArrayInstPtr(arg)->ba_element);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2972
	}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2973
	ret = ioctl(fd, ioNum, ioArg);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2974
    } while (ret < 0 && __threadErrno == EINTR);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2975
    __END_INTERRUPTABLE__
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2976
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2977
    if (ret >= 0) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2978
	RETURN ( __mkSmallInteger(ret) );
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2979
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2980
    error = __mkSmallInteger(__threadErrno);
791
b1c153b1c719 WIN32 has no ioctl
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
  2981
#endif
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2982
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2983
out:;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2984
%}.
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2985
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2986
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2987
	^ self ioError:error.
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2988
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  2989
    handle isNil ifTrue:[^ self errorNotOpen].
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2990
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  2991
    "/ the system does not support ioctl (MSDOS or VMS)
2920
9c10b66e1ba8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2903
diff changeset
  2992
    ^ self errorUnsupportedOperation
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2993
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2994
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2995
tcgetattr
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2996
    "unix only:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2997
     provide the information of a tcgetattr call as a dictionary.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2998
     This provides terminal setting values of a tty or pty.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  2999
     Used by terminal emulators.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3000
     On non-unix systems, an unsupported operation error is raised"
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3001
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3002
    |error ret
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3003
     iflags "/ input flags
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3004
     ignbrk brkint ignpar parmrk inpck istrip inlcr igncr
16509
2cf139885242 Fixed ExternalStream>>tcgetattr
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16508
diff changeset
  3005
     icrnl iuclc ixon ixoff ixany imaxbel iutf8
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3006
     oflags "/ output flags
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3007
     opost onlcr ocrnl olcuc onocr onlret oxtabs onoteot
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3008
     cflags "/ control flags
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3009
     csize cstopb cread parenb parodd hupcl clocal
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3010
     lflags "/ local flags
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3011
     echoke echoe echok echo echonl echoprt echoctl
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3012
     isig icanon altwerase iexten extproc tostop
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3013
     |
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3014
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3015
%{
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3016
#if !defined(MSDOS_LIKE) && !defined(__openVMS__)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3017
    int fd;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3018
    int _ret;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3019
    OBJ fp = __INST(handle);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3020
    struct termios t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3021
    int sz;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3022
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3023
    if (fp == nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3024
	goto out;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3025
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3026
    if (__INST(handleType) == @symbol(socketHandle)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3027
	fd = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3028
    } else if ((__INST(handleType) == nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3029
	 || (__INST(handleType) == @symbol(filePointer))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3030
	 || (__INST(handleType) == @symbol(socketFilePointer))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3031
	 || (__INST(handleType) == @symbol(pipeFilePointer))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3032
	fd = fileno(__FILEVal(fp));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3033
    } else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3034
	error = @symbol(badHandleType);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3035
	goto out;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3036
    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3037
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3038
    __BEGIN_INTERRUPTABLE__
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3039
    do {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3040
	__threadErrno = 0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3041
	_ret = tcgetattr(fd, &t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3042
    } while (_ret < 0 && __threadErrno == EINTR);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3043
    __END_INTERRUPTABLE__
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3044
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3045
    if (_ret < 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3046
	error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3047
    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3048
    ignbrk = t.c_iflag & IGNBRK ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3049
    brkint = t.c_iflag & BRKINT ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3050
    ignpar = t.c_iflag & IGNPAR ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3051
    parmrk = t.c_iflag & PARMRK ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3052
    inpck = t.c_iflag & INPCK ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3053
    istrip = t.c_iflag & ISTRIP ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3054
    inlcr = t.c_iflag & INLCR ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3055
    ixon = t.c_iflag & IXON ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3056
    ixoff = t.c_iflag & IXOFF ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3057
    ixany = t.c_iflag & IXANY ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3058
#ifdef IMAXBEL
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3059
    imaxbel = t.c_iflag & IMAXBEL ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3060
#endif
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3061
#ifdef IUCLC
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3062
    iuclc = t.c_iflag & IUCLC ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3063
#endif
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3064
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3065
    opost = t.c_oflag & OPOST ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3066
    onlcr = t.c_oflag & ONLCR ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3067
#ifdef OXTABS
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3068
    oxtabs = t.c_oflag & OXTABS ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3069
#endif
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3070
#ifdef ONOTEOT
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3071
    onoteot = t.c_oflag & ONOTEOT ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3072
#endif
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3073
    ocrnl = t.c_oflag & OCRNL ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3074
#ifdef OLCUC
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3075
    olcuc = t.c_oflag & OLCUC ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3076
#endif
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3077
    onocr = t.c_oflag & ONOCR ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3078
    onlret = t.c_oflag & ONLRET ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3079
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3080
    sz = t.c_cflag & CSIZE;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3081
    switch (sz) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3082
	case CS5:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3083
	    csize = @symbol(cs5);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3084
	    break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3085
	case CS6:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3086
	    csize = @symbol(cs6);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3087
	    break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3088
	case CS7:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3089
	    csize = @symbol(cs7);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3090
	    break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3091
	case CS8:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3092
	    csize = @symbol(cs8);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3093
	    break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3094
    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3095
    cstopb = t.c_cflag & CSTOPB ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3096
    cread = t.c_cflag & CREAD ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3097
    parenb = t.c_cflag & PARENB ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3098
    parodd = t.c_cflag & PARODD ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3099
    hupcl = t.c_cflag & HUPCL ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3100
    clocal = t.c_cflag & CLOCAL ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3101
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3102
    echoke = t.c_lflag & ECHOKE ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3103
    echoe = t.c_lflag & ECHOE ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3104
    echo = t.c_lflag & ECHO ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3105
    echonl = t.c_lflag & ECHONL ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3106
    echoctl = t.c_lflag & ECHOCTL ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3107
    isig = t.c_lflag & ISIG ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3108
    icanon = t.c_lflag & ICANON ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3109
#ifdef ALTWERASE
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3110
    altwerase = t.c_lflag & ALTWERASE ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3111
#endif
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3112
#ifdef IEXTEN
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3113
    iexten = t.c_lflag & IEXTEN ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3114
#endif
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3115
#ifdef EXTPROC
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3116
    extproc = t.c_lflag & EXTPROC ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3117
#endif
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3118
#ifdef TOSTOP
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3119
    tostop = t.c_lflag & TOSTOP ? true : false;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3120
#endif
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3121
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3122
#else
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3123
    error = @symbol(unsupportedOperation);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3124
#endif
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3125
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3126
out:;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3127
%}.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3128
    error notNil ifTrue:[
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3129
	error == #unsupportedOperation ifTrue:[
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3130
	    "/ the system does not support tcgetattr
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3131
	    ^ self errorUnsupportedOperation
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3132
	].
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3133
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3134
	^ self ioError:error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3135
    ].
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3136
    handle isNil ifTrue:[^ self errorNotOpen].
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3137
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3138
    "/ construct a dictionary...
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3139
    ret := Dictionary new.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3140
    ret at:#iflags put:(iflags := Dictionary new).
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3141
    ret at:#oflags put:(oflags := Dictionary new).
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3142
    ret at:#cflags put:(cflags := Dictionary new).
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3143
    ret at:#lflags put:(lflags := Dictionary new).
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3144
    iflags at:#ignbrk put:ignbrk.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3145
    iflags at:#brkint put:brkint.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3146
    iflags at:#ignpar put:ignpar.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3147
    iflags at:#parmrk put:parmrk.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3148
    iflags at:#inpck put:inpck.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3149
    iflags at:#istrip put:istrip.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3150
    iflags at:#inlcr put:inlcr.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3151
    iflags at:#igncr put:igncr.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3152
    iflags at:#icrnl put:icrnl.
16509
2cf139885242 Fixed ExternalStream>>tcgetattr
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16508
diff changeset
  3153
    iflags at:#uiclc put:iuclc.
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3154
    iflags at:#ixon put:ixon.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3155
    iflags at:#ixoff put:ixoff.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3156
    iflags at:#ixany put:ixany.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3157
    iflags at:#imaxbel put:imaxbel.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3158
    iflags at:#iutf8 put:iutf8.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3159
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3160
    oflags at:#opost put:opost.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3161
    oflags at:#onlcr put:onlcr.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3162
    oflags at:#oxtabs put:oxtabs.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3163
    oflags at:#onoteot put:onoteot.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3164
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3165
    cflags at:#csize put:csize.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3166
    cflags at:#cstopb put:cstopb.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3167
    cflags at:#cread put:cread.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3168
    cflags at:#parenb put:parenb.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3169
    cflags at:#parodd put:parodd.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3170
    cflags at:#hupcl put:hupcl.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3171
    cflags at:#clocal put:clocal.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3172
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3173
    lflags at:#echoke put:echoke.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3174
    lflags at:#echoe put:echoe.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3175
    lflags at:#echok put:echok.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3176
    lflags at:#echo put:echo.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3177
    lflags at:#echonl put:echonl.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3178
    lflags at:#echoprt put:echoprt.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3179
    lflags at:#echoctl put:echoctl.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3180
    lflags at:#isig put:isig.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3181
    lflags at:#icanon put:icanon.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3182
    lflags at:#altwerase put:altwerase.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3183
    lflags at:#iexten put:iexten.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3184
    lflags at:#extproc put:extproc.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3185
    lflags at:#tostop put:tostop.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3186
    ^ ret
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3187
!
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3188
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3189
reset
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3190
    "set the read position to the beginning of the collection"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3191
15361
ff526d39bb07 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 15342
diff changeset
  3192
    self position:0
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3193
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3194
1044
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3195
setToEnd
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3196
    "redefined since it must be implemented differently"
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3197
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3198
    ^ self subclassResponsibility
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3199
!
c2fb3818e097 ExtSTream>>next: did not work correct if interrupted.
Stefan Vogel <sv@exept.de>
parents: 971
diff changeset
  3200
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3201
sync
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3202
    "make sure, that the OS writes cached data to the disk"
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3203
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3204
    |error|
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3205
14774
788d94977e4e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14760
diff changeset
  3206
    self flush.
788d94977e4e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14760
diff changeset
  3207
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3208
%{
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3209
#if !defined(__openVMS__)
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3210
    int fd;
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3211
    int ret;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3212
    OBJ fp = __INST(handle);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3213
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3214
    if (fp == nil)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3215
	goto out;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3216
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3217
    if (__INST(handleType) == @symbol(socketHandle)) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3218
	fd = __FILEVal(fp);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3219
    } else if ((__INST(handleType) == nil)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3220
	       || (__INST(handleType) == @symbol(filePointer))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3221
	       || (__INST(handleType) == @symbol(socketFilePointer))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3222
	       || (__INST(handleType) == @symbol(pipeFilePointer))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3223
	fd = fileno(__FILEVal(fp));
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3224
    } else {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3225
	error = @symbol(badHandleType);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3226
	goto out;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3227
    }
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3228
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3229
#ifdef WIN32
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3230
     __threadErrno = 0;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3231
     ret = __STX_API_NOINT_CALL1( "FlushFileBuffers", FlushFileBuffers, _get_osfhandle(fd));
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3232
     if (ret) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3233
	 RETURN (self);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3234
     }
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3235
#else
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3236
     __BEGIN_INTERRUPTABLE__
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3237
     do {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3238
	 ret = fsync(fd);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3239
     } while ((ret < 0) && (__threadErrno == EINTR));
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3240
     __END_INTERRUPTABLE__
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3241
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3242
     if (ret >= 0) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3243
	 RETURN (self);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3244
     }
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3245
#endif /* ! WIN32 */
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3246
     error = __mkSmallInteger(__threadErrno);
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3247
#endif /* ! __openVMS__ */
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3248
out:;
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3249
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3250
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3251
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3252
	self ioError:error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3253
	^ self.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3254
    ].
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3255
    handle isNil ifTrue:[self errorNotOpen].
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3256
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3257
    "
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3258
	|f|
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3259
	f := 'x' asFilename writeStream.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3260
	f nextPutAll:'hallo'; sync; syncData; close
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3261
    "
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3262
!
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3263
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3264
syncData
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3265
    "make sure, that the OS writes cached data to the disk.
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3266
     In this case, metadata is only written, if it is
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3267
     required to read the file's data (so metadata will not be written,
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3268
     if only access/modification time has changed)."
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3269
    |error|
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3270
14774
788d94977e4e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14760
diff changeset
  3271
    self flush.
788d94977e4e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14760
diff changeset
  3272
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3273
%{
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3274
#if !defined(__openVMS__)
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3275
    int fd;
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3276
    int ret;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3277
    OBJ fp = __INST(handle);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3278
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3279
    if (fp == nil)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3280
	goto out;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3281
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3282
    if (__INST(handleType) == @symbol(socketHandle)) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3283
	fd = __FILEVal(fp);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3284
    } else if ((__INST(handleType) == nil)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3285
	       || (__INST(handleType) == @symbol(filePointer))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3286
	       || (__INST(handleType) == @symbol(socketFilePointer))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3287
	       || (__INST(handleType) == @symbol(pipeFilePointer))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3288
	fd = fileno(__FILEVal(fp));
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3289
    } else {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3290
	error = @symbol(badHandleType);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3291
	goto out;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3292
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3293
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3294
#ifdef WIN32
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3295
     __threadErrno = 0;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3296
     ret = __STX_API_NOINT_CALL1( "FlushFileBuffers", FlushFileBuffers, _get_osfhandle(fd));
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3297
     if (ret) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3298
	 RETURN (self);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3299
     }
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3300
#else
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3301
     __BEGIN_INTERRUPTABLE__
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3302
     do {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3303
	 ret = fdatasync(fd);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3304
     } while ((ret < 0) && (__threadErrno == EINTR));
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3305
     __END_INTERRUPTABLE__
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3306
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3307
     if (ret >= 0) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3308
	 RETURN (self);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3309
     }
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3310
#endif /* ! WIN32 */
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3311
     error = __mkSmallInteger(__threadErrno);
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3312
#endif /* ! __openVMS__ */
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3313
out:;
11648
1d9d6c39b050 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11396
diff changeset
  3314
%}.
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3315
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3316
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3317
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3318
	self ioError:error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3319
	^ self.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3320
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3321
    handle isNil ifTrue:[^ self errorNotOpen].
11651
a2f6ca848f35 Fix #sync and #syncData for windows
Stefan Vogel <sv@exept.de>
parents: 11650
diff changeset
  3322
14760
3cd759eef99f class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14753
diff changeset
  3323
    "if notdef HAS_DATASYNC, fall back"
3cd759eef99f class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14753
diff changeset
  3324
    self sync.
3cd759eef99f class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14753
diff changeset
  3325
11651
a2f6ca848f35 Fix #sync and #syncData for windows
Stefan Vogel <sv@exept.de>
parents: 11650
diff changeset
  3326
    "
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3327
	|f|
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3328
	f := 'x' asFilename writeStream.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3329
	f nextPutAll:'hallo'; sync; syncData; close
932
f57ec42ceb44 added interface to truncate & ftruncate (req. by Mr. Olberding)
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
  3330
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3331
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3332
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3333
!ExternalStream methodsFor:'non homogenous reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3334
15254
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3335
next:count into:anObject startingAt:start
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3336
    "read the next count bytes into an object and return the number of
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3337
     bytes read or the number of bytes read, if EOF is encountered before.
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3338
     If the receiver is some socket/pipe-like stream, an exception
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3339
     is raised if the connection is broken.
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3340
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3341
     Warning: if used with a pipe/socket, this blocks until the requested number
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3342
     of bytes have been read. See #nextAvailableBytes:into:startingAt:
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3343
     to only read whats there.
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3344
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3345
     Notice, that in contrast to other methods,
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3346
     this does NOT return nil on EOF, but the actual count.
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3347
     Thus allowing read of partial blocks.
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3348
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3349
     The object must have non-pointer indexed instvars
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3350
     (i.e. it must be a ByteArray, String, Float- or DoubleArray),
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3351
     or an externalBytes object (with known size).
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3352
     If anObject is a string or byteArray and reused, this provides the
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3353
     fastest possible physical I/O (since no new objects are allocated).
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3354
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3355
     Use with care - non object oriented I/O.
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3356
     Warning: in general, you cannot use this method to pass data from other
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3357
     architectures (unless you prepared the buffer with care),
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3358
     since it does not care for byte order or float representation."
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3359
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3360
    ^ self nextBytes:count into:anObject startingAt:start
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3361
!
1d0a262c1743 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14847
diff changeset
  3362
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3363
nextAvailable:count
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3364
    "return the next count elements of the stream as aCollection.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3365
     If the stream reaches the end before count elements have been read,
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3366
     return what is available. (i.e. a shorter collection).
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3367
     The type of collection is specified in #contentsSpecies."
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3368
3956
51f1a9a4d63f changes for egcs (stdio uses __new / utsname)
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  3369
    |buffer n|
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3370
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3371
    binary ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3372
	buffer := ByteArray uninitializedNew:count
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3373
    ] ifFalse:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3374
	buffer := String uninitializedNew:count
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3375
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3376
    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
  3377
    n == 0 ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3378
	binary ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3379
	    ^ #[]
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3380
	].
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3381
	^ ''
5202
e8130049b18f #nextAvailableBytes:into:startingAt: may NOT set EOF flag,
Claus Gittinger <cg@exept.de>
parents: 5187
diff changeset
  3382
    ].
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3383
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3384
    n ~~ count ifTrue:[
7832
f8a02752ca28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7806
diff changeset
  3385
	^ buffer copyTo:n
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3386
    ].
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3387
    ^ buffer.
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3388
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3389
    "
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3390
     (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
  3391
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:10
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3392
     (ReadStream on:'hello') nextAvailable:3
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3393
     (ReadStream on:'hello') nextAvailable:10
3674
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3394
    "
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3395
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3396
    "Modified: / 16.6.1998 / 15:52:41 / cg"
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3397
!
c51550d1df17 added #nextAvailable:
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
  3398
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3399
nextAvailableBytes:count into:anObject startingAt:start
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3400
    "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
  3401
     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
  3402
     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
  3403
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3404
     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
  3405
     is raised if the connection is broken.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3406
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3407
     Notice, that in contrast to other methods,
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3408
     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
  3409
     Thus allowing read of partial blocks.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3410
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3411
     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
  3412
     (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
  3413
     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
  3414
     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
  3415
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3416
     Use with care - non object oriented I/O.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3417
     Warning: in general, you cannot use this method to pass data from other
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3418
     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
  3419
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3420
    |error|
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3421
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3422
%{
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3423
    FILEPOINTER f;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3424
    int cnt, offs, ret, _buffered;
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3425
    int objSize, nInstBytes;
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3426
    char *cp;
3445
2639c1e3fd0b nextAvail also for externalBytes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  3427
    char *extPtr;
7195
755c46f9b774 also handle subclasses of ExternalBytes (Mapped..)
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
  3428
    OBJ fp;
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3429
    int o_offs;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3430
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3431
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3432
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3433
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3434
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3435
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3436
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3437
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3438
	    && (__INST(mode) != @symbol(writeonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3439
	    && __bothSmallInteger(count, start)
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
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3442
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3443
	    cnt = __intVal(count);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3444
	    offs = __intVal(start) - 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3445
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3446
	    if (__isExternalBytesLike(anObject)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3447
		OBJ sz;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3448
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3449
		nInstBytes = 0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3450
		extPtr = (char *)(__externalBytesAddress(anObject));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3451
		if (extPtr == NULL) goto bad;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3452
		sz = __externalBytesSize(anObject);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3453
		if (__isSmallInteger(sz)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3454
		    objSize = __intVal(sz);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3455
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3456
		    objSize = 0; /* unknown */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3457
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3458
	    } else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3459
		OBJ oClass = __Class(anObject);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3460
		int nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3461
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3462
		nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3463
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3464
		switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3465
		    case BYTEARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3466
		    case WORDARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3467
		    case LONGARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3468
		    case SWORDARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3469
		    case SLONGARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3470
		    case FLOATARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3471
			break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3472
		    case DOUBLEARRAY:
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3473
#ifdef __NEED_DOUBLE_ALIGN
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3474
			nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1);
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3475
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3476
			break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3477
		    case LONGLONGARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3478
		    case SLONGLONGARRAY:
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3479
#ifdef __NEED_LONGLONG_ALIGN
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3480
			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
  3481
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3482
			break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3483
		    default:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3484
			goto bad;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3485
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3486
		extPtr = (char *)0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3487
		objSize = __Size(anObject) - nInstBytes;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3488
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3489
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3490
	    if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3491
		_buffered = (__INST(buffered) == true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3492
		if (_buffered) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3493
		    __READING__(f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3494
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3495
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3496
		if (extPtr) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3497
		    __READAVAILBYTES__(ret, f, extPtr+offs, cnt, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3498
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3499
		    /*
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3500
		     * on interrupt, anObject may be moved to another location.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3501
		     * So we pass (char *)__InstPtr(anObject) + nInstBytes + offs to the macro __READ_BYTES__,
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3502
		     * to get a new address.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3503
		     */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3504
		    offs += nInstBytes;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3505
		    __READAVAILBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3506
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3507
		/* 0 is NOT an EOF condition here ... */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3508
		if (ret >= 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3509
		    if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3510
			INT np = __intVal(__INST(position)) + ret;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3511
			OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3512
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3513
			t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3514
		    } else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3515
			__INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3516
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3517
		    RETURN (__mkSmallInteger(ret));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3518
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3519
		__INST(position) = nil;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3520
		error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3521
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3522
	}
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3523
    }
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3524
bad: ;
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3525
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3526
    (hitEOF and:[self pastEndRead isNil]) ifTrue:[^ 0].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3527
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3528
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3529
	^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3530
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3531
    handle isNil ifTrue:[^ self errorNotOpen].
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3532
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3533
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3534
     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
  3535
    "
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3536
    ^ self primitiveFailed
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3537
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3538
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3539
nextByte
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3540
    "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
  3541
     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
  3542
     bytes binary value as an integer in 0..255."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3543
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3544
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3545
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3546
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3547
    unsigned char byte;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3548
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3549
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3550
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3551
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3552
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3553
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3554
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3555
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3556
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3557
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3558
	 && (__INST(mode) != @symbol(writeonly))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3559
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3560
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3561
	    _buffered = (__INST(buffered) == true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3562
	    if (_buffered) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3563
		__READING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3564
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3565
	    __READBYTE__(ret, f, &byte, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3566
	    if (ret > 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3567
		if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3568
		    INT np = __intVal(__INST(position)) + 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3569
		    OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3570
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3571
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3572
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3573
		    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3574
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3575
		RETURN (__mkSmallInteger(byte));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3576
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3577
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3578
	    if (ret == 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3579
		__INST(hitEOF) = true;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3580
	    } else /* ret < 0 */ {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3581
		__INST(position) = nil;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3582
		error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3583
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3584
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3585
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3586
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3587
    hitEOF ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3588
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3589
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3590
	^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3591
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3592
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3593
    ^ self errorWriteOnly
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3594
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3595
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3596
nextBytes:count into:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3597
    "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
  3598
     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
  3599
     If the receiver is some socket/pipe-like stream, an exception
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3600
     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
  3601
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3602
     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
  3603
     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
  3604
     to only read whats there.
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  3605
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3606
     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
  3607
     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
  3608
     Thus allowing read of partial blocks.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3609
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3610
     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
  3611
     (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
  3612
     or an externalBytes object (with known size).
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3613
     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
  3614
     fastest possible physical I/O (since no new objects are allocated).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3615
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3616
     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
  3617
     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
  3618
     architectures (unless you prepared the buffer with care),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3619
     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
  3620
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3621
    |error|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3622
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  3623
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  3624
    int cnt, offs, ret, _buffered;
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3625
    int objSize, nInstBytes;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  3626
    char *extPtr;
7195
755c46f9b774 also handle subclasses of ExternalBytes (Mapped..)
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
  3627
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3628
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3629
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3630
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3631
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3632
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3633
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3634
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3635
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3636
	    && (__INST(mode) != @symbol(writeonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3637
	    && __bothSmallInteger(count, start)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3638
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3639
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3640
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3641
	    cnt = __intVal(count);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3642
	    offs = __intVal(start) - 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3643
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3644
	    if (__isExternalBytesLike(anObject)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3645
		OBJ sz;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3646
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3647
		nInstBytes = 0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3648
		extPtr = (char *)(__externalBytesAddress(anObject));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3649
		if (extPtr == NULL) goto bad;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3650
		sz = __externalBytesSize(anObject);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3651
		if (__isSmallInteger(sz)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3652
		    objSize = __intVal(sz);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3653
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3654
		    objSize = 0; /* unknown */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3655
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3656
	    } else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3657
		OBJ oClass = __Class(anObject);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3658
		int nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3659
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3660
		nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3661
		switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3662
		    case BYTEARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3663
		    case WORDARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3664
		    case LONGARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3665
		    case SWORDARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3666
		    case SLONGARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3667
		    case FLOATARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3668
			break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3669
		    case DOUBLEARRAY:
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3670
#ifdef __NEED_DOUBLE_ALIGN
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3671
			nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1);
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  3672
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3673
			break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3674
		    case LONGLONGARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3675
		    case SLONGLONGARRAY:
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3676
#ifdef __NEED_LONGLONG_ALIGN
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3677
			nInstBytes = (nInstBytes-1+__LONGLONG_ALIGN) &~ (__LONGLONG_ALIGN-1);
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3678
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3679
			break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3680
		    default:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3681
			goto bad;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3682
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3683
		extPtr = (char *)0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3684
		objSize = __Size(anObject) - nInstBytes;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3685
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3686
	    if ((offs >= 0) && (cnt >= 0) && (objSize >= (cnt + offs))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3687
		_buffered = (__INST(buffered) == true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3688
		if (_buffered) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3689
		    __READING__(f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3690
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3691
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3692
		if (extPtr) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3693
		    __READBYTES__(ret, f, extPtr+offs, cnt, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3694
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3695
		    /*
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3696
		     * on interrupt, anObject may be moved to another location.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3697
		     * So we pass anObject, and the offset to the __READBYTES_OBJ__ macro.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3698
		     */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3699
		    offs += nInstBytes;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3700
		    __READBYTES_OBJ__(ret, f, anObject, offs, cnt, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3701
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3702
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3703
		if (ret > 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3704
		    if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3705
			INT np = __intVal(__INST(position)) + ret;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3706
			OBJ t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3707
		    } else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3708
			__INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3709
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3710
		    RETURN (__mkSmallInteger(ret));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3711
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3712
		if (ret == 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3713
		    __INST(hitEOF) = true;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3714
		} else /* ret < 0 */ {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3715
		    __INST(position) = nil;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3716
		    error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3717
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3718
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3719
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3720
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3721
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3722
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3723
    (hitEOF and:[self pastEndRead isNil]) ifTrue:[^ 0].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3724
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3725
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3726
	^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3727
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3728
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3729
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3730
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3731
     count not integer or arg not bit-like (String, ByteArray etc)
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3732
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3733
    ^ self primitiveFailed
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3734
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  3735
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3736
nextLong
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3737
    "Read four bytes (msb-first) and return the value as a 32-bit signed Integer.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3738
     The returned value may be a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3739
     (msb-first for compatibility with other smalltalks)"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3740
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3741
    ^ self nextUnsignedLongMSB:true
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3742
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3743
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3744
nextLongMSB:msbFlag
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3745
    "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
  3746
     which may be a LargeInteger.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3747
     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
  3748
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3749
     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
  3750
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3751
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3752
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3753
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3754
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3755
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3756
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3757
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3758
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3759
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3760
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3761
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3762
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3763
	    && (__INST(mode) != @symbol(writeonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3764
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3765
	    FILEPOINTER f;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3766
	    int ret, _buffered;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3767
	    int value;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3768
	    union {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3769
		unsigned char buffer[4];
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3770
		int intVal;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3771
	    } u;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3772
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3773
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3774
	    _buffered = (__INST(buffered) == true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3775
	    if (_buffered) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3776
		__READING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3777
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3778
	    __READBYTES__(ret, f, u.buffer, 4, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3779
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3780
	    if (ret == 4) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3781
		if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3782
		    INT np = __intVal(__INST(position)) + 4;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3783
		    OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3784
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3785
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3786
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3787
		    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3788
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3789
		if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  3790
#if defined(__MSBFIRST__)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3791
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3792
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3793
		    value = (u.buffer[0] & 0xFF);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3794
		    value = (value << 8) | (u.buffer[1] & 0xFF);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3795
		    value = (value << 8) | (u.buffer[2] & 0xFF);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3796
		    value = (value << 8) | (u.buffer[3] & 0xFF);
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3797
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3798
		} else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  3799
#if defined(__LSBFIRST__)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3800
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3801
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3802
		    value = (u.buffer[3] & 0xFF);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3803
		    value = (value << 8) | (u.buffer[2] & 0xFF);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3804
		    value = (value << 8) | (u.buffer[1] & 0xFF);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3805
		    value = (value << 8) | (u.buffer[0] & 0xFF);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3806
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3807
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3808
#if __POINTER_SIZE__ == 8
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3809
		RETURN ( __mkSmallInteger(value));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3810
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3811
		if ((value >= _MIN_INT) && (value <= _MAX_INT)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3812
		    RETURN ( __mkSmallInteger(value));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3813
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3814
		RETURN ( __MKLARGEINT(value) );
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3815
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3816
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3817
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3818
	    if (ret < 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3819
		__INST(position) = nil;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3820
		error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3821
	    } else /* ret == 0 */ {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3822
		__INST(hitEOF) = true;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3823
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3824
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3825
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3826
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3827
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3828
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3829
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3830
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3831
    ^ self readError:error.
362
claus
parents: 360
diff changeset
  3832
!
claus
parents: 360
diff changeset
  3833
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3834
nextShortMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3835
    "Read two bytes and return the value as a 16-bit signed Integer.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  3836
     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
  3837
     otherwise least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3838
     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
  3839
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3840
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3841
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3842
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3843
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3844
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3845
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3846
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3847
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3848
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3849
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3850
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3851
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3852
	    && (__INST(mode) != @symbol(writeonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3853
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3854
	    FILEPOINTER f;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3855
	    int ret, _buffered;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3856
	    short value;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3857
	    union {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3858
		unsigned char buffer[2];
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3859
		short shortVal;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3860
	    } u;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3861
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3862
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3863
	    _buffered = (__INST(buffered) == true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3864
	    if (_buffered) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3865
		__READING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3866
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3867
	    __READBYTES__(ret, f, u.buffer, 2, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3868
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3869
	    if (ret == 2) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3870
		if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3871
		    INT np = __intVal(__INST(position)) + 2;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3872
		    OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3873
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3874
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3875
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3876
		    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3877
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3878
		if (msbFlag == true) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3879
#if defined(__MSBFIRST__)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3880
		    value = u.shortVal;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3881
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3882
		    value = ((u.buffer[0] & 0xFF) << 8) | (u.buffer[1] & 0xFF);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3883
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3884
		} else {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3885
#if defined(__LSBFIRST__)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3886
		    value = u.shortVal;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3887
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3888
		    value = ((u.buffer[1] & 0xFF) << 8) | (u.buffer[0] & 0xFF);
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3889
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3890
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3891
		RETURN (__mkSmallInteger(value));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3892
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3893
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3894
	    if (ret < 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3895
		__INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3896
		error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3897
	    } else /* ret == 0 */ {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3898
		__INST(hitEOF) = true;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3899
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3900
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3901
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3902
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3903
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3904
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3905
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3906
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3907
    ^ self readError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3908
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3909
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3910
nextUnsignedLongMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3911
    "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
  3912
     a LargeInteger.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3913
     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
  3914
     least-significant byte comes first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3915
     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
  3916
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3917
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3918
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  3919
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3920
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3921
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  3922
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3923
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3924
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3925
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  3926
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  3927
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3928
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3929
	    && (__INST(mode) != @symbol(writeonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3930
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3931
	    FILEPOINTER f;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3932
	    int ret, _buffered;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3933
	    unsigned INT value;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3934
	    union {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3935
		unsigned char buffer[4];
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3936
		unsigned int intVal;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3937
	    } u;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3938
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3939
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3940
	    _buffered = (__INST(buffered) == true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3941
	    if (_buffered) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3942
		__READING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3943
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3944
	    __READBYTES__(ret, f, u.buffer, 4, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3945
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3946
	    if (ret == 4) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3947
		if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3948
		    INT np = __intVal(__INST(position)) + 4;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3949
		    OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3950
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3951
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3952
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3953
		    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3954
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3955
		if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  3956
#if defined(__MSBFIRST__)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3957
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3958
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3959
		    value = u.buffer[0];
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3960
		    value = (value << 8) | u.buffer[1];
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3961
		    value = (value << 8) | u.buffer[2];
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3962
		    value = (value << 8) | u.buffer[3];
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3963
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3964
		} else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  3965
#if defined(__LSBFIRST__)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3966
		    value = u.intVal;
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3967
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3968
		    value = u.buffer[3];
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3969
		    value = (value << 8) | u.buffer[2];
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3970
		    value = (value << 8) | u.buffer[1];
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3971
		    value = (value << 8) | u.buffer[0];
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3972
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3973
		}
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3974
#if __POINTER_SIZE__ == 8
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3975
		value &= 0xFFFFFFFF;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3976
		RETURN (__mkSmallInteger(value));
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3977
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3978
		if (value <= _MAX_INT) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3979
		    RETURN (__mkSmallInteger(value));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3980
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3981
		RETURN (__MKULARGEINT(value) );
4383
7a5abc09fb39 slightly tuned nextXXXLongMSB: and nextUnsignedXXXMSB:
Claus Gittinger <cg@exept.de>
parents: 4368
diff changeset
  3982
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3983
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3984
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3985
	    if (ret < 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3986
		__INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3987
		error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3988
	    } else /* ret == 0 */ {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3989
		__INST(hitEOF) = true;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3990
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  3991
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3992
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3993
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  3994
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  3995
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3996
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3997
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  3998
    ^ self readError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3999
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4000
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4001
nextUnsignedShortMSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4002
    "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
  4003
     If msbFlag is true, value is read with most-significant byte first,
1079
d47cd86b487b Make methods signal-proof.
Stefan Vogel <sv@exept.de>
parents: 1068
diff changeset
  4004
     otherwise least-significant byte comes first.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4005
     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
  4006
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4007
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4008
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4009
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4010
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4011
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4012
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4013
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4014
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4015
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4016
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4017
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4018
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4019
	    && (__INST(mode) != @symbol(writeonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4020
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4021
	    FILEPOINTER f;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4022
	    int ret, _buffered;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4023
	    unsigned int value;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4024
	    union {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4025
		unsigned char buffer[2];
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4026
		unsigned short shortVal;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4027
	    } u;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4028
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4029
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4030
	    _buffered = (__INST(buffered) == true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4031
	    if (_buffered) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4032
		__READING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4033
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4034
	    __READBYTES__(ret, f, u.buffer, 2, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4035
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4036
	    if (ret == 2) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4037
		if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4038
		    INT np = __intVal(__INST(position)) + 2;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4039
		    OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4040
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4041
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4042
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4043
		    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4044
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4045
		if (msbFlag == true) {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4046
#if defined(__MSBFIRST__)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4047
		    value = u.shortVal;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4048
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4049
		    value = (u.buffer[0] << 8) | u.buffer[1];
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4050
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4051
		} else {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4052
#if defined(__LSBFIRST__)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4053
		    value = u.shortVal;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4054
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4055
		    value = (u.buffer[1] << 8) | u.buffer[0];
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4056
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4057
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4058
		RETURN (__mkSmallInteger(value));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4059
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4060
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4061
	    if (ret < 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4062
		__INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4063
		error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4064
	    } else /* ret == 0 */ {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4065
		__INST(hitEOF) = true;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4066
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4067
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4068
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4069
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  4070
    hitEOF ifTrue:[^ self pastEndRead].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4071
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4072
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4073
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4074
    ^ self readError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4075
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4076
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4077
nextWord
15452
e2a3b2dc064b class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15435
diff changeset
  4078
    <resource: #obsolete>
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4079
    "in text-mode:
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
  4080
	 read the alphaNumeric next word (i.e. up to non letter-or-digit).
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
  4081
	 return a string containing those characters.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4082
     in binary-mode:
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
  4083
	 read two bytes (msb-first) and return the value as a 16-bit
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
  4084
	 unsigned Integer (for compatibility with other smalltalks)"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4085
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4086
    binary ifTrue:[
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14603
diff changeset
  4087
	^ self nextUnsignedShortMSB:true
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4088
    ].
14518
7dad78183779 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14440
diff changeset
  4089
    self obsoleteMethodWarning:'use #nextAlphaNumericWord'.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4090
    ^ self nextAlphaNumericWord
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4091
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4092
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4093
!ExternalStream methodsFor:'non homogenous writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4094
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4095
nextPutByte:aByteValue
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4096
    "write a byte.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4097
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4098
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4099
    |error|
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4100
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4101
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4102
    FILEPOINTER f;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4103
    char c;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4104
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4105
    int cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4106
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4107
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4108
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4109
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4110
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4111
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4112
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4113
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4114
	    && (__INST(mode) != @symbol(readonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4115
	    && __isSmallInteger(aByteValue)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4116
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4117
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4118
	    c = __intVal(aByteValue);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4119
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4120
	    if (_buffered = (__INST(buffered) == true)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4121
		__WRITING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4122
	    }
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  4123
#ifdef WIN32
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4124
	    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4125
		cnt = __win32_fwrite(&c, 1, 1, f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4126
	    } else
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  4127
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4128
	    {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4129
		__WRITEBYTE__(cnt, f, &c, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4130
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4131
	    if (cnt == 1) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4132
		if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4133
		    INT np = __intVal(__INST(position)) + 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4134
		    OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4135
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4136
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4137
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4138
		    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4139
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4140
		RETURN (self);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4141
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4142
	    if (cnt < 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4143
		__INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4144
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4145
	    error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4146
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4147
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4148
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4149
    handle isNil ifTrue:[self errorNotOpen. ^ self].
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4150
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4151
    lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4152
    self writeError:error.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4153
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4154
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4155
nextPutBytes:count from:anObject startingAt:start
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4156
    "write count bytes from an object starting at index start.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4157
     return the number of bytes written - which could be 0.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  4158
     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
  4159
     (i.e. be a ByteArray, String, Float- or DoubleArray),
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  4160
     or an externalBytes object (with known size).
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  4161
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4162
     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
  4163
     Warning:
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4164
	in general, you cannot use this method to pass non-byte data to other
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4165
	architectures (unless you prepared the buffer with care),
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4166
	since it does not care for byte order or float representation."
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4167
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4168
    |error|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4169
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4170
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4171
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4172
    int cnt, len, offs, ret;
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  4173
    int objSize, nInstBytes, _buffered;
3432
1228d4ba9518 allow reading/writing from/to ExternalBytes
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  4174
    char *extPtr;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  4175
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4176
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4177
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4178
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4179
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4180
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4181
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4182
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4183
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4184
	    && (__INST(mode) != @symbol(readonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4185
	    && __bothSmallInteger(count, start)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4186
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4187
	    len = __intVal(count);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4188
	    offs = __intVal(start) - 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4189
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4190
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4191
	    if (__isExternalBytesLike(anObject)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4192
		OBJ sz;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4193
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4194
		nInstBytes = 0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4195
		extPtr = (char *)__externalBytesAddress(anObject);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4196
		if (extPtr == NULL) goto bad;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4197
		sz = __externalBytesSize(anObject);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4198
		if (__isSmallInteger(sz)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4199
		    objSize = __intVal(sz);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4200
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4201
		    objSize = 0; /* unknown */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4202
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4203
	    } else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4204
		OBJ oClass = __Class(anObject);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4205
		int nInstVars = __intVal(__ClassInstPtr(oClass)->c_ninstvars);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4206
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4207
		nInstBytes = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4208
		switch (__intVal(__ClassInstPtr(oClass)->c_flags) & ARRAYMASK) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4209
		    case BYTEARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4210
		    case WORDARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4211
		    case LONGARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4212
		    case SWORDARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4213
		    case SLONGARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4214
		    case FLOATARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4215
			break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4216
		    case DOUBLEARRAY:
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  4217
#ifdef __NEED_DOUBLE_ALIGN
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4218
			nInstBytes = (nInstBytes-1+__DOUBLE_ALIGN) &~ (__DOUBLE_ALIGN-1);
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  4219
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4220
			break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4221
		    case LONGLONGARRAY:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4222
		    case SLONGLONGARRAY:
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  4223
#ifdef __NEED_LONGLONG_ALIGN
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4224
			nInstBytes = (nInstBytes-1+__LONGLONG_ALIGN) &~ (__LONGLONG_ALIGN-1);
15987
0fbfbdf4a0a5 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15921
diff changeset
  4225
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4226
			break;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4227
		    default:
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4228
			goto bad;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4229
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4230
		extPtr = (char *)0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4231
		objSize = __Size(anObject) - nInstBytes;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4232
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4233
	    if ( (offs >= 0) && (len >= 0) && (objSize >= (len + offs)) ) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4234
		if (_buffered = (__INST(buffered) == true)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4235
		    __WRITING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4236
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4237
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4238
		if (extPtr) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4239
		    __WRITEBYTES__(cnt, f, extPtr+offs, len, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4240
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4241
		    /*
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4242
		     * on interrupt, anObject may be moved to another location.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4243
		     * So we pass anObject, and the offset to the __WRITEBYTES_OBJ__ macro.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4244
		     */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4245
		    offs += nInstBytes;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4246
		    __WRITEBYTES_OBJ__(cnt, f, anObject, offs, len, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4247
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4248
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4249
		if (cnt >= 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4250
		    if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4251
			INT np = __intVal(__INST(position)) + cnt;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4252
			OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4253
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4254
			t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4255
		    } else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4256
			__INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4257
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4258
		    RETURN ( __mkSmallInteger(cnt) );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4259
		} else /* cnt < 0 */ {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4260
		    if (
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4261
#ifdef EWOULDBLOCK
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4262
			(__threadErrno == EWOULDBLOCK) ||
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4263
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4264
			(__threadErrno == EAGAIN)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4265
		    ) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4266
			RETURN ( __mkSmallInteger(0) );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4267
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4268
		    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4269
		    error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4270
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4271
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4272
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4273
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4274
bad: ;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4275
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4276
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4277
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4278
	self writeError:error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4279
	^ self
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4280
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4281
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4282
    (mode == #readonly) ifTrue:[^ self errorReadOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4283
    ^ self primitiveFailed
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4284
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4285
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4286
nextPutLong:aNumber MSB:msbFlag
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4287
    "Write the argument, aNumber as a long (four bytes). If msbFlag is
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4288
     true, data is written most-significant byte first; otherwise least
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4289
     first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4290
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4291
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4292
    |error|
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4293
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4294
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4295
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4296
    union {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4297
	char bytes[4];
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4298
	int intVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4299
    } u;
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4300
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4301
    int cnt, _buffered;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4302
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4303
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4304
    __INST(lastErrorNumber) = nil;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4305
    if (__isSmallInteger(aNumber)) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4306
	num = __intVal(aNumber);
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4307
    } else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4308
#if __POINTER_SIZE__ == 8
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4309
	goto badArg;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4310
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4311
	num = __longIntVal(aNumber);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4312
	if (num == 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4313
	    num = __signedLongIntVal(aNumber);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4314
	    if (num == 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4315
		/* bad arg or out-of-range integer
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4316
		 * (handled by the fallBack code)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4317
		 */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4318
		goto badArg;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4319
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4320
	}
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4321
#endif
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4322
    }
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4323
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4324
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4325
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4326
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4327
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4328
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4329
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4330
	 && (__INST(mode) != @symbol(readonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4331
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4332
	    if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4333
#if defined(__MSBFIRST__)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4334
		u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4335
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4336
		u.bytes[0] = (num >> 24) & 0xFF;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4337
		u.bytes[1] = (num >> 16) & 0xFF;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4338
		u.bytes[2] = (num >> 8) & 0xFF;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4339
		u.bytes[3] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4340
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4341
	    } else {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4342
#if defined(__LSBFIRST__)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4343
		u.intVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4344
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4345
		u.bytes[3] = (num >> 24) & 0xFF;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4346
		u.bytes[2] = (num >> 16) & 0xFF;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4347
		u.bytes[1] = (num >> 8) & 0xFF;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4348
		u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4349
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4350
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4351
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4352
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4353
	    if (_buffered = (__INST(buffered) == true)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4354
		__WRITING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4355
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4356
	    __WRITEBYTES__(cnt, f, u.bytes, 4, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4357
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4358
	    if (cnt == 4) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4359
		if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4360
		    INT np = __intVal(__INST(position)) + 4;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4361
		    OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4362
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4363
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4364
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4365
		    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4366
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4367
		RETURN ( self );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4368
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4369
	    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4370
	    error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4371
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4372
    }
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4373
badArg: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4374
%}.
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4375
    handle isNil ifTrue:[self errorNotOpen. ^ self].
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4376
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4377
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4378
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4379
	self writeError:error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4380
	^ self
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4381
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4382
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4383
    aNumber isInteger ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4384
	^ super nextPutLong:aNumber MSB:msbFlag
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4385
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4386
    self argumentMustBeInteger
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4387
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4388
15655
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  4389
nextPutShort:anIntegerOrCharacter MSB:msbFlag
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  4390
    "Write the argument, anIntegerOrCharacter as a short (two bytes). If msbFlag is
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4391
     true, data is written most-significant byte first; otherwise least
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4392
     first.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4393
     Works in both binary and text modes."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4394
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4395
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4396
%{
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4397
    int num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4398
    union {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4399
	char bytes[2];
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4400
	short shortVal;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4401
    } u;
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4402
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4403
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4404
    int cnt, _buffered;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4405
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4406
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4407
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4408
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4409
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4410
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4411
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4412
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4413
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4414
	    && (__INST(mode) != @symbol(readonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4415
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4416
	    if (__isSmallInteger(anIntegerOrCharacter)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4417
		num = __intVal(anIntegerOrCharacter);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4418
	    } else if (__isCharacter(anIntegerOrCharacter)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4419
		num = __smallIntegerVal(__characterVal(anIntegerOrCharacter));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4420
	    } else
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4421
		goto out;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4422
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4423
	    if (msbFlag == true) {
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8881
diff changeset
  4424
#if defined(__MSBFIRST__)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4425
		u.shortVal = num;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4426
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4427
		u.bytes[0] = (num >> 8) & 0xFF;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4428
		u.bytes[1] = num & 0xFF;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4429
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4430
	    } else {
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4431
#if defined(__LSBFIRST__)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4432
		u.shortVal = num;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4433
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4434
		u.bytes[1] = (num >> 8) & 0xFF;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4435
		u.bytes[0] = num & 0xFF;
4384
f8e779b99b14 slightly tuned nextPutLongMSB: and nextPutShortMSB:
Claus Gittinger <cg@exept.de>
parents: 4383
diff changeset
  4436
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4437
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4438
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4439
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4440
	    if (_buffered = (__INST(buffered) == true)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4441
		__WRITING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4442
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4443
	    __WRITEBYTES__(cnt, f, u.bytes, 2, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4444
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4445
	    if (cnt == 2) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4446
		if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4447
		    INT np = __intVal(__INST(position)) + 2;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4448
		    OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4449
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4450
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4451
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4452
		    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4453
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4454
		RETURN ( self );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4455
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4456
	    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4457
	    error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4458
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4459
    }
15655
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  4460
out:;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4461
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4462
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4463
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4464
	self writeError:error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4465
	^ self
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4466
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4467
    handle isNil ifTrue:[self errorNotOpen. ^ self].
7801
d930c353588d writeError: care for EWOULDBLOCK in nonBlocking case.
penk
parents: 7737
diff changeset
  4468
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4469
    self argumentMustBeInteger
10
claus
parents: 5
diff changeset
  4470
! !
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4471
7053
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4472
!ExternalStream methodsFor:'positioning'!
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4473
15619
3f2e6f5fab12 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15496
diff changeset
  4474
position
7053
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4475
    self subclassResponsibility
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4476
!
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4477
15619
3f2e6f5fab12 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15496
diff changeset
  4478
position:index0Based
7053
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4479
    self subclassResponsibility
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4480
! !
13e04c48e23c prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
  4481
12631
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4482
!ExternalStream methodsFor:'printing & storing'!
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4483
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4484
printOn:aStream
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4485
    aStream
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4486
	nextPutAll:self className;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4487
	nextPutAll:'(handle:('.
12631
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4488
    handle printOn:aStream.
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4489
    aStream nextPutAll:'))'
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4490
! !
9e55d449f787 added: #printOn:
Stefan Vogel <sv@exept.de>
parents: 12553
diff changeset
  4491
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4492
!ExternalStream methodsFor:'private'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4493
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4494
clearEOF
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4495
    hitEOF := false
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4496
! !
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4497
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4498
!ExternalStream protectedMethodsFor:'private'!
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4499
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4500
closeFile
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4501
    "low level close - may be redefined in subclasses
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4502
     Don't send this message, send #close instead"
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4503
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4504
    |fp error|
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4505
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4506
    fp := handle.
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4507
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4508
%{
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4509
    int rslt;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4510
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4511
    if (fp == nil) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4512
	error = @symbol(errorNotOpen);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4513
	goto out;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4514
    }
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4515
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4516
    if (__INST(handleType) == @symbol(socketHandle)) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4517
	SOCKET sock = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4518
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4519
	if (@global(FileOpenTrace) == true) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4520
	    fprintf(stderr, "close socket [ExternalStream] %"_lx_"\n", (INT)sock);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4521
	}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4522
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4523
	// whether the close() will be successful or not - the handle is invalid now!
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4524
	__INST(handle) = nil;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4525
	do {
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4526
#ifdef WIN32
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4527
	    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
  4528
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4529
	    rslt = close(sock);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4530
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4531
	} while((rslt < 0) && (__threadErrno == EINTR));
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4532
    } else if ((__INST(handleType) == nil)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4533
	       || (__INST(handleType) == @symbol(filePointer))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4534
	       || (__INST(handleType) == @symbol(socketFilePointer))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4535
	       || (__INST(handleType) == @symbol(pipeFilePointer)))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4536
    {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4537
	FILEPOINTER f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4538
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4539
	if (@global(FileOpenTrace) == true) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4540
	    fprintf(stderr, "fclose [ExternalStream] %"_lx_"\n", (INT)f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4541
	}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4542
	// whether the close() will be successful or not - the handle is invalid now!
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4543
	__INST(handle) = nil;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4544
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4545
#ifdef WIN32
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4546
	if (__INST(mode) != @symbol(readonly) && __INST(buffered) != false) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4547
	    // do a fflush() first, so that fclose() doesn't block
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4548
	    // we suspect, that EINTR causes problems in fclose()
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4549
	    do {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4550
		__threadErrno = 0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4551
		rslt = __STX_C_CALL1("fflush", fflush, f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4552
	    } while((rslt < 0) && (__threadErrno == EINTR));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4553
	}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4554
	do {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4555
	    __threadErrno = 0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4556
	    rslt = __STX_C_NOINT_CALL1("fclose", fclose, f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4557
	} while((rslt < 0) && (__threadErrno == EINTR));
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4558
#else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4559
	__BEGIN_INTERRUPTABLE__
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4560
	rslt = fclose(f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4561
	__END_INTERRUPTABLE__
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4562
#endif
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4563
    } else {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4564
	error = @symbol(badHandleType);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4565
	goto out;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4566
    }
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4567
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4568
    if (rslt < 0) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4569
	error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4570
	goto out;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4571
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4572
    RETURN (self);
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4573
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4574
out:;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4575
%}.
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4576
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4577
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4578
	error == #errorNotOpen ifTrue:[
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4579
	    self errorNotOpen.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4580
	].
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4581
	error isInteger ifTrue:[
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4582
	    lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4583
	    self writeError:error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4584
	    ^ self.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4585
	].
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4586
	self primitiveFailed:error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4587
	^ self.
12674
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4588
    ].
80fbcc4be1d6 changed: #closeFile
Stefan Vogel <sv@exept.de>
parents: 12631
diff changeset
  4589
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4590
    "/ fallback for rel5
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4591
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4592
    fp := handle.
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4593
    fp notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4594
	handle := nil.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4595
	self closeFile:fp
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4596
    ]
16300
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4597
! !
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4598
277c0cb1ecbc class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16296
diff changeset
  4599
!ExternalStream methodsFor:'private'!
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4600
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4601
closeFile:handle
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4602
    "for rel5 only"
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4603
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4604
    self primitiveFailed
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4605
!
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4606
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  4607
connectTo:aFileDescriptor withMode:modeSymbol handleType:handleTypeSymbol
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4608
    "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
  4609
     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
  4610
     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
  4611
     a Stream object.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4612
     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
  4613
     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
  4614
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  4615
    |retVal error openmode|
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4616
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4617
    handle notNil ifTrue:[^ self errorAlreadyOpen].
12706
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  4618
    mode := modeSymbol.
Stefan Vogel <sv@exept.de>
parents: 12704
diff changeset
  4619
    openmode := self fopenMode.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4620
%{
12683
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4621
    FILEPOINTER f = 0;
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4622
    OBJ fp;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4623
    FILE *fdopen();
12683
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4624
    int fd = -2;
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4625
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4626
    if (__isStringLike(openmode)) {
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4627
#ifdef WIN32
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4628
	__stxWrapApiEnterCritical();
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4629
#endif
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4630
	if (__isSmallInteger(aFileDescriptor)) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4631
	    fd = __intVal(aFileDescriptor);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4632
	}
12683
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4633
#ifdef WIN32
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4634
	else if (__isExternalAddressLike(aFileDescriptor)) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4635
	    fd = _open_osfhandle((long)__externalAddressVal(aFileDescriptor), O_BINARY);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4636
	    if (fd < 0) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4637
		if (__threadErrno == 0) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4638
		    // no more file descriptors
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4639
		    __threadErrno = EMFILE;
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4640
		}
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4641
		error = __mkSmallInteger(__threadErrno);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4642
		__stxWrapApiLeaveCritical();
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4643
		goto out;
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4644
	    }
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4645
	}
12683
40b0a5cd3fd3 changed:
Stefan Vogel <sv@exept.de>
parents: 12678
diff changeset
  4646
#endif
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4647
	f = (FILEPOINTER) fdopen(fd, (char *)__stringVal(openmode));
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4648
#ifdef WIN32
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4649
	__stxWrapApiLeaveCritical();
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4650
#endif
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4651
	if (f == NULL) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4652
	    error =__mkSmallInteger(__threadErrno);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4653
	} else {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4654
	    if (@global(FileOpenTrace) == true) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4655
		fprintf(stderr, "fdopen [ExternalStream] %"_ld_" (%"_lx_") -> %"_lx_"\n", (INT)fd, (INT)fd, (INT)f);
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4656
	    }
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4657
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4658
	    fp = __MKFILEPOINTER(f); __INST(handle) = fp; __STORE(self, fp);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4659
	    retVal = self;
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4660
	}
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4661
    }
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4662
out:;
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4663
%}.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4664
    retVal notNil ifTrue:[
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4665
	position := 0.
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4666
	buffered isNil ifTrue:[
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4667
	    buffered := true.       "default is buffered"
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4668
	].
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4669
	handleType := handleTypeSymbol.
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4670
	Lobby register:self.
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4671
	^ retVal
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4672
    ].
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4673
    error notNil ifTrue:[
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4674
	OperatingSystem closeFd:aFileDescriptor.
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4675
	lastErrorNumber := error.
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4676
	position := nil.
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4677
	"
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4678
	 the open failed for some reason ...
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4679
	"
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4680
	^ self openError:error
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4681
    ].
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4682
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4683
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4684
dupFd
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4685
    "duplicate my file descriptor"
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4686
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4687
    |fd dupFd|
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4688
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4689
    fd := self fileHandle.
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4690
    dupFd := OperatingSystem dup:fd.
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4691
    self setFileHandle:dupFd mode:self fopenMode.
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  4692
!
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4693
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4694
fopenMode
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4695
   "answer the mode for fopen.
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4696
    Only used internally"
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4697
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4698
   mode == #readonly ifTrue:[
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4699
	^ ReadMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4700
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4701
   mode == #writeonly ifTrue:[
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4702
	^ WriteMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4703
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4704
   mode == #readWrite ifTrue:[
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4705
	^ ReadWriteMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4706
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4707
   mode == #append ifTrue:[
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4708
	^ AppendMode
10989
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4709
   ].
f7d1de91344b fix #setFileHandle:mode:
Stefan Vogel <sv@exept.de>
parents: 10988
diff changeset
  4710
   ^ ReadWriteMode
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  4711
!
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4712
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4713
open:aPath withMode:openModeString
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4714
    "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
  4715
     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
  4716
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4717
    |ok error|
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4718
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4719
    ok := false.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4720
%{
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4721
    FILE *f;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4722
    OBJ fp;
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4723
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4724
    if (__isStringLike(aPath) && __isStringLike(openModeString)) {
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4725
#ifdef WIN32
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
  4726
# if 1
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4727
       f = fopen((char *) __stringVal(aPath), (char *) __stringVal(openModeString));
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4728
# else
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4729
	__BEGIN_INTERRUPTABLE__
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4730
	do {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4731
	    f = fopen((char *) __stringVal(aPath), (char *) __stringVal(openModeString));
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4732
	} while ((f == NULL) && (__threadErrno == EINTR));
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4733
	__END_INTERRUPTABLE__
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4734
# endif
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4735
#else /* UNIX */
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4736
	__BEGIN_INTERRUPTABLE__
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4737
	do {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4738
	    f = fopen((char *) __stringVal(aPath), (char *) __stringVal(openModeString));
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4739
	} while ((f == NULL) && (__threadErrno == EINTR));
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4740
	__END_INTERRUPTABLE__
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4741
#endif /* UNIX */
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4742
	if (f == NULL) {
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4743
	    error = __mkSmallInteger(__threadErrno);
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4744
	} else {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4745
	    if (@global(FileOpenTrace) == true) {
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4746
		fprintf(stderr, "fopen %s [ExternalStream] -> %"_lx_"\n", __stringVal(aPath), (INT)f);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4747
	    }
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4748
	    fp = __MKFILEPOINTER(f); __INST(handle) = fp; __STORE(self, fp);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4749
	    __INST(handleType) = @symbol(filePointer);
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4750
	    ok = true;
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4751
	}
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4752
    }
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4753
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4754
    ok ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4755
	position := 0.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4756
	Lobby register:self.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4757
	^ self.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4758
    ].
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4759
    error notNil ifTrue:[
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4760
	"
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4761
	 the open failed for some reason ...
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4762
	"
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4763
	lastErrorNumber := error.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4764
	self openError:error.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4765
    ].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4766
    self primitiveFailed.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4767
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4768
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4769
reOpen
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4770
    "USERS WILL NEVER INVOKE THIS METHOD
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4771
     sent after snapin to reopen streams.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4772
     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
  4773
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4774
    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
  4775
    handle := nil.
8966
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4776
    Lobby unregister:self.
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4777
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4778
    "Modified: 10.1.1997 / 17:50:44 / cg"
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4779
!
0b299dd8759c Allow Symbols as pathname and openMode
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  4780
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4781
setAccessor:what to:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4782
    "set the filePointer/fileHandle to the given one;
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4783
     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
  4784
     externally provided handle."
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4785
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4786
    handle := something.
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4787
    handleType := what.
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4788
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4789
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4790
setFileDescriptor:anInteger mode:openMode
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4791
    "set the handle based upon a given fileDescriptor -
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4792
     notice: this one is based on the underlying OSs fileDescriptor -
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4793
     this may not be available on all platforms (i.e. non unix systems)."
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4794
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4795
    self setFileHandle:anInteger mode:openMode
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4796
!
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4797
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4798
setFileHandle:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4799
    "set the fileHandle to the given one;
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4800
     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
  4801
     externally provided file handle."
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4802
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4803
    self setAccessor:#fileHandle to:something
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4804
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4805
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4806
setFileHandle:anIntegerOrExternalAddress mode:openMode
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4807
    "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
  4808
     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
  4809
     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
  4810
     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
  4811
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4812
%{
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4813
    FILEPOINTER f;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4814
    OBJ fp;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4815
    FILE *fdopen();
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4816
    int fd;
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4817
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4818
    if (!__isStringLike(openMode))
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4819
	goto err;
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4820
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4821
#ifdef WIN32
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4822
    __stxWrapApiEnterCritical();
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4823
    if (__isExternalAddressLike(anIntegerOrExternalAddress) ) {
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4824
	HANDLE __fileHandle = (HANDLE)__externalAddressVal(anIntegerOrExternalAddress);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4825
	fd = _open_osfhandle((long)__fileHandle, O_BINARY);      /* should we handle readonly, append or text mode? */
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4826
	if (fd < 0) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4827
	    __stxWrapApiLeaveCritical();
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4828
	    CloseHandle(__fileHandle);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4829
	    goto err;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4830
	}
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4831
    } else
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4832
#endif
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4833
    if (__isSmallInteger(anIntegerOrExternalAddress)) {
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4834
	fd = __smallIntegerVal(anIntegerOrExternalAddress);
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4835
    } else {
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4836
#ifdef WIN32
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4837
	__stxWrapApiLeaveCritical();
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4838
#endif
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4839
	goto err;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4840
    }
10997
8ec53332c725 _fdopen -> fdopen()
Stefan Vogel <sv@exept.de>
parents: 10995
diff changeset
  4841
    f = fdopen(fd, __stringVal(openMode));
12688
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4842
#ifdef WIN32
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4843
    __stxWrapApiLeaveCritical();
b429dc21d6b8 added: #openError:
Stefan Vogel <sv@exept.de>
parents: 12683
diff changeset
  4844
#endif
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4845
    if (f != NULL) {
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4846
	if (@global(FileOpenTrace) == true) {
15435
fc902ce16af0 typecasts in printf for 64bit
Claus Gittinger <cg@exept.de>
parents: 15361
diff changeset
  4847
	    fprintf(stderr, "fdopen [ExternalStream] %d -> %"_lx_"\n", fd, (INT)f);
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4848
	}
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4849
	fp = __MKFILEPOINTER(f); __INST(handle) = fp; __STORE(self, fp);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4850
	__INST(handleType) = @symbol(filePointer);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  4851
	RETURN (self);
10982
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4852
    }
11fd48c1276d New: #copy duplicates the underlying file descriptor resp. file handle
Stefan Vogel <sv@exept.de>
parents: 10932
diff changeset
  4853
err:;
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4854
%}.
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4855
    ^ self primitiveFailed
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4856
!
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4857
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4858
setFilePointer:something
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4859
    "set the filePointer to the given one;
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4860
     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
  4861
     externally provided file."
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4862
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4863
    self setAccessor:#filePointer to:something
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4864
!
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4865
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4866
setLastError:aNumber
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  4867
    lastErrorNumber := aNumber
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4868
!
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4869
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4870
setSocketHandle:something
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4871
    "set the socketHandle to the given one;
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4872
     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
  4873
     externally provided socket handle."
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4874
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4875
    self setAccessor:#socketHandle to:something
8471
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4876
! !
e061e503bf03 Documentation: users shold never send #closeFile
Stefan Vogel <sv@exept.de>
parents: 8362
diff changeset
  4877
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4878
!ExternalStream methodsFor:'queries'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4879
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4880
nextError
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4881
    "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
  4882
     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
  4883
     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
  4884
     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
  4885
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4886
%{ /*NOCONTEXT*/
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4887
    FILEPOINTER f;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4888
    int ret, _buffered;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4889
    OBJ fp;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4890
    unsigned char ch;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4891
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4892
    if ((__INST(handleType) == nil)
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4893
     || (__INST(handleType) == @symbol(filePointer))
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4894
     || (__INST(handleType) == @symbol(socketFilePointer))
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4895
     || (__INST(handleType) == @symbol(socketHandle))
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4896
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4897
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4898
	    && (__INST(mode) != @symbol(writeonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4899
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4900
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4901
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4902
	    _buffered = (__INST(buffered) == true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4903
	    if (_buffered) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4904
		__READING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4905
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4906
	    __READBYTE__(ret, f, &ch, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4907
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4908
	    if (ret > 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4909
		RETURN(nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4910
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4911
	    if (ret < 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4912
		RETURN(__mkSmallInteger(__threadErrno));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4913
	    } else /* ret == 0 */ {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4914
		RETURN(__mkSmallInteger(0)); /* EOF */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4915
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4916
	}
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4917
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4918
%}.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4919
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4920
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4921
numAvailable
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4922
    "return the number of bytes available for reading"
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4923
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4924
    |fd|
7804
7128efd3b504 isNonBlocking -> isBlocking
Claus Gittinger <cg@exept.de>
parents: 7801
diff changeset
  4925
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  4926
    handle isNil ifTrue:[^ self errorNotOpen].
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4927
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4928
    fd := self fileDescriptor.
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4929
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4930
%{
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4931
#ifdef WIN32
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4932
    int res = 1;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4933
    int success = 0;
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4934
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4935
    if (__INST(handleType) == @symbol(socketHandle)) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4936
	success = ioctlsocket((SOCKET)__externalAddressVal(fd), FIONREAD, &res) == 0;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4937
    } else if (__INST(handleType) == @symbol(socketFilePointer)) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4938
	success = ioctlsocket((SOCKET)_get_osfhandle(__intVal(fd)), FIONREAD, &res) == 0;
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4939
    } else if (__INST(handleType) == @symbol(pipeFilePointer)) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4940
	success = PeekNamedPipe((HANDLE)_get_osfhandle(__intVal(fd)),0,0,0,&res,0);
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4941
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4942
    if (success) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4943
	if (__INST(readAhead) != nil) res++;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4944
	RETURN(__mkSmallInteger(res));
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4945
    }
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4946
#endif
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4947
%}.
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4948
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4949
    ^ (readAhead notNil or:[OperatingSystem readCheck:fd]) ifTrue:[1] ifFalse:[0].
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4950
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4951
    "Created: / 4.2.1998 / 16:56:01 / cg"
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4952
    "Modified: / 4.2.1998 / 17:31:11 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4953
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4954
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4955
!ExternalStream methodsFor:'reading'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4956
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4957
next
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4958
    "return the next element; advance read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4959
     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
  4960
     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
  4961
     - see #pastEndRead."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4962
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  4963
    |c error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  4964
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4965
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  4966
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4967
    OBJ pos, fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4968
    unsigned char ch;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  4969
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  4970
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4971
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4972
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4973
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  4974
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  4975
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4976
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4977
	    && (__INST(mode) != @symbol(writeonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4978
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4979
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4980
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4981
	    _buffered = (__INST(buffered) == true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4982
	    if (_buffered) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4983
		__READING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4984
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4985
	    __READBYTE__(ret, f, &ch, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4986
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4987
	    if (ret > 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4988
		pos = __INST(position);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4989
		if (__isSmallInteger(pos)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4990
		    OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4991
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4992
		    t = __MKINT(__intVal(pos) + 1); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4993
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4994
		    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4995
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4996
		if (__INST(binary) == true) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4997
		    RETURN ( __mkSmallInteger(ch) );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4998
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  4999
		RETURN ( __MKCHARACTER(ch) );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5000
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5001
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5002
	    __INST(position) = nil;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5003
	    if (ret < 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5004
		error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5005
	    } else /* ret == 0 */ {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5006
		__INST(hitEOF) = true;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5007
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5008
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5009
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5010
%}.
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8604
diff changeset
  5011
    hitEOF == true ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5012
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5013
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5014
	^ self readError:error
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5015
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5016
    handle isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5017
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5018
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5019
    readAhead notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5020
	c := readAhead.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5021
	readAhead := nil.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5022
	^ c.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5023
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5024
    c := self nextByteFromFile:handle.
5430
7d0aa5fc6c22 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5420
diff changeset
  5025
    c isNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5026
	^ self pastEndRead.
5430
7d0aa5fc6c22 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5420
diff changeset
  5027
    ].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5028
    binary == true ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5029
	^ c
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5030
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5031
    ^ Character value:c
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5032
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5033
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5034
next:count
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5035
    "return the next count elements of the stream as a collection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5036
     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
  5037
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5038
    |coll nRead|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5039
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5040
    binary ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5041
	coll := ByteArray uninitializedNew:count
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5042
    ] ifFalse:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5043
	coll := String new:count
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5044
    ].
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5045
    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
  5046
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5047
    "/ for readStream protocol compatibility,
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5048
    "/ we must raise an exception here.
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5049
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5050
    nRead < count ifTrue:[
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5051
	^ self pastEndRead
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5052
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5053
    ^ coll
2151
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5054
5f1fd65f8c3b next: must raise pastEnd, if EOF is hit;
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  5055
    "Modified: 11.1.1997 / 17:44:17 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5056
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5057
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5058
nextOrNil
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5059
    "return the next element; advance read position.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5060
     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
  5061
     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
  5062
     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
  5063
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5064
    |c error|
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5065
%{
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5066
    FILEPOINTER f;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5067
    int ret, _buffered;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5068
    OBJ pos, fp;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5069
    unsigned char ch;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5070
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5071
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5072
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5073
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5074
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5075
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5076
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5077
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5078
	    && (__INST(mode) != @symbol(writeonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5079
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5080
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5081
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5082
	    _buffered = (__INST(buffered) == true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5083
	    if (_buffered) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5084
		__READING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5085
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5086
	    __READBYTE__(ret, f, &ch, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5087
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5088
	    if (ret > 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5089
		pos = __INST(position);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5090
		if (__isSmallInteger(pos)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5091
		    OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5092
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5093
		    t = __MKINT(__intVal(pos) + 1); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5094
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5095
		    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5096
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5097
		if (__INST(binary) == true) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5098
		    RETURN ( __mkSmallInteger(ch) );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5099
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5100
		RETURN ( __MKCHARACTER(ch) );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5101
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5102
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5103
	    __INST(position) = nil;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5104
	    if (ret < 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5105
		error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5106
	    } else /* ret == 0 */ {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5107
		__INST(hitEOF) = true;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5108
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5109
	}
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5110
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5111
%}.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5112
    hitEOF == true ifTrue:[^ nil].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5113
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5114
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5115
	^ self readError:error.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5116
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5117
    handle isNil ifTrue:[^ self errorNotOpen].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5118
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5119
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5120
    readAhead notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5121
	c := readAhead.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5122
	readAhead := nil.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5123
	^ c.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5124
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5125
    c := self nextByteFromFile:handle.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5126
    c isNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5127
	^ nil.
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5128
    ].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5129
    binary == true ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5130
	^ c
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5131
    ].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5132
    ^ Character value:c
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5133
!
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5134
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5135
peek
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5136
    "return the element to be read next without advancing read position.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5137
     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
  5138
     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
  5139
     - see #pastEndRead."
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5140
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5141
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5142
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5143
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5144
    unsigned char c;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5145
    int ret, _buffered;
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  5146
    OBJ fp;
3672
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5147
    OBJ ra;
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5148
49dff0652a2c fixed readAhead in peek with non-binary mode
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
  5149
    if ((ra = __INST(readAhead)) != nil) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5150
	if (__INST(binary) == true) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5151
	    RETURN ( ra );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5152
	}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5153
	c = __intVal(ra);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5154
	RETURN ( __MKCHARACTER(c) );
3029
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  5155
    }
aa14768e0e6a larger lineBuffer in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3016
diff changeset
  5156
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5157
    __INST(lastErrorNumber) = nil;
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5158
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5159
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5160
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5161
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5162
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5163
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5164
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5165
	    && (__INST(mode) != @symbol(writeonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5166
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5167
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5168
	    _buffered = (__INST(buffered) == true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5169
	    if (_buffered) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5170
		__READING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5171
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5172
	    __READBYTE__(ret, f, &c, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5173
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5174
	    if (ret > 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5175
		__UNGETC__(c, f, _buffered);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5176
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5177
		if (__INST(binary) == true) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5178
		    RETURN ( __mkSmallInteger(c) );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5179
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5180
		RETURN ( __MKCHARACTER(c) );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5181
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5182
	    if (ret < 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5183
		error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5184
	    } else /* ret == 0 */ {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5185
		__INST(hitEOF) = true;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5186
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5187
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5188
    }
159
514c749165c3 *** empty log message ***
claus
parents: 108
diff changeset
  5189
%}.
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5190
    hitEOF == true ifTrue:[^ self pastEndRead].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5191
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5192
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5193
	^ self readError:error.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5194
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5195
    handle isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5196
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5197
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5198
    readAhead isNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5199
	readAhead := self nextOrNil.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5200
	readAhead isNil ifTrue:[
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5201
	    ^ self pastEndRead.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5202
	].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5203
    ].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5204
    ^ readAhead
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5205
!
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5206
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5207
peekOrNil
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5208
    "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
  5209
     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
  5210
     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
  5211
     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
  5212
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5213
    |error|
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5214
%{
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5215
    FILEPOINTER f;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5216
    unsigned char c;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5217
    int ret, _buffered;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5218
    OBJ fp;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5219
    OBJ ra;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5220
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5221
    if ((ra = __INST(readAhead)) != nil) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5222
	if (__INST(binary) == true) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5223
	    RETURN ( ra );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5224
	}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5225
	c = __intVal(ra);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5226
	RETURN ( __MKCHARACTER(c) );
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5227
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5228
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5229
    __INST(lastErrorNumber) = nil;
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5230
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5231
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5232
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5233
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5234
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5235
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5236
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5237
	    && (__INST(mode) != @symbol(writeonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5238
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5239
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5240
	    _buffered = (__INST(buffered) == true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5241
	    if (_buffered) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5242
		__READING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5243
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5244
	    __READBYTE__(ret, f, &c, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5245
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5246
	    if (ret > 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5247
		__UNGETC__(c, f, _buffered);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5248
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5249
		if (__INST(binary) == true) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5250
		    RETURN ( __mkSmallInteger(c) );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5251
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5252
		RETURN ( __MKCHARACTER(c) );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5253
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5254
	    if (ret < 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5255
		error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5256
	    } else /* ret == 0 */ {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5257
		__INST(hitEOF) = true;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5258
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5259
	}
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5260
    }
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5261
%}.
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5262
    hitEOF == true ifTrue:[^ nil].
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5263
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5264
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5265
	^ self readError:error.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5266
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5267
    handle isNil ifTrue:[^ self errorNotOpen].
10348
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5268
    (mode == #writeonly) ifTrue:[^ self errorWriteOnly].
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5269
7ed317f7f2be Speedup ExternalStream>>#nextOrNil and ExternalStream>>#peekOrNil.
Stefan Vogel <sv@exept.de>
parents: 10339
diff changeset
  5270
    readAhead isNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5271
	readAhead := self nextOrNil.
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5272
    ].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5273
    ^ readAhead
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5274
!
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5275
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5276
upToEnd
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5277
    "return a collection of the elements up-to the end.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5278
     Return nil if the stream-end is reached before."
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5279
6569
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  5280
    |answerStream buffer count|
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  5281
f8336e46ec9f Speedup #upToEnd
Stefan Vogel <sv@exept.de>
parents: 6563
diff changeset
  5282
    buffer := self contentsSpecies new:4096.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5283
    [self atEnd] whileFalse:[
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5284
	count := self nextAvailableBytes:4096 into:buffer startingAt:1.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5285
	count ~~ 0 ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5286
	    answerStream isNil ifTrue:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5287
		answerStream := WriteStream with:buffer.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5288
		answerStream position:count.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5289
		buffer := self contentsSpecies new:4096.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5290
	    ] ifFalse:[
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5291
		answerStream nextPutAll:buffer startingAt:1 to:count.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5292
	    ].
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5293
	].
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5294
    ].
6758
bc933037a1dc oops - upToEnd failed if already at the end
Claus Gittinger <cg@exept.de>
parents: 6661
diff changeset
  5295
    answerStream isNil ifTrue:[^ self contentsSpecies new].
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5296
    ^ answerStream contents
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  5297
7054
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  5298
    "
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  5299
     ('smalltalk.rc' asFilename readStream upToEnd)
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  5300
     =
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  5301
     ('smalltalk.rc' asFilename readStream contentsOfEntireFile)
685d359f9847 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 7053
diff changeset
  5302
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5303
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5304
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5305
!ExternalStream methodsFor:'rel5 protocol'!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5306
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5307
atEndFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5308
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5309
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5310
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5311
!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5312
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5313
nextByteFromFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5314
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5315
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5316
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5317
!
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5318
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5319
nextPutByte:aByte toFile:handle
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5320
    "for migration to rel5 only"
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5321
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5322
    self primitiveFailed
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5323
! !
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5324
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5325
!ExternalStream methodsFor:'testing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5326
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5327
atEnd
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5328
    "return true, if position is at end"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5329
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5330
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5331
    FILEPOINTER f;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5332
    OBJ fp, pos, lim;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5333
    char c;
2861
c098e5766682 Fix #atEnd: for signed chars.
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  5334
    int ret, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5335
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5336
    if (__INST(hitEOF) == true) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5337
	RETURN (true);
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5338
    }
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5339
    pos = __INST(position);
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5340
    lim = __INST(readLimit);
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5341
    if (lim != nil) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5342
	off_t _pos, _readLimit;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5343
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5344
	_pos = __signedLongIntVal(pos);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5345
	_pos = _pos - __intVal( @global(PositionableStream:ZeroPosition)) + 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5346
	_readLimit = __signedLongIntVal(lim);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5347
	if (_pos > _readLimit) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5348
	    RETURN (true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5349
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5350
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5351
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5352
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5353
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5354
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5355
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5356
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5357
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5358
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5359
	if ((fp = __INST(handle)) != nil) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5360
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5361
	    if (_buffered = (__INST(buffered) == true)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5362
		__READING__(f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5363
	    } else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5364
		if (__INST(readAhead) != nil) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5365
		    RETURN (false);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5366
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5367
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5368
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5369
	    /*
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5370
	     * read ahead ...
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5371
	     */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5372
	    do {
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5373
#ifdef WIN32
10339
972d0164125a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10328
diff changeset
  5374
# if 1
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5375
		__READBYTE__(ret, f, &c, _buffered, __INST(handleType));
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5376
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5377
# else
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5378
		__BEGIN_INTERRUPTABLE__
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5379
		__READBYTE__(ret, f, &c, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5380
		__END_INTERRUPTABLE__
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5381
# endif
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5382
#else /* not WIN32 */
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5383
		__BEGIN_INTERRUPTABLE__
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5384
		__READBYTE__(ret, f, &c, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5385
		__END_INTERRUPTABLE__
4914
Claus Gittinger <cg@exept.de>
parents: 4913
diff changeset
  5386
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5387
	    } while ((ret < 0) && (__threadErrno == EINTR));
4152
0c1780ae527f dont return an error when interrupted in NEXTAVAILBYTES (return 0)
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  5388
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5389
#if defined(WIN32) && defined(EPIPE)
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5390
	    if (ret < 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5391
		if (__threadErrno == EPIPE) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5392
		    ret = 0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5393
		    __threadErrno = 0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5394
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5395
		if (__threadErrno == 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5396
		    ret = 0;   /* how comes ? */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5397
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5398
	    }
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5399
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5400
	    if (ret > 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5401
		__UNGETC__(c&0xff, f, _buffered);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5402
		RETURN (false);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5403
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5404
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5405
	    if (ret == 0) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5406
		__INST(hitEOF) = true;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5407
		RETURN (true);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5408
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5409
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5410
	    /* ret < 0 */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5411
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5412
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5413
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5414
%}.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5415
    lastErrorNumber notNil ifTrue:[^ self readError].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5416
    handle isNil ifTrue:[^ self errorNotOpen].
5420
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5417
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5418
    readAhead notNil ifTrue:[^ false].
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5419
cec8306dff39 migration
Claus Gittinger <cg@exept.de>
parents: 5417
diff changeset
  5420
    "/ migration support
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5421
    ^ self
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5422
	atEndFile:handle
3906
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5423
7f2d4a3b63e2 oops - readLimit was not handled in #atEnd
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  5424
    "Modified: / 30.10.1998 / 20:16:06 / cg"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5425
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5426
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5427
canReadWithoutBlocking
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5428
    "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
  5429
     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
  5430
     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
  5431
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5432
    ^ readAhead notNil
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5433
	or:[handle isNil]
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5434
	or:[mode == #writeonly
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5435
	or:[OperatingSystem readCheck:self fileDescriptor]]
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5436
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5437
    "
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5438
     |pipe|
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5439
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5440
     pipe := PipeStream readingFrom:'(sleep 10; echo hello)'.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5441
     pipe canReadWithoutBlocking ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5442
	 Transcript showCR:'data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5443
     ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 7017
diff changeset
  5444
	 Transcript showCR:'no data available'
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5445
     ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5446
     pipe close
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5447
    "
2986
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5448
c6957cf6128f Handle readAhead in #canReadWithoutBlocking
Stefan Vogel <sv@exept.de>
parents: 2963
diff changeset
  5449
    "Modified: 25.9.1997 / 13:08:45 / stefan"
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5450
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5451
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5452
canWriteWithoutBlocking
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5453
    "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
  5454
     (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
  5455
     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
  5456
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5457
    ^ handle isNil
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5458
	or:[mode == #readonly
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5459
	or:[OperatingSystem writeCheck:self fileDescriptor]]
3274
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5460
!
92a24829f14a added #nextAvailableBytes - very useful for pipes & sockets.
Claus Gittinger <cg@exept.de>
parents: 3255
diff changeset
  5461
10995
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5462
gotErrorOrEOF
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5463
    "answerv true, if amn error or eof has been occured on the stream"
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5464
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5465
    ^ hitEOF == true or:[lastErrorNumber notNil]
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5466
!
94ed80f3bfc7 changed #gotErrorOrEOF
sr
parents: 10989
diff changeset
  5467
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5468
isBinary
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5469
    "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
  5470
     The default when created is false."
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5471
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5472
    ^ binary
6269
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5473
!
3a888523e3a6 #errorReporter and #reportOn class-methods
Stefan Vogel <sv@exept.de>
parents: 6255
diff changeset
  5474
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5475
isBlocking
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5476
    "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
  5477
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5478
    handle isNil ifTrue:[^ self errorNotOpen].
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5479
    ^ OperatingSystem isBlockingOn:self fileDescriptor
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5480
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5481
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5482
isExternalStream
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5483
    "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
  5484
     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
  5485
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5486
    ^ true
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5487
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5488
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5489
isOpen
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5490
    "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
  5491
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5492
    ^ handle notNil
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5493
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5494
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5495
isReadable
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5496
    "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
  5497
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5498
    ^ (mode ~~ #writeonly)
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5499
!
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5500
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5501
isWritable
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5502
    "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
  5503
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5504
    ^ (mode ~~ #readonly)
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5505
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5506
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5507
!ExternalStream methodsFor:'waiting for I/O'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5508
5101
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5509
canBeSelected
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5510
    "return true, if this stream can be selected upon"
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5511
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5512
    ^ OperatingSystem supportsSelect
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5513
!
901c91d6dd50 support to poll write-fds
Claus Gittinger <cg@exept.de>
parents: 4968
diff changeset
  5514
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5515
readWaitWithTimeoutMs:timeout
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5516
    "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
  5517
     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
  5518
     If data is already available, return immediate.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5519
     Return true if a timeout occured (i.e. false, if data is available).
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5520
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5521
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5522
    |fd inputSema hasTimedout wasBlocked|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5523
2120
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5524
    readAhead notNil ifTrue:[^ false].
71c1870df7ba implemented 1-character readAhead for unbuffered streams;
Claus Gittinger <cg@exept.de>
parents: 2045
diff changeset
  5525
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5526
    handle isNil ifTrue:[^ self errorNotOpen].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5527
    mode == #writeonly ifTrue:[^ self errorWriteOnly].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5528
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5529
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5530
    (OperatingSystem readCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5531
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5532
    wasBlocked := OperatingSystem blockInterrupts.
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5533
    inputSema := Semaphore new name:'readWait'.
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5534
    [
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5535
	timeout notNil ifTrue:[
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5536
	    Processor signal:inputSema afterMilliseconds:timeout.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5537
	].
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5538
	Processor signal:inputSema onInput:fd.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5539
	Processor activeProcess state:#ioWait.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5540
	inputSema wait.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5541
	hasTimedout := timeout notNil and:[(OperatingSystem readCheck:fd) not].
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5542
    ] ifCurtailed:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5543
	Processor disableSemaphore:inputSema.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5544
	wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5545
    ].
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5546
    timeout notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5547
	Processor disableSemaphore:inputSema.
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5548
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5549
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5550
    ^ hasTimedout
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5551
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5552
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5553
readWriteWaitWithTimeoutMs:timeout
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5554
    "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
  5555
     becomes ready for reading or writing or a timeout (in milliseconds) expired.
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5556
     Return true if a timeout occured (i.e. false, if data is available).
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5557
     Return immediate if the receiver is already ready.
5506
ffa0d32f4a51 Comment
Stefan Vogel <sv@exept.de>
parents: 5494
diff changeset
  5558
     The other threads are not affected by the wait."
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5559
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5560
    |fd sema hasTimedout wasBlocked|
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5561
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5562
    handle isNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5563
	^ self errorNotOpen
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5564
    ].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5565
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5566
    fd := self fileDescriptor.
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5567
    (OperatingSystem readWriteCheck:fd) ifTrue:[^ false].
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5568
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5569
    wasBlocked := OperatingSystem blockInterrupts.
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5570
    sema := Semaphore new name:'readWriteWait'.
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5571
    [
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5572
	timeout notNil ifTrue:[
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5573
	    Processor signal:sema afterMilliseconds:timeout
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5574
	].
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5575
	Processor signal:sema onOutput:fd.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5576
	Processor signal:sema onInput:fd.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5577
	Processor activeProcess state:#ioWait.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5578
	sema wait.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5579
	hasTimedout := timeout notNil and:[(OperatingSystem readWriteCheck:fd) not].
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5580
    ] ifCurtailed:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5581
	Processor disableSemaphore:sema.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5582
	wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5583
    ].
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5584
    timeout notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5585
	Processor disableSemaphore:sema.
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5586
    ].
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5587
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5588
    ^ hasTimedout
3490
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5589
!
6a87c2b37fd4 added #readWriteWait methods.
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
  5590
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5591
writeWaitWithTimeoutMs:timeout
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5592
    "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
  5593
     becomes ready for writing or a timeout (in milliseconds) expired.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5594
     Return true if a timeout occured (i.e. false, if data is available).
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5595
     Return immediate if the receiver is already ready.
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5596
     The other threads are not affected by the wait."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5597
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5598
    |fd outputSema hasTimedout wasBlocked|
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5599
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5600
    handle isNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5601
	^ self errorNotOpen
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5602
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5603
    mode == #readonly ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5604
	^ self errorReadOnly
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5605
    ].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5606
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5607
    fd := self fileDescriptor.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5608
    (OperatingSystem writeCheck:fd) ifTrue:[^ false].
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5609
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5610
    wasBlocked := OperatingSystem blockInterrupts.
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5611
    outputSema := Semaphore new name:'writeWait'.
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5612
    [
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5613
	timeout notNil ifTrue:[
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5614
	    Processor signal:outputSema afterMilliseconds:timeout
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5615
	].
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5616
	Processor signal:outputSema onOutput:fd.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5617
	Processor activeProcess state:#ioWait.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5618
	outputSema wait.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5619
	hasTimedout := timeout notNil and:[(OperatingSystem writeCheck:fd) not].
16463
2b3728727f5e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16373
diff changeset
  5620
    ] ifCurtailed:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5621
	Processor disableSemaphore:outputSema.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5622
	wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5623
    ].
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5624
    timeout notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5625
	Processor disableSemaphore:outputSema.
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5626
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5627
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
16480
2b0c4915f31d class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 16463
diff changeset
  5628
    ^ hasTimedout
612
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
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5631
!ExternalStream methodsFor:'writing'!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5632
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5633
cr
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5634
    "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
  5635
     reimplemented for speed"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5636
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5637
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5638
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5639
    int len, cnt, _buffered;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5640
    OBJ fp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5641
    char *cp;
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5642
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5643
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5644
     || (__INST(handleType) == @symbol(filePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5645
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5646
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5647
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5648
	__INST(lastErrorNumber) = nil;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5649
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5650
	    && (__INST(mode) != @symbol(readonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5651
	    && (__INST(binary) != true)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5652
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5653
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5654
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5655
	    if (_buffered = (__INST(buffered) == true)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5656
		__WRITING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5657
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5658
	    {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5659
		OBJ mode = __INST(eolMode);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5660
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5661
		if (mode == @symbol(cr)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5662
		    cp = "\r"; len = 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5663
		} else if (mode == @symbol(crlf)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5664
		    cp = "\r\n"; len = 2;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5665
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5666
		    cp = "\n"; len = 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5667
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5668
	    }
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5669
#ifdef WIN32
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5670
	    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5671
		cnt = __win32_fwrite(cp, 1, len, f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5672
	    } else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5673
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5674
	    {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5675
		__WRITEBYTES__(cnt, f, cp, len, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5676
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5677
	    if (cnt == len) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5678
		if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5679
		    INT np = __intVal(__INST(position)) + len;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5680
		    OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5681
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5682
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5683
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5684
		    __INST(position) = nil; /* i.e: dont know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5685
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5686
		RETURN ( self );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5687
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5688
	    __INST(lastErrorNumber) = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5689
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5690
    }
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5691
%}.
2326
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5692
    lastErrorNumber notNil ifTrue:[self writeError. ^ self].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5693
    handle isNil ifTrue:[self errorNotOpen. ^ self].
2326
01fa309e48d9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2325
diff changeset
  5694
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5695
    (binary==true) ifTrue:[self errorBinary. ^ self].
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5696
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5697
    (eolMode == #cr) ifTrue:[self nextPut:(Character return). ^ self].
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5698
    (eolMode ~~ #crlf) ifTrue:[self nextPut:(Character nl). ^ self].
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5699
    self nextPut:(Character return).
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5700
    self nextPut:(Character nl).
5414
8557e4e71e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5323
diff changeset
  5701
    ^ self
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5702
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5703
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5704
flush
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5705
    "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
  5706
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5707
%{
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5708
    OBJ fp;
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5709
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5710
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5711
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5712
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5713
     || (__INST(handleType) == @symbol(socketFilePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5714
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5715
	if ((fp = __INST(handle)) != nil) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5716
	    if (__INST(mode) != @symbol(readonly)) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5717
		if (__INST(buffered) == true) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5718
		    FILEPOINTER f = __FILEVal(fp);
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5719
#ifdef WIN32
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5720
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5721
			__win32_fflush(f);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5722
		    } else {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5723
			int rslt;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5724
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5725
			do {
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5726
			    __threadErrno = 0;
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5727
			    rslt = __STX_C_CALL1("fflush", fflush, f);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5728
			} while((rslt < 0) && (__threadErrno == EINTR));
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5729
		    }
12678
662465401b77 changed:
Stefan Vogel <sv@exept.de>
parents: 12674
diff changeset
  5730
#else /* ! WIN32 */
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5731
		    __BEGIN_INTERRUPTABLE__
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5732
		    FFLUSH(f);
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5733
		    __END_INTERRUPTABLE__
12678
662465401b77 changed:
Stefan Vogel <sv@exept.de>
parents: 12674
diff changeset
  5734
#endif /* ! WIN32 */
14068
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5735
		}
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5736
	    }
46a8289bf92a pass linenr to dumpObject
Claus Gittinger <cg@exept.de>
parents: 13940
diff changeset
  5737
	}
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5738
    }
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5739
%}
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5740
!
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5741
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5742
nextPut:aCharacter
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5743
    "write the argument, aCharacter - return nil if failed, self if ok.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5744
     Only single-byte characters are currently supported"
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5745
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5746
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5747
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5748
    FILEPOINTER f;
8209
908ba4b9543e check for written characters to be in 00..FF
Claus Gittinger <cg@exept.de>
parents: 8074
diff changeset
  5749
    unsigned codePoint;
908ba4b9543e check for written characters to be in 00..FF
Claus Gittinger <cg@exept.de>
parents: 8074
diff changeset
  5750
    unsigned char c;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5751
    int cnt, _buffered;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5752
    OBJ fp;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5753
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5754
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5755
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5756
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5757
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5758
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5759
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5760
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5761
	    && (__INST(mode) != @symbol(readonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5762
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5763
	    if (__INST(binary) != true) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5764
		if (__isCharacter(aCharacter)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5765
		    codePoint = __intVal(__characterVal(aCharacter));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5766
		    if (codePoint <= 0xFF) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5767
			c = codePoint;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5768
    doWrite:
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5769
			f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5770
			if (! f) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5771
			    fprintf(stderr, "oops - fileHandle is NULL in nextPut:\n");
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5772
			    __INST(handle) = nil;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5773
			    goto out;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5774
			}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5775
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5776
			if (_buffered = (__INST(buffered) == true)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5777
			    __WRITING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5778
			}
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  5779
#ifdef WIN32
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5780
			if ((f == __win32_stdout()) || (f == __win32_stderr())) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5781
			    cnt = __win32_fwrite(&c, 1, 1, f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5782
			} else
9053
f3f3d48d6f44 fix writing to stdout/stderr for winstx non-console operation
Claus Gittinger <cg@exept.de>
parents: 9024
diff changeset
  5783
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5784
			__WRITEBYTE__(cnt, f, &c, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5785
			if (cnt == 1) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5786
			    if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5787
				INT np = __intVal(__INST(position)) + 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5788
				OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5789
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5790
				t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5791
			    } else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5792
				__INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5793
			    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5794
			    RETURN ( self );
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5795
			}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5796
			error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5797
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5798
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5799
	    } else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5800
		if (__isSmallInteger(aCharacter)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5801
		    c = __intVal(aCharacter);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5802
		    goto doWrite;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5803
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5804
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5805
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5806
    }
7737
616d849b7838 fileHandle check
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  5807
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5808
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5809
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5810
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5811
	self writeError:error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5812
	^ self
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5813
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5814
    handle isNil ifTrue:[self errorNotOpen. ^ self].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5815
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5816
    binary == true ifFalse:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5817
	(aCharacter isCharacter not
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5818
	or:[aCharacter codePoint > 16rFF]) ifTrue:[
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5819
	    self argumentMustBeCharacter.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5820
	    ^ self.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5821
	].
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5822
    ] ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5823
	aCharacter isInteger ifFalse:[
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5824
	    self argumentMustBeInteger.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5825
	    ^ self.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5826
	].
5417
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5827
    ].
0478ac31e042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  5828
    "/ migration support
8818
4b1ffc19e3ce remerged WIN32 and Unix versions into common source
Claus Gittinger <cg@exept.de>
parents: 8616
diff changeset
  5829
    self
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5830
	nextPutByte:aCharacter asInteger
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5831
	toFile:handle
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5832
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5833
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5834
nextPutAll:aCollection
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5835
    "write all elements of the argument, aCollection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5836
     Reimplemented for speed when writing strings or byteArrays.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5837
     For others, falls back to general method in superclass."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5838
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5839
    |error|
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5840
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5841
    FILEPOINTER f;
14644
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
  5842
    INT len, cnt;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5843
    OBJ fp;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5844
    int _buffered;
14644
e5f19ef20dcd mingw changes
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
  5845
    INT o_offs;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5846
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5847
    __INST(lastErrorNumber) = nil;
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5848
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5849
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5850
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5851
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5852
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5853
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5854
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5855
	    && (__INST(mode) != @symbol(readonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5856
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5857
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5858
	    if (! f) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5859
		fprintf(stderr, "oops - fileHandle is NULL in nextPutAll:\n");
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5860
		__INST(handle) = nil;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5861
		goto out;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5862
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5863
	    if (_buffered = (__INST(buffered) == true)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5864
		__WRITING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5865
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5866
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5867
	    if (__isStringLike(aCollection)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5868
		len = __stringSize(aCollection);
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5869
#ifdef WIN32
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5870
		if ((f == __win32_stdout()) || (f == __win32_stderr())) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5871
		    cnt = __win32_fwrite(__stringVal(aCollection), 1, len, f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5872
		} else
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5873
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5874
		{
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5875
		    o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5876
		    __WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5877
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5878
	    } else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5879
		if (__INST(binary) == true) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5880
		    INT offs;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5881
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5882
		    if (__isByteArrayLike(aCollection)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5883
			offs = 0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5884
			len = __byteArraySize(aCollection);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5885
		    } else if (__isBytes(aCollection)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5886
			offs = __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(aCollection))->c_ninstvars));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5887
			len = __byteArraySize(aCollection) - offs;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5888
		    } else
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5889
			goto out;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5890
#ifdef WIN32
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5891
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5892
			cnt = __win32_fwrite(__stringVal(aCollection), 1, len, f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5893
		    } else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5894
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5895
		    {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5896
			o_offs = (char *)(__ByteArrayInstPtr(aCollection)->ba_element) - (char *)__InstPtr(aCollection);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5897
			o_offs += offs;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5898
			__WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs, len, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5899
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5900
		} else
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5901
		    goto out;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5902
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5903
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5904
	    if (cnt == len) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5905
		if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5906
		    INT np = __intVal(__INST(position)) + len;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5907
		    OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5908
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5909
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5910
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5911
		    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5912
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5913
		RETURN (self);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5914
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5915
	    error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5916
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5917
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  5918
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5919
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5920
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5921
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5922
	self writeError:error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5923
	^ self
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5924
    ].
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  5925
    handle isNil ifTrue:[self errorNotOpen. ^ self].
2331
d6ddf452adc9 return codes in error cases
Claus Gittinger <cg@exept.de>
parents: 2326
diff changeset
  5926
    (mode == #readonly) ifTrue:[self errorReadOnly. ^ self].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5927
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5928
    ^ super nextPutAll:aCollection
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5929
!
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5930
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5931
nextPutAll:aCollection startingAt:start to:stop
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5932
    "write a range of elements of the argument, aCollection.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5933
     Reimplemented for speed when writing strings or byteArrays.
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5934
     For others, falls back to general method in superclass."
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5935
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5936
     |error|
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  5937
1067
1e7959af0821 removed all NOCONTEXT (last version did no good - PROTECT-stack overflow ...)
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  5938
%{
2593
d678527ef34e changes for NT; prepare to use HANDLES instead of FILES (NT)
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  5939
    FILEPOINTER f;
1463
ace6b72b6f4a Use common macros to make interruptable system calls signal proof.
Stefan Vogel <sv@exept.de>
parents: 1422
diff changeset
  5940
    int offs, len, cnt, iStart, iStop, _buffered;
7875
eb7d48b0425d made all position-handling code 32bit save
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  5941
    OBJ fp;
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5942
    int o_offs;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  5943
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  5944
    __INST(lastErrorNumber) = nil;
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5945
    if ((__INST(handleType) == nil)
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5946
     || (__INST(handleType) == @symbol(filePointer))
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5947
     || (__INST(handleType) == @symbol(socketFilePointer))
16368
1efe4d36fd3f Win32 sockets use handles instead of file pointers
Stefan Vogel <sv@exept.de>
parents: 16308
diff changeset
  5948
     || (__INST(handleType) == @symbol(socketHandle))
12548
6a2abe88a7a2 handleTypes
Claus Gittinger <cg@exept.de>
parents: 12460
diff changeset
  5949
     || (__INST(handleType) == @symbol(pipeFilePointer))) {
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5950
	if (((fp = __INST(handle)) != nil)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5951
	    && (__INST(mode) != @symbol(readonly))
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5952
	    && __bothSmallInteger(start, stop)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5953
	) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5954
	    f = __FILEVal(fp);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5955
	    if (_buffered = (__INST(buffered) == true)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5956
		__WRITING__(f)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5957
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5958
	    iStart = __intVal(start);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5959
	    iStop = __intVal(stop);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5960
	    if ((iStart < 1) || (iStop < iStart)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5961
		RETURN(self);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5962
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5963
	    if (__isStringLike(aCollection)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5964
		len = __stringSize(aCollection);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5965
		if (iStop > len) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5966
		    RETURN(self);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5967
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5968
		if (iStop > len)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5969
		    iStop = len;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5970
		len = iStop - iStart + 1;
4913
4964b2c71d31 remerged ExtSTream_win32 into ExtStream.
Claus Gittinger <cg@exept.de>
parents: 4640
diff changeset
  5971
#ifdef WIN32
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5972
		if ((f == __win32_stdout()) || (f == __win32_stderr())) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5973
		    cnt = __win32_fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5974
		} else
2513
a589586a3828 big bug: READBYTES & WRITEBYTES did not care for moving objects when interrupted.
Claus Gittinger <cg@exept.de>
parents: 2331
diff changeset
  5975
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5976
		{
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5977
		    o_offs = (char *)__stringVal(aCollection)-(char *)__InstPtr(aCollection);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5978
		    __WRITEBYTES_OBJ__(cnt, f, aCollection, o_offs+iStart-1, len, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5979
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5980
	    } else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5981
		if (__INST(binary) == true) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5982
		    int offs;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5983
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5984
		    if (__isByteArrayLike(aCollection)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5985
			offs = 0;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5986
			len = __byteArraySize(aCollection);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5987
		    } else if (__isBytes(aCollection)) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5988
			offs = __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(aCollection))->c_ninstvars));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5989
			len = __byteArraySize(aCollection) - offs;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5990
		    } else
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5991
			goto out;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5992
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5993
		    if (iStop > len) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5994
			RETURN(self);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5995
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5996
		    if (iStop > len)
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5997
			iStop = len;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5998
		    len = iStop - iStart + 1;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  5999
		    offs += iStart - 1;
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  6000
#ifdef WIN32
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6001
		    if ((f == __win32_stdout()) || (f == __win32_stderr())) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6002
			cnt = __win32_fwrite(__stringVal(aCollection)+iStart-1, 1, len, f);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6003
		    } else
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11751
diff changeset
  6004
#endif
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6005
		    {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6006
			o_offs = (char *)(__ByteArrayInstPtr(aCollection)->ba_element)-(char *)__InstPtr(aCollection);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6007
			__WRITEBYTES_OBJ__(cnt, f,  aCollection, o_offs+offs, len, _buffered, __INST(handleType));
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6008
		    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6009
		} else
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6010
		    goto out;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6011
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6012
	    if (cnt == len) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6013
		if (__isSmallInteger(__INST(position))) {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6014
		    INT np = __intVal(__INST(position)) + len;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6015
		    OBJ t;
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6016
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6017
		    t = __MKINT(np); __INST(position) = t; __STORE(self, t);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6018
		} else {
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6019
		    __INST(position) = nil; /* i.e. do not know */
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6020
		}
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6021
		RETURN (self);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6022
	    }
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6023
	    error = __mkSmallInteger(__threadErrno);
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6024
	}
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6025
    }
1478
aae07192b7d1 labels in empty statements need a semi
Claus Gittinger <cg@exept.de>
parents: 1469
diff changeset
  6026
out: ;
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6027
%}.
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6028
    error notNil ifTrue:[
16508
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6029
	lastErrorNumber := error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6030
	self writeError:error.
f2d6afb19d35 added tcgetattr
Claus Gittinger <cg@exept.de>
parents: 16493
diff changeset
  6031
	^ self
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6032
    ].
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6033
    ^ super nextPutAll:aCollection startingAt:start to:stop
14662
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6034
!
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6035
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6036
nextPutAllUnicode:aString
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6037
    "normal streams can not handle multi-byte characters, so convert them to utf8.
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6038
     This is needed, so that you can do ('something' asUnicode16String errorPrintCR)"
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6039
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6040
    aString do:[:eachCharacter|
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6041
	self nextPutUtf8:eachCharacter.
14662
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6042
    ].
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6043
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6044
    "
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6045
	'Bönnigheim' asUnicode16String errorPrintCR
14662
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6046
    "
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6047
!
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6048
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6049
nextPutUnicode:aCharacter
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6050
    "normal streams can not handle multi-byte characters, so convert them to utf8"
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6051
adb9b387538e class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 14644
diff changeset
  6052
    self nextPutUtf8:aCharacter.
15655
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6053
!
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6054
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6055
nextPutUtf16:aCharacter
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6056
    "append my UTF-16 representation to the argument, aStream.
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6057
     UTF-16 can encode only characters with code points between 0 to 16r10FFFF."
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6058
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6059
    |codePoint|
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6060
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6061
    codePoint := aCharacter codePoint.
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6062
    (codePoint <= 16rD7FF
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6063
      or:[codePoint >= 16rE000 and:[codePoint <= 16rFFFF]]) ifTrue:[
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6064
	self nextPutShort:codePoint MSB:true.
15655
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6065
    ] ifFalse:[codePoint <= 16r10FFFF ifTrue:[
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6066
	|highBits lowBits|
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6067
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6068
	codePoint := codePoint - 16r100000.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6069
	highBits := codePoint bitShift:-10.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6070
	lowBits := codePoint bitAnd:16r3FF.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6071
	self nextPutShort:highBits+16rD800 MSB:true.
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6072
	self nextPutShort:lowBits+16rDC00 MSB:true.
15655
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6073
    ] ifFalse:[
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6074
	EncodingError raiseWith:aCharacter errorString:'Character cannot be encoded as UTF-16'.
15655
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6075
    ]].
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6076
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6077
    "
16296
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6078
	(FileStream newTemporary
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6079
	    nextPutUtf16:$B;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6080
	    nextPutUtf16:$Ä;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6081
	    nextPutUtf16:(Character codePoint:16r10CCCC);
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6082
	    reset;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6083
	    binary;
f8548919e174 Fix error handling.
Stefan Vogel <sv@exept.de>
parents: 15994
diff changeset
  6084
	    contents)
15655
a044910b6f38 class: ExternalStream
Stefan Vogel <sv@exept.de>
parents: 15619
diff changeset
  6085
    "
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6086
! !
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6087
2045
1ad17ca6520f fall back to super>>nextPutLine: if argument is not a string.
Claus Gittinger <cg@exept.de>
parents: 2044
diff changeset
  6088
!ExternalStream class methodsFor:'documentation'!
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  6089
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  6090
version
16509
2cf139885242 Fixed ExternalStream>>tcgetattr
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16508
diff changeset
  6091
    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.392 2014-06-02 11:50:27 vrany Exp $'
12398
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  6092
!
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  6093
7243f8014d98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12395
diff changeset
  6094
version_CVS
16509
2cf139885242 Fixed ExternalStream>>tcgetattr
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16508
diff changeset
  6095
    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.392 2014-06-02 11:50:27 vrany Exp $'
730
62643519bf68 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 711
diff changeset
  6096
! !
6804
caf6a4521d4c added utility: ExternalStream >> copyToEndInto:
Claus Gittinger <cg@exept.de>
parents: 6758
diff changeset
  6097
14603
f73f90e25023 class: ExternalStream
Claus Gittinger <cg@exept.de>
parents: 14518
diff changeset
  6098
612
e640bef6170e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  6099
ExternalStream initialize!