Unicode16String.st
author Claus Gittinger <cg@exept.de>
Mon, 08 Jun 2015 21:22:21 +0200
changeset 18465 e9e4bb62235f
parent 17537 6ed63b021903
child 18120 e3a375d5f6a8
child 18970 f4c3afd137e3
permissions -rw-r--r--
added isOrdered query
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG 
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
	      All Rights Reserved
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
10223
761e2a050b69 twoByteString moved (req'd in VM)
Claus Gittinger <cg@exept.de>
parents: 9648
diff changeset
    12
"{ Package: 'stx:libbasic' }"
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
17537
6ed63b021903 class: Unicode16String
Claus Gittinger <cg@exept.de>
parents: 17182
diff changeset
    14
"{ NameSpace: Smalltalk }"
6ed63b021903 class: Unicode16String
Claus Gittinger <cg@exept.de>
parents: 17182
diff changeset
    15
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
TwoByteString variableWordSubclass:#Unicode16String
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'Collections-Text'
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!Unicode16String class methodsFor:'documentation'!
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
copyright
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
"
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
 COPYRIGHT (c) 1997 by eXept Software AG 
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
	      All Rights Reserved
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 This software is furnished under a license and may be used
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 only in accordance with the terms of that license and with the
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 be provided or otherwise made available to, or used by, any
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 other person.  No title to or ownership of the software is
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 hereby transferred.
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
!
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
documentation
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
"
10223
761e2a050b69 twoByteString moved (req'd in VM)
Claus Gittinger <cg@exept.de>
parents: 9648
diff changeset
    43
    Represents 16-bit (2-byte) Unicode strings.
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
"
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
! !
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
!Unicode16String class methodsFor:'initialization'!
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
initialize
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
    "initialize the class - private"
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
7949
421a3e216337 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7946
diff changeset
    52
    self flags:(Behavior flagWords).
421a3e216337 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7946
diff changeset
    53
421a3e216337 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7946
diff changeset
    54
    Smalltalk at:#UnicodeString put:Unicode16String.
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
    "
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
     Unicode16String initialize
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
    "
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
    "Created: 30.6.1997 / 15:35:52 / cg"
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
    "Modified: 30.6.1997 / 15:39:21 / cg"
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
! !
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
11323
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    64
!Unicode16String class methodsFor:'reading'!
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    65
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    66
readFrom:aStreamOrString onError:exceptionBlock
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    67
    "read & return the next String from the (character-)stream aStream;
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    68
     skipping all whitespace first; return the value of exceptionBlock,
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    69
     if no string can be read. The sequence of characters as read from the
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    70
     stream must be one as stored via storeOn: or storeString."
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    71
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    72
    "
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    73
     this method is not to be inherited
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    74
     (i.e. not ok for subclasses; Symbol, for example)
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    75
    "
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    76
    self ~~ Unicode16String ifTrue:[
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    77
        ^ super readFrom:aStreamOrString onError:exceptionBlock
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    78
    ].
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    79
    ^ self readSmalltalkStringFrom:aStreamOrString onError:exceptionBlock
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    80
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    81
    "
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    82
        self readFrom:'abcäöü' storeString
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    83
    "
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    84
! !
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    85
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
    86
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
!Unicode16String methodsFor:'conversion'!
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
asSymbolIfInterned
17182
85b70403ae27 class: Unicode16String
Claus Gittinger <cg@exept.de>
parents: 14605
diff changeset
    90
    "If a symbol with the receiver's characters is already known, return it. Otherwise, return nil. 
9232
baa662ecbc01 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8942
diff changeset
    91
     Because ST/X does not support non-8-bit symbols, this method
8942
41d4d78ceb65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8407
diff changeset
    92
     has been redefined to only return a symbol, if the receiver does NOT contain
41d4d78ceb65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8407
diff changeset
    93
     any non-8 bit characters."
41d4d78ceb65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8407
diff changeset
    94
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
    |s|
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
14075
768e6530e9b5 changed: #asSymbolIfInterned
Stefan Vogel <sv@exept.de>
parents: 13989
diff changeset
    97
    [
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
        s := self asSingleByteString.
14075
768e6530e9b5 changed: #asSymbolIfInterned
Stefan Vogel <sv@exept.de>
parents: 13989
diff changeset
    99
    ] on:Error do:[:ex|
768e6530e9b5 changed: #asSymbolIfInterned
Stefan Vogel <sv@exept.de>
parents: 13989
diff changeset
   100
        ^ nil.
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
    ].
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
    ^ s asSymbolIfInterned
14075
768e6530e9b5 changed: #asSymbolIfInterned
Stefan Vogel <sv@exept.de>
parents: 13989
diff changeset
   103
768e6530e9b5 changed: #asSymbolIfInterned
Stefan Vogel <sv@exept.de>
parents: 13989
diff changeset
   104
    "
768e6530e9b5 changed: #asSymbolIfInterned
Stefan Vogel <sv@exept.de>
parents: 13989
diff changeset
   105
     (Unicode16String with:(Character value:16rFFFF)) asSymbolIfInterned
768e6530e9b5 changed: #asSymbolIfInterned
Stefan Vogel <sv@exept.de>
parents: 13989
diff changeset
   106
     'new' asUnicodeString asSymbolIfInterned
768e6530e9b5 changed: #asSymbolIfInterned
Stefan Vogel <sv@exept.de>
parents: 13989
diff changeset
   107
    "
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
!
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
8294
ba5f4421848f Define #asUnicode16String and #asUnicode32String
Stefan Vogel <sv@exept.de>
parents: 8049
diff changeset
   110
asUnicode16String
8942
41d4d78ceb65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8407
diff changeset
   111
    "as the receiver already is a unicode-16 string, return it"
41d4d78ceb65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8407
diff changeset
   112
8294
ba5f4421848f Define #asUnicode16String and #asUnicode32String
Stefan Vogel <sv@exept.de>
parents: 8049
diff changeset
   113
    ^ self
ba5f4421848f Define #asUnicode16String and #asUnicode32String
Stefan Vogel <sv@exept.de>
parents: 8049
diff changeset
   114
!
ba5f4421848f Define #asUnicode16String and #asUnicode32String
Stefan Vogel <sv@exept.de>
parents: 8049
diff changeset
   115
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
asUnicodeString
8942
41d4d78ceb65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8407
diff changeset
   117
    "as the receiver already is a unicode string, return it"
41d4d78ceb65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8407
diff changeset
   118
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
    ^ self
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
! !
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
8049
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 7982
diff changeset
   122
!Unicode16String methodsFor:'printing & storing'!
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 7982
diff changeset
   123
14121
fea92d19d1a4 added: #displayOn: (instead of #displaySting)
Stefan Vogel <sv@exept.de>
parents: 14075
diff changeset
   124
displayOn:aGCOrStream
fea92d19d1a4 added: #displayOn: (instead of #displaySting)
Stefan Vogel <sv@exept.de>
parents: 14075
diff changeset
   125
    "display myself as on aStream.
fea92d19d1a4 added: #displayOn: (instead of #displaySting)
Stefan Vogel <sv@exept.de>
parents: 14075
diff changeset
   126
     You must use an ISO10646 unicode font to display this string"
fea92d19d1a4 added: #displayOn: (instead of #displaySting)
Stefan Vogel <sv@exept.de>
parents: 14075
diff changeset
   127
17537
6ed63b021903 class: Unicode16String
Claus Gittinger <cg@exept.de>
parents: 17182
diff changeset
   128
    "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
6ed63b021903 class: Unicode16String
Claus Gittinger <cg@exept.de>
parents: 17182
diff changeset
   129
    "/ ST/X (and some old ST80's) mean: draw-yourself on a GC.
14558
b168e9f03911 class: Unicode16String
Stefan Vogel <sv@exept.de>
parents: 14124
diff changeset
   130
    aGCOrStream isStream ifTrue:[
14121
fea92d19d1a4 added: #displayOn: (instead of #displaySting)
Stefan Vogel <sv@exept.de>
parents: 14075
diff changeset
   131
        aGCOrStream
fea92d19d1a4 added: #displayOn: (instead of #displaySting)
Stefan Vogel <sv@exept.de>
parents: 14075
diff changeset
   132
            nextPut:$';
fea92d19d1a4 added: #displayOn: (instead of #displaySting)
Stefan Vogel <sv@exept.de>
parents: 14075
diff changeset
   133
            nextPutAllUnicode:self;
fea92d19d1a4 added: #displayOn: (instead of #displaySting)
Stefan Vogel <sv@exept.de>
parents: 14075
diff changeset
   134
            nextPut:$'.
fea92d19d1a4 added: #displayOn: (instead of #displaySting)
Stefan Vogel <sv@exept.de>
parents: 14075
diff changeset
   135
        ^ self
fea92d19d1a4 added: #displayOn: (instead of #displaySting)
Stefan Vogel <sv@exept.de>
parents: 14075
diff changeset
   136
    ].
fea92d19d1a4 added: #displayOn: (instead of #displaySting)
Stefan Vogel <sv@exept.de>
parents: 14075
diff changeset
   137
    ^ super displayOn:aGCOrStream
fea92d19d1a4 added: #displayOn: (instead of #displaySting)
Stefan Vogel <sv@exept.de>
parents: 14075
diff changeset
   138
!
fea92d19d1a4 added: #displayOn: (instead of #displaySting)
Stefan Vogel <sv@exept.de>
parents: 14075
diff changeset
   139
11323
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
   140
printOn:aStream
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
   141
    "print the receiver on aStream. 
13986
c8b952d6139c comment/format in: #printOn:
Claus Gittinger <cg@exept.de>
parents: 13737
diff changeset
   142
     Let aStream decide how to represent this, whether utf8, ucs16, ..."
11323
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
   143
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
   144
    aStream nextPutAllUnicode:self
13986
c8b952d6139c comment/format in: #printOn:
Claus Gittinger <cg@exept.de>
parents: 13737
diff changeset
   145
c8b952d6139c comment/format in: #printOn:
Claus Gittinger <cg@exept.de>
parents: 13737
diff changeset
   146
    "Modified (comment): / 25-01-2012 / 10:28:34 / cg"
11323
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
   147
!
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
   148
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
   149
storeOn:aStream
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
   150
    "put the storeString of myself on aStream"
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
   151
14605
90d502689de9 class: Unicode16String
Stefan Vogel <sv@exept.de>
parents: 14558
diff changeset
   152
    self utf8Encoded storeOn:aStream.
13737
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   153
    aStream nextPutAll:' utf8Decoded'.
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   154
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   155
"/    aStream nextPut:$'.
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   156
"/    (self includes:$') ifTrue:[
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   157
"/        self do:[:thisChar |
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   158
"/            (thisChar == $') ifTrue:[aStream nextPut:thisChar].
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   159
"/            aStream nextPutUnicode:thisChar
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   160
"/        ]
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   161
"/    ] ifFalse:[
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   162
"/        aStream nextPutAllUnicode:self
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   163
"/    ].
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   164
"/    aStream nextPut:$'
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   165
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   166
    "Modified: / 28-09-2011 / 16:17:38 / cg"
11323
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
   167
!
c9ebe199a8fc Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11293
diff changeset
   168
8049
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 7982
diff changeset
   169
storeString
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 7982
diff changeset
   170
    "return a String for storing myself"
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 7982
diff changeset
   171
13737
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   172
"/    ^ self basicStoreString.
13989
cd15b3b6154a backward compatibility storestring
Claus Gittinger <cg@exept.de>
parents: 13988
diff changeset
   173
"/    ^ (self withCEscapes storeString),' withoutCEscapes'.
cd15b3b6154a backward compatibility storestring
Claus Gittinger <cg@exept.de>
parents: 13988
diff changeset
   174
    ^ (self utf8Encoded storeString),' utf8Decoded'.
13737
0873cbb1365d unicode storestring fixed
Claus Gittinger <cg@exept.de>
parents: 11323
diff changeset
   175
13989
cd15b3b6154a backward compatibility storestring
Claus Gittinger <cg@exept.de>
parents: 13988
diff changeset
   176
    "Modified: / 25-01-2012 / 11:59:34 / cg"
14124
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   177
!
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   178
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   179
unicodeStoreOn:aStream
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   180
    "put the storeString of myself on aStream"
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   181
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   182
    aStream nextPut:$'.
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   183
    (self includes:$') ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   184
        self do:[:thisChar |
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   185
            (thisChar == $') ifTrue:[aStream nextPut:thisChar].
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   186
            aStream nextPutUnicode:thisChar
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   187
        ]
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   188
    ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   189
        aStream nextPutAllUnicode:self
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   190
    ].
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   191
    aStream nextPut:$'
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   192
!
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   193
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   194
unicodeStoreString
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   195
    "return a UnicodeString for storing myself.
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   196
     This method is a kind of kludge.
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   197
     Use it when you want to write a storeString to an encoded Stream"
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   198
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   199
    ^ self basicStoreString.
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   200
! !
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   201
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   202
!Unicode16String methodsFor:'testing'!
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   203
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   204
isUnicode16String
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   205
    ^ true
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   206
!
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   207
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   208
isUnicodeString
Stefan Vogel <sv@exept.de>
parents: 14121
diff changeset
   209
    ^ true
8049
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 7982
diff changeset
   210
! !
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 7982
diff changeset
   211
17537
6ed63b021903 class: Unicode16String
Claus Gittinger <cg@exept.de>
parents: 17182
diff changeset
   212
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   213
!Unicode16String class methodsFor:'documentation'!
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   214
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   215
version
17537
6ed63b021903 class: Unicode16String
Claus Gittinger <cg@exept.de>
parents: 17182
diff changeset
   216
    ^ '$Header: /cvs/stx/stx/libbasic/Unicode16String.st,v 1.23 2015-02-20 23:59:30 cg Exp $'
13988
81154d310967 use new c-escape string for stroreString
Claus Gittinger <cg@exept.de>
parents: 13986
diff changeset
   217
!
81154d310967 use new c-escape string for stroreString
Claus Gittinger <cg@exept.de>
parents: 13986
diff changeset
   218
81154d310967 use new c-escape string for stroreString
Claus Gittinger <cg@exept.de>
parents: 13986
diff changeset
   219
version_CVS
17537
6ed63b021903 class: Unicode16String
Claus Gittinger <cg@exept.de>
parents: 17182
diff changeset
   220
    ^ '$Header: /cvs/stx/stx/libbasic/Unicode16String.st,v 1.23 2015-02-20 23:59:30 cg Exp $'
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   221
! !
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   222
14605
90d502689de9 class: Unicode16String
Stefan Vogel <sv@exept.de>
parents: 14558
diff changeset
   223
7946
469d2d1c61f1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   224
Unicode16String initialize!