PositionableStream.st
author Claus Gittinger <cg@exept.de>
Thu, 09 Nov 2000 11:25:36 +0100
changeset 5694 20ccdf123aab
parent 5441 e88302747bbd
child 5695 1c9d5c89e0c2
permissions -rw-r--r--
add a cr, if the source does not end in a carriage return. (to avoid an stc-parser bug, ignoring exclamation marks in an EOL-commented line)
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) 1989 by Claus Gittinger
159
514c749165c3 *** empty log message ***
claus
parents: 93
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
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
    13
5393
7e2230bd4bad moved some stuff to superclass
Claus Gittinger <cg@exept.de>
parents: 5308
diff changeset
    14
"{ Package: 'stx:libbasic' }"
7e2230bd4bad moved some stuff to superclass
Claus Gittinger <cg@exept.de>
parents: 5308
diff changeset
    15
57
db9677479d35 *** empty log message ***
claus
parents: 44
diff changeset
    16
PeekableStream subclass:#PositionableStream
973
5bb2473bf1ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 875
diff changeset
    17
	instanceVariableNames:'collection position readLimit writeLimit'
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    18
	classVariableNames:'ZeroPosition InvalidPositionErrorSignal ErrorDuringFileInSignal
5393
7e2230bd4bad moved some stuff to superclass
Claus Gittinger <cg@exept.de>
parents: 5308
diff changeset
    19
		CurrentFileInDirectoryQuerySignal ChunkSeparator'
973
5bb2473bf1ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 875
diff changeset
    20
	poolDictionaries:''
5bb2473bf1ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 875
diff changeset
    21
	category:'Streams'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    22
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    23
1897
22d1ce9b62a4 fixes for packageQuery
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
    24
!PositionableStream class methodsFor:'documentation'!
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    25
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    26
copyright
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    27
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    28
 COPYRIGHT (c) 1989 by Claus Gittinger
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
    29
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    30
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    31
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    32
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    33
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    34
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    35
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    36
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    37
"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
    38
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    39
!
10
claus
parents: 5
diff changeset
    40
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    41
documentation
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    42
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    43
    Instances of PositionableStream allow positioning the read pointer.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    44
    The PositionableStream class also adds methods for source-chunk reading
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    45
    and writing, and for filing-in/out of source code.
3249
8401c3e42165 checkin to force re-checkout.
Claus Gittinger <cg@exept.de>
parents: 3184
diff changeset
    46
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    47
    This is an abstract class.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1086
diff changeset
    48
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    49
    Compatibility Notice:
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    50
       For historical reasons, ST/X starts with a 1-position (i.e. as in collections),
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    51
       while ST-80 uses 0-based postions for streams and 1-based positions for collections.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    52
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    53
    THIS CERTAINLY IS BAD.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    54
    To allow for portable code, this method can be asked to return the initial position.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    55
    (for code, which ought to execute under other systems, use:
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    56
       posZero := (PositionableStream class respondsTo:#zeroPosition) 
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    57
                       ifTrue:[PositionableStream zeroPosition]
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    58
                       ifFalse:[0] 
5228
637a1a93b740 comments
Claus Gittinger <cg@exept.de>
parents: 5223
diff changeset
    59
    Please use this query for ST/X programs - we will eventually switch to a 0-based
637a1a93b740 comments
Claus Gittinger <cg@exept.de>
parents: 5223
diff changeset
    60
    indexing scheme, and your programs should be prepared for that.
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    61
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1086
diff changeset
    62
    [author:]
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    63
        Claus Gittinger
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    64
"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
    65
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    66
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    67
1897
22d1ce9b62a4 fixes for packageQuery
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
    68
!PositionableStream class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    69
10
claus
parents: 5
diff changeset
    70
initialize
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
    71
    "setup the signal used to handle errors during fileIn"
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
    72
10
claus
parents: 5
diff changeset
    73
    ErrorDuringFileInSignal isNil ifTrue:[
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    74
        ErrorDuringFileInSignal := ErrorSignal newSignalMayProceed:true.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    75
        ErrorDuringFileInSignal nameClass:self message:#errorDuringFileInSignal.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    76
        ErrorDuringFileInSignal notifierString:'error during fileIn'.
276
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
    77
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    78
        InvalidPositionErrorSignal := PositionErrorSignal newSignalMayProceed:true.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    79
        InvalidPositionErrorSignal nameClass:self message:#invalidPositionErrorSignal.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    80
        InvalidPositionErrorSignal notifierString:'invalid position'.
2966
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
    81
5223
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
    82
        CurrentFileInDirectoryQuerySignal := QuerySignal new.
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
    83
        CurrentFileInDirectoryQuerySignal nameClass:self message:#currentFileInDirectoryQuerySignal.
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
    84
        CurrentFileInDirectoryQuerySignal notifierString:'query for current directory when filing in'.
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
    85
        CurrentFileInDirectoryQuerySignal handlerBlock:[:ex | ex proceedWith:Filename currentDirectory].
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
    86
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    87
        ZeroPosition := 1.
10
claus
parents: 5
diff changeset
    88
    ]
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
    89
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
    90
10
claus
parents: 5
diff changeset
    91
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    92
1897
22d1ce9b62a4 fixes for packageQuery
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
    93
!PositionableStream class methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    94
a27a279701f8 Initial revision
claus
parents:
diff changeset
    95
on:aCollection
a27a279701f8 Initial revision
claus
parents:
diff changeset
    96
    "return a new PositionableStream streaming on aCollection"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    97
a27a279701f8 Initial revision
claus
parents:
diff changeset
    98
    ^ (self basicNew) on:aCollection
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
    99
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   100
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   101
a27a279701f8 Initial revision
claus
parents:
diff changeset
   102
on:aCollection from:first to:last
a27a279701f8 Initial revision
claus
parents:
diff changeset
   103
    "return a new PositionableStream streaming on aCollection
a27a279701f8 Initial revision
claus
parents:
diff changeset
   104
     from first to last"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   105
369
claus
parents: 362
diff changeset
   106
    ^ (self basicNew) on:aCollection from:first to:last
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   107
57
db9677479d35 *** empty log message ***
claus
parents: 44
diff changeset
   108
!
db9677479d35 *** empty log message ***
claus
parents: 44
diff changeset
   109
db9677479d35 *** empty log message ***
claus
parents: 44
diff changeset
   110
with:aCollection
db9677479d35 *** empty log message ***
claus
parents: 44
diff changeset
   111
    "return a new PositionableStream streaming on aCollection,
db9677479d35 *** empty log message ***
claus
parents: 44
diff changeset
   112
     the stream is positioned to the end of the collection."
db9677479d35 *** empty log message ***
claus
parents: 44
diff changeset
   113
362
claus
parents: 360
diff changeset
   114
    ^ (self basicNew) with:aCollection
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   115
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   116
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   117
3032
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   118
!PositionableStream class methodsFor:'Signal constants'!
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   119
5223
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
   120
currentFileInDirectoryQuerySignal
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
   121
    "return the querySignal, which can be used to ask for the current directory
5228
637a1a93b740 comments
Claus Gittinger <cg@exept.de>
parents: 5223
diff changeset
   122
     during a fileIn (that is the directory where the filed-in file resides),
637a1a93b740 comments
Claus Gittinger <cg@exept.de>
parents: 5223
diff changeset
   123
     and in a fileBrowsers doIt.
637a1a93b740 comments
Claus Gittinger <cg@exept.de>
parents: 5223
diff changeset
   124
     Using this, allows for the loaded code or doIts to ask for the fileBrowsers
637a1a93b740 comments
Claus Gittinger <cg@exept.de>
parents: 5223
diff changeset
   125
     current directory, by asking this querySignal (which is nice sometimes)."
5223
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
   126
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
   127
    ^ CurrentFileInDirectoryQuerySignal
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   128
5223
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
   129
!
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
   130
3032
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   131
invalidPositionErrorSignal
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   132
    "return the signal raised if positioning is attempted to an
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   133
     invalid position (i.e. before the begin of the stream or after
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   134
     the end)"
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   135
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   136
    ^ InvalidPositionErrorSignal
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   137
3032
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   138
! !
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   139
1897
22d1ce9b62a4 fixes for packageQuery
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   140
!PositionableStream class methodsFor:'constants'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   141
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   142
zeroPosition
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   143
    "return the number, which marks the initial position.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   144
     Compatibility Notice:
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   145
        For historical reasons, ST/X starts with a 1-position (i.e. as in collections),
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   146
        while ST-80 uses 0-based postions for streams and 1-based positions for collections.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   147
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   148
     THIS CERTAINLY IS BAD.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   149
     To allow for portable code, this method can be asked to return the initial position.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   150
     (for code, which ought to execute under other systems, use:
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   151
        posZero := (PositionableStream class respondsTo:#zeroPosition) 
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   152
                        ifTrue:[PositionableStream zeroPosition]
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   153
                        ifFalse:[0] 
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   154
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   155
     Be prepared for this to be changed to return 0 as other ST's do.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   156
        "
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   157
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   158
    ^ ZeroPosition
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   159
360
claus
parents: 329
diff changeset
   160
! !
claus
parents: 329
diff changeset
   161
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   162
!PositionableStream methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   163
a27a279701f8 Initial revision
claus
parents:
diff changeset
   164
contents
a27a279701f8 Initial revision
claus
parents:
diff changeset
   165
    "return the entire contents of the stream"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   166
a27a279701f8 Initial revision
claus
parents:
diff changeset
   167
    ^ collection
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   168
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   169
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   170
a27a279701f8 Initial revision
claus
parents:
diff changeset
   171
peek
a27a279701f8 Initial revision
claus
parents:
diff changeset
   172
    "look ahead for and return the next element"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   173
a27a279701f8 Initial revision
claus
parents:
diff changeset
   174
    |peekObject|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   175
a27a279701f8 Initial revision
claus
parents:
diff changeset
   176
    peekObject := self next.
10
claus
parents: 5
diff changeset
   177
    self backStep.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   178
    ^ peekObject
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   179
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   180
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   181
2432
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   182
peekForAll:aCollection
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   183
    "return true and advance if the next elements are the same
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   184
     as aCollection. 
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   185
     otherwise stay and let the position unchanged"
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   186
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   187
    |oldPos|
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   188
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   189
    oldPos := self position.
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   190
    (self next:(aCollection size)) = aCollection ifTrue:[
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   191
        ^ true
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   192
    ].
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   193
    self position:oldPos.
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   194
    ^ false
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   195
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   196
    "Created: 1.3.1997 / 15:11:25 / cg"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   197
2432
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   198
!
5338f9b60a66 added #peekForAll:
Claus Gittinger <cg@exept.de>
parents: 2343
diff changeset
   199
3905
682fc38fd339 added read-access to readLimit.
Claus Gittinger <cg@exept.de>
parents: 3604
diff changeset
   200
readLimit
682fc38fd339 added read-access to readLimit.
Claus Gittinger <cg@exept.de>
parents: 3604
diff changeset
   201
    "return the read-limit; thats the position at which EOF is returned"
682fc38fd339 added read-access to readLimit.
Claus Gittinger <cg@exept.de>
parents: 3604
diff changeset
   202
682fc38fd339 added read-access to readLimit.
Claus Gittinger <cg@exept.de>
parents: 3604
diff changeset
   203
    ^ readLimit
682fc38fd339 added read-access to readLimit.
Claus Gittinger <cg@exept.de>
parents: 3604
diff changeset
   204
682fc38fd339 added read-access to readLimit.
Claus Gittinger <cg@exept.de>
parents: 3604
diff changeset
   205
    "Created: / 30.10.1998 / 16:47:04 / cg"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   206
3905
682fc38fd339 added read-access to readLimit.
Claus Gittinger <cg@exept.de>
parents: 3604
diff changeset
   207
!
682fc38fd339 added read-access to readLimit.
Claus Gittinger <cg@exept.de>
parents: 3604
diff changeset
   208
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   209
readLimit:aNumber
369
claus
parents: 362
diff changeset
   210
    "set the read-limit; thats the position at which EOF is returned"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   211
a27a279701f8 Initial revision
claus
parents:
diff changeset
   212
    readLimit := aNumber
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   213
369
claus
parents: 362
diff changeset
   214
!
claus
parents: 362
diff changeset
   215
claus
parents: 362
diff changeset
   216
writeLimit:aNumber
claus
parents: 362
diff changeset
   217
    "set the writeLimit; thats the position after which writing is prohibited"
claus
parents: 362
diff changeset
   218
claus
parents: 362
diff changeset
   219
    writeLimit := aNumber
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   220
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   221
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   222
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
   223
!PositionableStream methodsFor:'chunk input/output'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   224
a27a279701f8 Initial revision
claus
parents:
diff changeset
   225
nextChunkPut:aString
a27a279701f8 Initial revision
claus
parents:
diff changeset
   226
    "put aString as a chunk onto the receiver;
217
a0400fdbc933 *** empty log message ***
claus
parents: 180
diff changeset
   227
     double all exclamation marks except within primitives and append a 
276
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   228
     single delimiting exclamation mark at the end.
718
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   229
     This modification of the chunk format (not doubling exclas in primitive code)
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   230
     was done to have primitive code more readable and easier be edited in the fileBrowser
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   231
     or other editors.
276
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   232
     Its no incompatibility, since inline primitives are an ST/X special
718
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   233
     and code containing ST/X primitives cannot be loaded into other smalltalks anyway."
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   234
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   235
    self nextPutAllAsChunk:aString.
5393
7e2230bd4bad moved some stuff to superclass
Claus Gittinger <cg@exept.de>
parents: 5308
diff changeset
   236
    self nextPut:(self class chunkSeparator)
718
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   237
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   238
    "Modified: 9.12.1995 / 15:56:54 / cg"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   239
718
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   240
!
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   241
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   242
nextPutAllAsChunk:aString
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   243
    "put aString as a chunk onto the receiver;
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   244
     double all exclamation marks except within primitives.
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   245
     This modification of the chunk format (not doubling exclas in primitive code)
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   246
     was done to have primitive code more readable and easier be edited in the fileBrowser
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   247
     or other editors.
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   248
     Its no incompatibility, since inline primitives are an ST/X special
6f8222ff2ff0 extra entry to store a chunk without appending a chunk-separator
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   249
     and code containing ST/X primitives cannot be loaded into other smalltalks anyway."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   250
517
c8fae50c2cc5 fixed nextChunkPut: which sometimes doubled exclas within primitives
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   251
    |sep stopChars inPrimitive character
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   252
     index    "{ Class:SmallInteger }"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   253
     endIndex "{ Class:SmallInteger }"
217
a0400fdbc933 *** empty log message ***
claus
parents: 180
diff changeset
   254
     stop     "{ Class:SmallInteger }"
253
30daee717a53 *** empty log message ***
claus
parents: 217
diff changeset
   255
     next     "{ Class:SmallInteger }"|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   256
3386
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   257
    endIndex := aString size.
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   258
    endIndex == 0 ifTrue:[^ self].
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   259
5393
7e2230bd4bad moved some stuff to superclass
Claus Gittinger <cg@exept.de>
parents: 5308
diff changeset
   260
    sep := self class chunkSeparator.
517
c8fae50c2cc5 fixed nextChunkPut: which sometimes doubled exclas within primitives
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   261
    stopChars := '{}' copyWith:sep.
c8fae50c2cc5 fixed nextChunkPut: which sometimes doubled exclas within primitives
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   262
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   263
    inPrimitive := false.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   264
    index := 1.
217
a0400fdbc933 *** empty log message ***
claus
parents: 180
diff changeset
   265
    stop := endIndex + 1.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   266
a27a279701f8 Initial revision
claus
parents:
diff changeset
   267
    [index <= endIndex] whileTrue:[
3386
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   268
        "
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   269
         find position of next interesting character; 
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   270
         output stuff up to that one in one piece
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   271
        "
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   272
        next := aString indexOfAny:stopChars startingAt:index ifAbsent:stop.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   273
3386
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   274
        ((index == 1) and:[next == stop]) ifTrue:[
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   275
            self nextPutAll:aString
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   276
        ] ifFalse:[
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   277
            self nextPutAll:aString startingAt:index to:(next - 1)
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   278
        ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   279
3386
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   280
        index := next.
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   281
        (index <= endIndex) ifTrue:[
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   282
            character := aString at:index.
276
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   283
3386
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   284
            (character == ${ ) ifTrue:[
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   285
                "/ starts a primitive
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   286
                ((index > 1) and:[(aString at:index-1) == $%]) ifTrue:[
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   287
                    inPrimitive := true
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   288
                ]
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   289
            ] ifFalse:[
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   290
                "/ ends a primitive
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   291
                (character == $} ) ifTrue:[
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   292
                    ((index > 1) and:[(aString at:index-1) == $%]) ifTrue:[
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   293
                        inPrimitive := false
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   294
                    ]
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   295
                ] ifFalse:[
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   296
                    "/
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   297
                    "/ exclas have to be doubled - except if within a primitive
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   298
                    "/
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   299
                    inPrimitive ifFalse:[
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   300
                        (character == sep) ifTrue:[
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   301
                            self nextPut:sep
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   302
                        ]
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   303
                    ]
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   304
                ]
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   305
            ].
276
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   306
3386
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   307
            self nextPut:character.
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   308
            index := index + 1.
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   309
        ].
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   310
    ].
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   311
    character ~~ Character cr ifTrue:[
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   312
        self cr.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   313
    ].
517
c8fae50c2cc5 fixed nextChunkPut: which sometimes doubled exclas within primitives
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   314
3386
735c8e814726 quicker empty chunk-putting
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
   315
    "Modified: / 21.4.1998 / 17:22:47 / cg"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   316
    "/ foo
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   317
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   318
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   319
nextPutChunkSeparator
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   320
    "append a chunk separator character"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   321
5393
7e2230bd4bad moved some stuff to superclass
Claus Gittinger <cg@exept.de>
parents: 5308
diff changeset
   322
    self nextPut:(self class chunkSeparator)
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   323
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   324
    "Created: 13.9.1995 / 17:39:26 / claus"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   325
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
   326
! !
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
   327
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
   328
!PositionableStream methodsFor:'fileIn'!
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
   329
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   330
askForDebug:message
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   331
    "launch a box asking if a debugger is wanted - used when an error
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   332
     occurs while filing in"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   333
4416
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   334
    ^ self askForDebug:message canContinueForAll:false
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   335
4416
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   336
!
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   337
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   338
askForDebug:message canContinueForAll:canContinueForAll
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   339
    "launch a box asking if a debugger is wanted - used when an error
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   340
     occurs while filing in"
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   341
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   342
    |labels values|
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   343
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   344
    Smalltalk isInitialized ifFalse:[
2130
b9e7e1cf98bd newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2005
diff changeset
   345
        'PositionableStream [warning]: fileIn error during startup: ' errorPrint. message errorPrintCR.
b9e7e1cf98bd newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2005
diff changeset
   346
        ^ #debug
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   347
    ].
875
2bb6fea4cb55 dont launch box when fileIn errors occur during startup
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
   348
    "/
2bb6fea4cb55 dont launch box when fileIn errors occur during startup
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
   349
    "/ are we in the startup sequence of an image restart ?
2bb6fea4cb55 dont launch box when fileIn errors occur during startup
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
   350
    "/
2bb6fea4cb55 dont launch box when fileIn errors occur during startup
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
   351
    Processor activeProcessIsSystemProcess ifTrue:[
2130
b9e7e1cf98bd newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2005
diff changeset
   352
        'PositionableStream [warning]: fileIn error during startup: ' errorPrint. message errorPrintCR.
b9e7e1cf98bd newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2005
diff changeset
   353
        ^ #continue
875
2bb6fea4cb55 dont launch box when fileIn errors occur during startup
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
   354
    ].
2bb6fea4cb55 dont launch box when fileIn errors occur during startup
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
   355
4416
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   356
    canContinueForAll ifTrue:[
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   357
          labels := #('cancel' 'skip' 'debug' 'dont ask again' 'continue').
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   358
          values := #(#abort #skip #debug #continueForAll #continue).
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   359
    ] ifFalse:[
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   360
          labels := #('cancel' 'skip' 'debug' 'continue').
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   361
          values := #(#abort #skip #debug #continue).
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   362
    ].
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   363
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   364
    ^ OptionBox 
2130
b9e7e1cf98bd newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2005
diff changeset
   365
          request:message 
b9e7e1cf98bd newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2005
diff changeset
   366
          label:'Error in fileIn'
b9e7e1cf98bd newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2005
diff changeset
   367
          form:(WarningBox iconBitmap)
4416
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   368
          buttonLabels:labels
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   369
          values:values
2130
b9e7e1cf98bd newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2005
diff changeset
   370
          default:#continue.
975
716245c81bc0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   371
2130
b9e7e1cf98bd newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 2005
diff changeset
   372
    "Modified: 10.1.1997 / 18:00:56 / cg"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   373
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   374
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   375
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
   376
fileIn
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
   377
    "file in from the receiver, i.e. read chunks and evaluate them -
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
   378
     return the value of the last chunk."
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
   379
4912
43182d65eaf2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4772
diff changeset
   380
    |oldPath val|
43182d65eaf2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4772
diff changeset
   381
43182d65eaf2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4772
diff changeset
   382
    self isFileStream ifFalse:[
43182d65eaf2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4772
diff changeset
   383
        ^ self fileInNotifying:(SourceFileLoader on:self) passChunk:true.
43182d65eaf2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4772
diff changeset
   384
    ].
43182d65eaf2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4772
diff changeset
   385
5223
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
   386
    [   |thisDirectory|
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
   387
4912
43182d65eaf2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4772
diff changeset
   388
        oldPath := Smalltalk systemPath.
5223
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
   389
        thisDirectory := self pathName asFilename directory.
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
   390
        Smalltalk systemPath:(oldPath copy addFirst:thisDirectory pathName; yourself).
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
   391
        CurrentFileInDirectoryQuerySignal answer:thisDirectory do:[
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
   392
            val := self fileInNotifying:(SourceFileLoader on:self) passChunk:true.
06cf79da1d4a added currentFileInDirectory query
tm
parents: 5098
diff changeset
   393
        ]
4912
43182d65eaf2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4772
diff changeset
   394
    ] valueNowOrOnUnwindDo:[
43182d65eaf2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4772
diff changeset
   395
        Smalltalk systemPath:oldPath.
43182d65eaf2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4772
diff changeset
   396
    ].
43182d65eaf2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4772
diff changeset
   397
    ^ val
43182d65eaf2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4772
diff changeset
   398
43182d65eaf2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4772
diff changeset
   399
    "Modified: / 16.10.1999 / 12:25:27 / cg"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   400
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
   401
!
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
   402
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   403
fileInNextChunkNotifying:someone
a27a279701f8 Initial revision
claus
parents:
diff changeset
   404
    "read next chunk, evaluate it and return the result;
276
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   405
     someone (which is usually some codeView) is notified of errors.
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   406
     Filein is done as follows:
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   407
	read a chunk
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   408
	if it started with an excla, evaluate it, and let the resulting object
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   409
	fileIn more chunks.
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   410
	This is a nice trick, since the methodsFor: expression evaluates to
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   411
	a ClassCategoryReader which reads and compiles chunks for its class.
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   412
	However, other than methodsFor expressions are possible - you can
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   413
	(in theory) create readers for any syntax.
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   414
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   415
282
94f5c3a6230d *** empty log message ***
claus
parents: 276
diff changeset
   416
    ^ self fileInNextChunkNotifying:someone passChunk:false
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   417
282
94f5c3a6230d *** empty log message ***
claus
parents: 276
diff changeset
   418
!
94f5c3a6230d *** empty log message ***
claus
parents: 276
diff changeset
   419
94f5c3a6230d *** empty log message ***
claus
parents: 276
diff changeset
   420
fileInNextChunkNotifying:someone passChunk:passChunk
94f5c3a6230d *** empty log message ***
claus
parents: 276
diff changeset
   421
    "read next chunk, evaluate it and return the result;
94f5c3a6230d *** empty log message ***
claus
parents: 276
diff changeset
   422
     someone (which is usually some codeView) is notified of errors.
94f5c3a6230d *** empty log message ***
claus
parents: 276
diff changeset
   423
     Filein is done as follows:
3032
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   424
        read a chunk
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   425
        if it started with an excla, evaluate it, and let the resulting object
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   426
        fileIn more chunks.
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   427
        This is a nice trick, since the methodsFor: expression evaluates to
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   428
        a ClassCategoryReader which reads and compiles chunks for its class.
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   429
        However, other than methodsFor expressions are possible - you can
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   430
        (in theory) create readers for any syntax.
282
94f5c3a6230d *** empty log message ***
claus
parents: 276
diff changeset
   431
    "
94f5c3a6230d *** empty log message ***
claus
parents: 276
diff changeset
   432
276
3b6d97620494 *** empty log message ***
claus
parents: 253
diff changeset
   433
    |aString sawExcla rslt done|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   434
a27a279701f8 Initial revision
claus
parents:
diff changeset
   435
    self skipSeparators.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   436
    self atEnd ifFalse:[
5393
7e2230bd4bad moved some stuff to superclass
Claus Gittinger <cg@exept.de>
parents: 5308
diff changeset
   437
        sawExcla := self peekFor:(self class chunkSeparator).
3032
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   438
        aString := self nextChunk.
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   439
        "/
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   440
        "/ handle empty chunks;
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   441
        "/ this allows for Squeak code to be filedIn
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   442
        "/
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   443
        [aString size == 0
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   444
        and:[self atEnd not]] whileTrue:[
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   445
            aString := self nextChunk.
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   446
        ].
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   447
        aString size ~~ 0 ifTrue:[
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   448
            passChunk ifTrue:[
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   449
                someone source:aString
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   450
            ].
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   451
            sawExcla ifFalse:[
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   452
                rslt := Smalltalk::Compiler evaluate:aString notifying:someone.
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   453
            ] ifTrue:[
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   454
                Smalltalk::Compiler emptySourceNotificationSignal handle:[:ex |
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   455
                    ^ nil
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   456
                ] do:[
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   457
                    rslt := Smalltalk::Compiler evaluate:aString notifying:someone compile:false.
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   458
                ].
282
94f5c3a6230d *** empty log message ***
claus
parents: 276
diff changeset
   459
3032
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   460
                "
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   461
                 usually, the above chunk consists of some methodsFor:-expression
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   462
                 in this case, the returned value is a ClassCategoryReader,
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   463
                 which is used to load & compile the methods ...
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   464
                "
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   465
                rslt isNil ifTrue:[
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   466
                    "
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   467
                     however, if that was nil (i.e. some error), we skip chunks
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   468
                     up to the next empty chunk.
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   469
                    "
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   470
                    Transcript showCR:'skipping chunks ...'.
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   471
                    done := false.
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   472
                    [done] whileFalse:[
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   473
                        aString := self nextChunk.
3990
be7844e1e603 size == 0 implies isEmpty == true
Claus Gittinger <cg@exept.de>
parents: 3966
diff changeset
   474
                        done := (aString size == 0).
3032
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   475
                    ]
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   476
                ] ifFalse:[
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   477
                    rslt := rslt fileInFrom:self notifying:someone passChunk:passChunk
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   478
                ]
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   479
            ]
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   480
        ]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   481
    ].
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   482
    ^ rslt
1420
be5f8e9574cc showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   483
3032
d267a0b1b48d handle empty chunks when filing in
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   484
    "Modified: 14.10.1997 / 17:10:35 / cg"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   485
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   486
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   487
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   488
fileInNotifying:someone passChunk:passChunk
5302
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   489
    "central method to file in from the receiver, i.e. read chunks and evaluate them -
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   490
     return the value of the last chunk.
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   491
     Someone (which is usually some codeView) is notified of errors."
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   492
2893
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   493
    |lastValue pkg spc spaces
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   494
     packageQuerySignal nameSpaceQuerySignal usedNameSpaceQuerySignal
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   495
     changeDefaultApplicationNotificationSignal
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   496
     defaultApplicationQuerySignal defaultApplication
5250
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   497
     confirmationQuerySignal handledSignals passedSignals
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   498
     dontAskSignals askSomeoneForPackage redef outerContext|
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   499
5302
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   500
    self skipSeparators.
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   501
    self peek == $< ifTrue:[
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   502
        "/ assume, its an xml file
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   503
        ^ self fileInXMLNotifying:someone passChunk:passChunk.
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   504
    ].
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   505
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   506
    "/ support for V'Age applications
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   507
    defaultApplicationQuerySignal := Class defaultApplicationQuerySignal.
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   508
    changeDefaultApplicationNotificationSignal := Class changeDefaultApplicationNotificationSignal.
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   509
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   510
    "/ support for ST/X's namespaces & packages
2343
93152bcf4101 only fetch signals once
Claus Gittinger <cg@exept.de>
parents: 2154
diff changeset
   511
    packageQuerySignal := Class packageQuerySignal.
93152bcf4101 only fetch signals once
Claus Gittinger <cg@exept.de>
parents: 2154
diff changeset
   512
    nameSpaceQuerySignal := Class nameSpaceQuerySignal.
93152bcf4101 only fetch signals once
Claus Gittinger <cg@exept.de>
parents: 2154
diff changeset
   513
    usedNameSpaceQuerySignal := Class usedNameSpaceQuerySignal.
93152bcf4101 only fetch signals once
Claus Gittinger <cg@exept.de>
parents: 2154
diff changeset
   514
2893
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   515
    (someone respondsTo:#packageToInstall) ifFalse:[
4059
75f3acfd7ac9 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 3990
diff changeset
   516
        pkg := packageQuerySignal query.
5250
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   517
        askSomeoneForPackage := false.
2893
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   518
    ] ifTrue:[
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   519
        pkg := someone packageToInstall.
5250
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   520
        askSomeoneForPackage := true.
2893
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   521
    ].
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   522
    (someone respondsTo:#currentNameSpace) ifFalse:[
4059
75f3acfd7ac9 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 3990
diff changeset
   523
        spc := nameSpaceQuerySignal query.
2893
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   524
    ] ifTrue:[
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   525
        spc := someone currentNameSpace
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   526
    ].
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   527
    (someone respondsTo:#usedNameSpaces) ifFalse:[
4059
75f3acfd7ac9 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 3990
diff changeset
   528
        spaces := usedNameSpaceQuerySignal query.
2893
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   529
    ] ifTrue:[
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   530
        spaces := someone usedNameSpaces
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   531
    ].
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   532
    (someone respondsTo:#defaultApplication) ifFalse:[
4059
75f3acfd7ac9 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 3990
diff changeset
   533
        defaultApplication := defaultApplicationQuerySignal query.
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   534
    ] ifTrue:[
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   535
        defaultApplication := someone defaultApplication
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   536
    ].
2893
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   537
3966
1013f1476687 suppress confirmation dialogs when classes violate conventions
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   538
    confirmationQuerySignal := Metaclass confirmationQuerySignal.
1013f1476687 suppress confirmation dialogs when classes violate conventions
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   539
5250
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   540
    passedSignals := IdentitySet new.
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   541
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   542
    handledSignals := SignalSet new.
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   543
    handledSignals add:changeDefaultApplicationNotificationSignal.
5250
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   544
    passedSignals add:changeDefaultApplicationNotificationSignal.
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   545
    handledSignals add:defaultApplicationQuerySignal.
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   546
    passedSignals add:defaultApplicationQuerySignal.
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   547
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   548
    handledSignals add:packageQuerySignal.
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   549
    handledSignals add:usedNameSpaceQuerySignal.
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   550
    handledSignals add:nameSpaceQuerySignal.
5250
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   551
3592
ac5e8c09ff42 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3584
diff changeset
   552
    handledSignals add:(Object errorSignal).
5250
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   553
    passedSignals add:(Object errorSignal).
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   554
3592
ac5e8c09ff42 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3584
diff changeset
   555
    handledSignals add:(Class methodRedefinitionSignal).
5250
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   556
    passedSignals add:(Class methodRedefinitionSignal).
3597
98bd336b3c3f also care for class redefinitions.
Claus Gittinger <cg@exept.de>
parents: 3592
diff changeset
   557
    handledSignals add:(Class classRedefinitionSignal).
5250
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   558
    passedSignals add:(Class classRedefinitionSignal).
3966
1013f1476687 suppress confirmation dialogs when classes violate conventions
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   559
    handledSignals add:confirmationQuerySignal.
5250
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   560
    passedSignals add:confirmationQuerySignal.
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   561
4772
8e701a1c9d6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
   562
    outerContext := thisContext.
8e701a1c9d6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
   563
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   564
    handledSignals handle:[:ex |
4416
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   565
        |sig action what sender msg param oldPackage newPackage proceedValue
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   566
         canContinueForAll|
1902
52376295aca8 namespace fixes
Claus Gittinger <cg@exept.de>
parents: 1897
diff changeset
   567
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   568
        sig := ex signal.
5250
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   569
"/sig == packageQuerySignal ifTrue:[
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   570
"/self halt.
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   571
"/].
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   572
        (passedSignals includes:sig) ifTrue:[
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   573
            (sig isHandledIn:outerContext) ifTrue:[
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   574
                ex reject
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   575
            ]
4772
8e701a1c9d6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
   576
        ].
8e701a1c9d6e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
   577
        
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   578
        sig == changeDefaultApplicationNotificationSignal ifTrue:[
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   579
            "/ invoked via #becomeDefault to set the defaultApp and the package.
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   580
            "/ (only when filing in V'Age code)
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   581
            defaultApplication := ex parameter.
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   582
            pkg := defaultApplication name asSymbol.
4487
6d4340c18e4f replaced #proceed with #proceedWith:nil
Claus Gittinger <cg@exept.de>
parents: 4452
diff changeset
   583
            ex proceedWith:nil
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   584
        ].
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   585
        sig == defaultApplicationQuerySignal ifTrue:[
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   586
            "/ query for the application to add classes & methods into
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   587
            "/ (only when filing in V'Age code)
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   588
            ex proceedWith:defaultApplication
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   589
        ].
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   590
        sig == packageQuerySignal ifTrue:[
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   591
            "/ query for the package to use for classes & methods
5250
991f068f9a80 not all query signals are passed (packageQuery)
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   592
            askSomeoneForPackage ifTrue:[
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   593
                ex proceedWith:someone packageToInstall
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   594
            ] ifFalse:[
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   595
                ex proceedWith:pkg
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   596
            ]
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   597
        ].
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   598
        sig == usedNameSpaceQuerySignal ifTrue:[
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   599
            "/ query for the namespaces searched when encountering globals
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   600
            ex proceedWith:spaces
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   601
        ].
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   602
        sig == nameSpaceQuerySignal ifTrue:[
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   603
            "/ query for the namespace to install new classes in
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   604
            ex proceedWith:spc
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   605
        ].
3966
1013f1476687 suppress confirmation dialogs when classes violate conventions
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   606
        sig == confirmationQuerySignal ifTrue:[
1013f1476687 suppress confirmation dialogs when classes violate conventions
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   607
            ex proceedWith:false "/ no dialogs popping up
1013f1476687 suppress confirmation dialogs when classes violate conventions
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   608
        ].
1013f1476687 suppress confirmation dialogs when classes violate conventions
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   609
3592
ac5e8c09ff42 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3584
diff changeset
   610
        sig == Stream endOfStreamSignal ifTrue:[
ac5e8c09ff42 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3584
diff changeset
   611
            ex reject
ac5e8c09ff42 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3584
diff changeset
   612
        ].
3580
47534257f9e5 avoid two queries for rejected signals.
Claus Gittinger <cg@exept.de>
parents: 3386
diff changeset
   613
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   614
        sig == Signal noHandlerSignal ifTrue:[
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   615
            ex parameter rejected ifTrue:[
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   616
                ex reject
3592
ac5e8c09ff42 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3584
diff changeset
   617
            ].
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   618
        ].
2893
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   619
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   620
        (dontAskSignals notNil and:[dontAskSignals includesKey:sig]) ifTrue:[
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   621
            ex proceedWith:(dontAskSignals at:sig)
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   622
        ].
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   623
4416
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   624
        canContinueForAll := false.
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   625
        redef := false.
4416
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   626
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   627
        "/ for your convenience ...
3597
98bd336b3c3f also care for class redefinitions.
Claus Gittinger <cg@exept.de>
parents: 3592
diff changeset
   628
        (sig == Class methodRedefinitionSignal) ifTrue:[
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   629
            param := ex parameter. "/ an association: oldMethod -> newMethod
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   630
            oldPackage := param key package.
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   631
            newPackage := param value package.
4770
9a6dcf673683 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4717
diff changeset
   632
            msg := 'trying to overwrite method:\\    ' , param key whoString , '\\in package ''' 
4325
a342aa8ff8c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4118
diff changeset
   633
                   , oldPackage , ''' with method from package ''' , newPackage , ''''.
4416
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   634
            canContinueForAll := true.
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   635
        ] ifFalse:[
3597
98bd336b3c3f also care for class redefinitions.
Claus Gittinger <cg@exept.de>
parents: 3592
diff changeset
   636
            (sig == Class classRedefinitionSignal) ifTrue:[
98bd336b3c3f also care for class redefinitions.
Claus Gittinger <cg@exept.de>
parents: 3592
diff changeset
   637
                param := ex parameter. "/ an association: oldClass -> newClass
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   638
                
3597
98bd336b3c3f also care for class redefinitions.
Claus Gittinger <cg@exept.de>
parents: 3592
diff changeset
   639
                oldPackage := param key package.
98bd336b3c3f also care for class redefinitions.
Claus Gittinger <cg@exept.de>
parents: 3592
diff changeset
   640
                newPackage := param value package.
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   641
                msg := 'trying to redefine class: ' , param key name asText allBold , '\\in package ''' 
4325
a342aa8ff8c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4118
diff changeset
   642
                       , oldPackage , ''' with new definition from package ''' , newPackage , ''''.
4416
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   643
                canContinueForAll := true.
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   644
                redef := true.
3597
98bd336b3c3f also care for class redefinitions.
Claus Gittinger <cg@exept.de>
parents: 3592
diff changeset
   645
            ] ifFalse:[
98bd336b3c3f also care for class redefinitions.
Claus Gittinger <cg@exept.de>
parents: 3592
diff changeset
   646
                msg := 'error in fileIn: %1'
98bd336b3c3f also care for class redefinitions.
Claus Gittinger <cg@exept.de>
parents: 3592
diff changeset
   647
            ]
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   648
        ].
2893
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   649
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   650
        what := ex errorString.
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   651
        what isNil ifTrue:[
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   652
            what := ex signal notifierString.
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   653
        ].
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   654
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   655
        "/ handle the case where no GUI has been built in,
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   656
        "/ just abort the fileIn with a notification
2893
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   657
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   658
        Display isNil ifTrue:[
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   659
            sender := ex suspendedContext sender.
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   660
            self notify:(what , 
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   661
                         ' in ' , sender receiver class name ,
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   662
                         '>>>' , sender selector).
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   663
            ex return
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   664
        ].
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   665
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   666
        msg := msg bindWith:what.
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   667
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   668
        sig == Object haltSignal ifTrue:[
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   669
            sender := ex suspendedContext.
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   670
            msg := msg , ('\\in ' , sender receiver class name , '>>>' , sender selector) withCRs
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   671
        ].
2893
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2559
diff changeset
   672
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   673
        "/ otherwise ask what should be done now and either
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   674
        "/ continue or abort the fileIn
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   675
        redef ifTrue:[
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   676
            action := OptionBox 
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   677
                          request:(msg withCRs) 
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   678
                          label:'Class redefinition in fileIn'
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   679
                          form:(WarningBox iconBitmap)
5098
4cb82101e94a always preserve the packageID, when redefining a class
Claus Gittinger <cg@exept.de>
parents: 4912
diff changeset
   680
"/ cg: now always keep the old packageID
4cb82101e94a always preserve the packageID, when redefining a class
Claus Gittinger <cg@exept.de>
parents: 4912
diff changeset
   681
"/                          buttonLabels:#('cancel' 'skip' 'debug' 'keep' 'keep all' 'continue' 'continue all')
4cb82101e94a always preserve the packageID, when redefining a class
Claus Gittinger <cg@exept.de>
parents: 4912
diff changeset
   682
"/                          values:#(#abort #skip #debug #keep #keepAll #continue #continueForAll)
4cb82101e94a always preserve the packageID, when redefining a class
Claus Gittinger <cg@exept.de>
parents: 4912
diff changeset
   683
                          buttonLabels:#('cancel' 'skip' 'debug' 'continue' 'continue all')
4cb82101e94a always preserve the packageID, when redefining a class
Claus Gittinger <cg@exept.de>
parents: 4912
diff changeset
   684
                          values:#(#abort #skip #debug #keep #keepAll)
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   685
                          default:#continue.
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   686
        ] ifFalse:[
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   687
            action := self askForDebug:msg withCRs canContinueForAll:canContinueForAll.
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   688
        ].
4416
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   689
        action == #continueForAll ifTrue:[
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   690
            dontAskSignals isNil ifTrue:[
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   691
                dontAskSignals := IdentityDictionary new.
4416
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   692
            ].
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   693
            dontAskSignals at:sig put:#continue.
4717
db56d09f509a Fix assignment.
Stefan Vogel <sv@exept.de>
parents: 4716
diff changeset
   694
            action := proceedValue := #continue.
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   695
        ] ifFalse:[
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   696
            action == #keepForAll ifTrue:[
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   697
                dontAskSignals isNil ifTrue:[
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   698
                    dontAskSignals := IdentityDictionary new.
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   699
                ].
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   700
                dontAskSignals at:sig put:#keep.
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   701
                action := #continue.
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   702
                proceedValue := #keep.
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   703
            ] ifFalse:[
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   704
                action == #keep ifTrue:[
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   705
                    action := #continue.
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   706
                    proceedValue := #keep.
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   707
                ].
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   708
            ].
4416
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   709
        ].
c6f292792b81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4405
diff changeset
   710
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   711
        action == #continue ifTrue:[
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   712
            ex proceedWith:(proceedValue ? #continue)
2005
d77ecd466b5b handle usedNameSpaces request
Claus Gittinger <cg@exept.de>
parents: 1999
diff changeset
   713
        ].
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   714
        action == #abort ifTrue:[
4118
c43e3a30b8b4 cancel button now raises abortSignal.
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
   715
            AbortSignal raise.
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   716
            ex return
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   717
        ].
3604
a86858b05849 offer skip on error
Claus Gittinger <cg@exept.de>
parents: 3597
diff changeset
   718
        action == #skip ifTrue:[
a86858b05849 offer skip on error
Claus Gittinger <cg@exept.de>
parents: 3597
diff changeset
   719
            ex proceedWith:nil
a86858b05849 offer skip on error
Claus Gittinger <cg@exept.de>
parents: 3597
diff changeset
   720
        ].
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   721
        action == #debug ifTrue:[
4716
e44df17fcbc7 Fix #enter:.. selector for Debugger
Stefan Vogel <sv@exept.de>
parents: 4639
diff changeset
   722
            Debugger enter:ex suspendedContext 
e44df17fcbc7 Fix #enter:.. selector for Debugger
Stefan Vogel <sv@exept.de>
parents: 4639
diff changeset
   723
                     withMessage:ex errorString 
e44df17fcbc7 Fix #enter:.. selector for Debugger
Stefan Vogel <sv@exept.de>
parents: 4639
diff changeset
   724
                     mayProceed:true.
4639
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   725
            ex proceedWith:proceedValue
a139399c5f4f package redefinition handling fixed
Claus Gittinger <cg@exept.de>
parents: 4559
diff changeset
   726
        ].
3584
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   727
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   728
        "/ (ex signal) enterDebuggerWith:ex message:what.
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   729
        ex reject
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   730
    ] do:[
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   731
        [self atEnd] whileFalse:[
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   732
            lastValue := self fileInNextChunkNotifying:someone passChunk:passChunk
099a64bc9b63 support for V'Age fileIn (application stuff)
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
   733
        ]
180
c488255bd0be *** empty log message ***
claus
parents: 159
diff changeset
   734
    ].
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   735
    ^ lastValue
973
5bb2473bf1ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 875
diff changeset
   736
4717
db56d09f509a Fix assignment.
Stefan Vogel <sv@exept.de>
parents: 4716
diff changeset
   737
    "Modified: / 10.9.1999 / 16:54:01 / stefan"
5098
4cb82101e94a always preserve the packageID, when redefining a class
Claus Gittinger <cg@exept.de>
parents: 4912
diff changeset
   738
    "Modified: / 14.12.1999 / 15:00:53 / cg"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   739
5302
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   740
!
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   741
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   742
fileInXMLNotifying:someone passChunk:passChunk
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   743
    "filein an XML source file (format as in campSmalltalk DTD)"
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   744
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   745
    | builder parser|
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   746
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   747
    builder := XMLSourceNodeBuilder new.
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   748
    parser := XMLParser on:self.
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   749
    parser builder:builder.
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   750
    parser validate:false.
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   751
    parser scanDocument.
f654a1cbc5b0 support for xml-fileIn
Claus Gittinger <cg@exept.de>
parents: 5250
diff changeset
   752
    self halt.
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   753
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   754
! !
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   755
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   756
!PositionableStream methodsFor:'positioning'!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   757
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   758
backStep
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   759
    "move backward read position by one"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   760
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   761
    self position:(self position - 1)
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   762
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   763
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   764
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   765
position
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   766
    "return the read position"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   767
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   768
    ^ position
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   769
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   770
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   771
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   772
position:index
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   773
    "set the read (or write) position"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   774
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   775
    "/ FIX: allow positioning right after last element of stream
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   776
    "/ ((index > readLimit) or:[index < 0]) ifTrue: [^ self positionError].
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   777
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   778
    ((index > (readLimit+1)) or:[index < ZeroPosition]) ifTrue: [^ self positionError].
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   779
    position := index
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   780
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   781
    "
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   782
     |s|
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   783
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   784
     s := '1234567890' readStream.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   785
     s next:5.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   786
     s position:1.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   787
     s next:7.       
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   788
    "
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   789
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   790
    "
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   791
     |s|
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   792
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   793
     s := '' writeStream.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   794
     s nextPutAll:'1234567890'.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   795
     s position:5.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   796
     s nextPutAll:'abcdefg'.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   797
     s contents 
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   798
    "
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   799
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   800
    "
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   801
     |s|
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   802
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   803
     s := '' writeStream.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   804
     s nextPutAll:'1234567890'.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   805
     s position:0.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   806
     s nextPutAll:'abcdefg'.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   807
     s contents 
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   808
    "
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   809
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   810
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   811
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   812
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   813
reset
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   814
    "set the read position to the beginning of the collection"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   815
5308
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   816
    self resetPosition
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   817
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   818
    "
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   819
     |s|
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   820
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   821
     s := 'hello world' readStream.
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   822
     Transcript showCR:(s next:5).
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   823
     s reset.
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   824
     Transcript showCR:(s next:10).
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   825
    "
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   826
5308
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   827
!
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   828
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   829
resetPosition
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   830
    "set the read position to the beginning of the collection"
8e8b5d2b3b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5302
diff changeset
   831
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   832
    position := self class zeroPosition
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   833
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   834
    "
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   835
     |s|
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   836
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   837
     s := 'hello world' readStream.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   838
     Transcript showCR:(s next:5).
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   839
     s reset.
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   840
     Transcript showCR:(s next:10).
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   841
    "
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   842
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   843
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   844
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   845
setToEnd
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   846
    "set the read position to the end of the collection"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   847
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   848
    position := readLimit
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   849
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   850
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   851
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   852
skip:numberToSkip
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   853
    "skip the next numberToSkip elements"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   854
4405
247058206089 added ZeroPosition;
Claus Gittinger <cg@exept.de>
parents: 4325
diff changeset
   855
    self position:(self position + numberToSkip)
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   856
1489
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   857
!
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   858
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   859
skipThroughAll:aCollection
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   860
    "skip for and through the sequence given by the argument, aCollection;
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   861
     return nil if not found, self otherwise. 
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   862
     On a successful match, the next read will return elements after aCollection;
2153
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   863
     if no match was found, the receiver will be positioned at the end.
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   864
     This is redefined here, to make use of positioning."
1489
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   865
2154
89e96599e1e2 skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2153
diff changeset
   866
    |buffer l first idx|
1489
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   867
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   868
    l := aCollection size.
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   869
    first := aCollection at:1.
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   870
    [self atEnd] whileFalse:[
2153
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   871
        buffer := self nextAvailable:l.
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   872
        buffer = aCollection ifTrue:[
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   873
            ^ self
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   874
        ].
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   875
        idx := buffer indexOf:first startingAt:2.
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   876
        idx == 0 ifFalse:[
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   877
            self position:(self position - l + idx - 1)
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   878
        ]
1489
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   879
    ].
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   880
    ^ nil
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   881
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   882
    "
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   883
     |s|
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   884
     s := ReadStream on:'12345678901234567890'.
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   885
     s skipThroughAll:'901'.
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   886
     s upToEnd  
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   887
    "
2153
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   888
    "
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   889
     |s|
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   890
     s := ReadStream on:'12345678901234567890'.
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   891
     s skipThroughAll:'1234'.
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   892
     s upToEnd  
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   893
    "
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   894
    "
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   895
     |s|
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   896
     s := ReadStream on:'12345678901234567890'.
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   897
     s skipThroughAll:'999'.
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   898
     s atEnd  
244e36cbbd9b skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   899
    "
1489
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   900
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   901
    "Created: 26.6.1996 / 09:35:35 / cg"
2154
89e96599e1e2 skipThroughAll: does not need the old position
Claus Gittinger <cg@exept.de>
parents: 2153
diff changeset
   902
    "Modified: 11.1.1997 / 19:16:38 / cg"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   903
1489
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   904
!
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   905
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   906
skipToAll:aCollection
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   907
    "skip for the sequence given by the argument, aCollection;
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   908
     return nil if not found, self otherwise. 
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   909
     On a successful match, the next read will return elements of aCollection."
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   910
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   911
    |oldPos buffer l first idx|
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   912
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   913
    oldPos := self position.
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   914
    l := aCollection size.
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   915
    first := aCollection at:1.
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   916
    [self atEnd] whileFalse:[
1998
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
   917
	buffer := self next:l.
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
   918
	buffer = aCollection ifTrue:[
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
   919
	    self position:(self position - l).
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
   920
	    ^ self
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
   921
	].
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
   922
	idx := buffer indexOf:first startingAt:2.
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
   923
	idx == 0 ifFalse:[
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
   924
	    self position:(self position - l + idx - 1)
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
   925
	]
1489
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   926
    ].
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   927
    self position:oldPos.
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   928
    ^ nil
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   929
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   930
    "
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   931
     |s|
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   932
     s := ReadStream on:'12345678901234567890'.
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   933
     s skipToAll:'901'.
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   934
     s upToEnd  
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   935
    "
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   936
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   937
    "Modified: 26.6.1996 / 09:28:27 / cg"
9e3b166483fb moved some skip methods from readStream;
Claus Gittinger <cg@exept.de>
parents: 1420
diff changeset
   938
    "Created: 26.6.1996 / 09:35:06 / cg"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   939
44
b262907c93ea *** empty log message ***
claus
parents: 42
diff changeset
   940
! !
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   941
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   942
!PositionableStream methodsFor:'private'!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   943
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   944
contentsSpecies
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   945
    "return a class of which instances will be returned, when
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   946
     parts of the collection are asked for. 
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   947
     (see upTo-kind of methods in subclasses)"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   948
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   949
    ^ collection species
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   950
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   951
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   952
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   953
on:aCollection
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   954
    "setup for streaming on aCollection"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   955
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   956
    collection := aCollection.
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   957
    readLimit := aCollection size.
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   958
    position := "0" 1
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   959
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   960
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   961
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   962
on:aCollection from:first to:last
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   963
    "setup for streaming on aCollection from first to last"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   964
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   965
    collection := aCollection.
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   966
    position := first.
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   967
    readLimit := last
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   968
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   969
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   970
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   971
positionError
1998
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
   972
    "{ Pragma: +optSpace }"
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
   973
2966
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   974
    "report an error when positioning past the end
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   975
     or before the beginning."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   976
4559
7b454e1d1265 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4487
diff changeset
   977
    ^ InvalidPositionErrorSignal raiseRequestWith:nil
4452
3d050f505a0a Raise proceedable signals proceedable.
Stefan Vogel <sv@exept.de>
parents: 4416
diff changeset
   978
3d050f505a0a Raise proceedable signals proceedable.
Stefan Vogel <sv@exept.de>
parents: 4416
diff changeset
   979
    "Modified: / 26.7.1999 / 10:59:13 / stefan"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   980
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   981
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   982
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   983
with:aCollection
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   984
    "setup for streaming to the end of aCollection"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   985
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   986
    collection := aCollection.
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   987
    self setToEnd
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   988
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   989
! !
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   990
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   991
!PositionableStream methodsFor:'queries'!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   992
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   993
isPositionable
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   994
    "return true, if the stream supports positioning (this one is)"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   995
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   996
    ^ true
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
   997
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   998
! !
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   999
3170
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1000
!PositionableStream methodsFor:'reading'!
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1001
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1002
upToAll:aCollection
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1003
    "read until a subcollection consisisting of the elements in aCollection
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1004
     is encountered.
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1005
     Return everything read excluding the elements in aCollection.
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1006
     The position is left before the collection; i.e. the next
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1007
     read operations will return those elements.
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1008
     If no such subcollection is encountered, all elements up to the end 
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1009
     are read and returned.
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1010
     Compare this with #throughAll: which also reads up to some objects
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1011
     but positions behind it and DOES include it in the returned
3184
d99302322139 Ok, #upToAll: positions after the collection.
Stefan Vogel <sv@exept.de>
parents: 3170
diff changeset
  1012
     collection.
d99302322139 Ok, #upToAll: positions after the collection.
Stefan Vogel <sv@exept.de>
parents: 3170
diff changeset
  1013
d99302322139 Ok, #upToAll: positions after the collection.
Stefan Vogel <sv@exept.de>
parents: 3170
diff changeset
  1014
     Note: this behavior is inconsistent with the other upTo.. methods,
d99302322139 Ok, #upToAll: positions after the collection.
Stefan Vogel <sv@exept.de>
parents: 3170
diff changeset
  1015
           which position after the found item. We implement the method
d99302322139 Ok, #upToAll: positions after the collection.
Stefan Vogel <sv@exept.de>
parents: 3170
diff changeset
  1016
           this way for the sake of ST80-compatibility."
3170
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1017
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1018
    |answerStream element last rslt|
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1019
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1020
    last := aCollection last.
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1021
    answerStream := WriteStream on:(self contentsSpecies new).
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1022
    [self atEnd] whileFalse:[
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1023
        element := self next.
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1024
        answerStream nextPut:element.
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1025
        element == last ifTrue:[
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1026
            ((rslt := answerStream contents) endsWith:aCollection) ifTrue:[
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1027
                self position:(self position - aCollection size).
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1028
                ^ rslt copyWithoutLast:aCollection size
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1029
            ]
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1030
        ].
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1031
    ].
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1032
    ^ answerStream contents
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1033
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1034
    "
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1035
     |s|
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1036
     s := ReadStream on:'hello world'.
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1037
     Transcript show:'<'; show:(s upToAll:'wo'); showCR:'>'. 
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1038
     Transcript show:'<'; show:(s upToEnd); showCR:'>'. 
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1039
    "
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1040
    "
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1041
     |s|
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1042
     s := ReadStream on:'hello world'.
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1043
     Transcript show:'<'; show:(s upToAll:'xx'); showCR:'>'. 
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1044
     Transcript showCR:s atEnd.
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1045
     Transcript show:'<'; show:(s upToEnd); showCR:'>'. 
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1046
    "
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1047
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1048
    "Modified: / 12.1.1998 / 22:06:42 / cg"
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1049
    "Created: / 12.1.1998 / 22:07:01 / cg"
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1050
3170
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1051
! !
7b299d83c45a moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3032
diff changeset
  1052
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1053
!PositionableStream methodsFor:'testing'!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1054
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1055
atEnd
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1056
    "return true, if the read-position is at the end"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1057
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1058
    ^ position > readLimit
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1059
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1060
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1061
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1062
isEmpty
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1063
    "return true, if the contents of the stream is empty"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1064
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1065
    ^ readLimit == 0
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1066
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1067
! !
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1068
1897
22d1ce9b62a4 fixes for packageQuery
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
  1069
!PositionableStream class methodsFor:'documentation'!
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1070
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1071
version
5694
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1072
    ^ '$Header: /cvs/stx/stx/libbasic/PositionableStream.st,v 1.94 2000-11-09 10:25:36 cg Exp $'
20ccdf123aab add a cr, if the source does not end in a carriage return.
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  1073
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1074
! !
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1075
PositionableStream initialize!