ByteArray.st
author Merge Script
Wed, 20 Jan 2016 06:42:00 +0100
branchjv
changeset 19054 80cbbad08d0c
parent 18971 13360506ef81
parent 19048 0929f428048d
child 19137 199b5e15b1da
permissions -rw-r--r--
Merge
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
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
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
"
5425
9a2bb3d1cc82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5355
diff changeset
    12
"{ Package: 'stx:libbasic' }"
9a2bb3d1cc82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5355
diff changeset
    13
17377
e4fdf84bd41a class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 16852
diff changeset
    14
"{ NameSpace: Smalltalk }"
e4fdf84bd41a class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 16852
diff changeset
    15
3208
2d71538b9fd5 now subclass of UIBytes - which contains common protocol
Claus Gittinger <cg@exept.de>
parents: 3205
diff changeset
    16
UninterpretedBytes variableByteSubclass:#ByteArray
1002
c44e50c09986 care for 16bit subclass instances (in tuned methods)
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
    17
	instanceVariableNames:''
c44e50c09986 care for 16bit subclass instances (in tuned methods)
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
    18
	classVariableNames:''
c44e50c09986 care for 16bit subclass instances (in tuned methods)
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
    19
	poolDictionaries:''
c44e50c09986 care for 16bit subclass instances (in tuned methods)
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
    20
	category:'Collections-Arrayed'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    21
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    22
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
    23
!ByteArray class methodsFor:'documentation'!
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    24
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    25
copyright
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    26
"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    27
 COPYRIGHT (c) 1989 by Claus Gittinger
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    28
	      All Rights Reserved
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    29
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    30
 This software is furnished under a license and may be used
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    31
 only in accordance with the terms of that license and with the
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    33
 be provided or otherwise made available to, or used by, any
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    34
 other person.  No title to or ownership of the software is
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    35
 hereby transferred.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    36
"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    37
!
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    38
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    39
documentation
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    40
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    41
    ByteArrays store integers in the range 0..255.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    42
    In contrast to normal arrays (which store pointers to their elements),
362
claus
parents: 359
diff changeset
    43
    byteArrays store the values in a dense & compact way. ByteArrays can
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    44
    be used to hold the data for bitmaps, images and other bulk data.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    45
    ByteArrays are also used to store the bytecode-instructions of an
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    46
    interpreted method and are used as superclass for Strings.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    47
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    48
    ByteArrays can be used as literals i.e. you can enter ByteArray-constants
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    49
    as #[ element1 element2 .... elementN] and also use byteArray constants
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    50
    as elements in a constant array.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    51
    As in: #( #[1 1 1] #[2 2 2] #[3 3 3])
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    52
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    53
    If you have to communicate structure-data (in the C-sense) with external
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    54
    programs/data-bases, see a companion class (Structure) in the goodies directory.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    55
    It allows the definition of subclasses of ByteArray, which transparently fetch
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    56
    and store C-structure fields.
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
    57
4062
4959de96b06f documentation
Claus Gittinger <cg@exept.de>
parents: 4050
diff changeset
    58
    [memory requirements:]
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
    59
	OBJ-HEADER + size
4062
4959de96b06f documentation
Claus Gittinger <cg@exept.de>
parents: 4050
diff changeset
    60
2145
d243ffafeae3 more docu
Claus Gittinger <cg@exept.de>
parents: 1974
diff changeset
    61
    [warning:]
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
    62
	read the warning about 'growing fixed size collection'
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
    63
	in ArrayedCollection's documentation
2145
d243ffafeae3 more docu
Claus Gittinger <cg@exept.de>
parents: 1974
diff changeset
    64
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
    65
    [author:]
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
    66
	Claus Gittinger
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
    67
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
    68
    [See also:]
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
    69
	Array CharacterArray String
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    70
"
2
claus
parents: 1
diff changeset
    71
! !
claus
parents: 1
diff changeset
    72
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
    73
!ByteArray class methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    74
a27a279701f8 Initial revision
claus
parents:
diff changeset
    75
uninitializedNew:anInteger
a27a279701f8 Initial revision
claus
parents:
diff changeset
    76
    "return a new instance of the receiver with uninitialized
a27a279701f8 Initial revision
claus
parents:
diff changeset
    77
     (i.e. undefined) contents. The indexed elements have any random
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    78
     value. However, any named instance variables are still nilled.
75
2c61e28412de *** empty log message ***
claus
parents: 68
diff changeset
    79
     For use, when contents will be set anyway shortly after - this
2c61e28412de *** empty log message ***
claus
parents: 68
diff changeset
    80
     is a bit faster than the regular basicNew:, which clears the bytes.
2c61e28412de *** empty log message ***
claus
parents: 68
diff changeset
    81
     Of course, it only makes a difference for very big ByteArrays, such
2c61e28412de *** empty log message ***
claus
parents: 68
diff changeset
    82
     as used for images/bitmaps.
2c61e28412de *** empty log message ***
claus
parents: 68
diff changeset
    83
2c61e28412de *** empty log message ***
claus
parents: 68
diff changeset
    84
     Notice: if you want to port code using uninitializedNew: to another
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    85
     smalltalk, you have to add an 'uninitializedNew: -> basicNew:'-calling
75
2c61e28412de *** empty log message ***
claus
parents: 68
diff changeset
    86
     method to the ByteArray class of the other smalltalk."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    87
a27a279701f8 Initial revision
claus
parents:
diff changeset
    88
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
    89
    OBJ newobj;
a27a279701f8 Initial revision
claus
parents:
diff changeset
    90
    INT instsize, nInstVars, nindexedinstvars;
a27a279701f8 Initial revision
claus
parents:
diff changeset
    91
    REGISTER OBJ *op;
a27a279701f8 Initial revision
claus
parents:
diff changeset
    92
249
claus
parents: 221
diff changeset
    93
    if (__isSmallInteger(anInteger)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    94
	nindexedinstvars = __intVal(anInteger);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    95
	if (nindexedinstvars >= 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    96
	    if (self == ByteArray) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    97
		/*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    98
		 * the most common case
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    99
		 */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   100
		instsize = OHDR_SIZE + nindexedinstvars;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   101
		if (__CanDoQuickNew(instsize)) {        /* OBJECT ALLOCATION */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   102
		    __qCheckedNew(newobj, instsize);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   103
		    __InstPtr(newobj)->o_class = self;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   104
		    __qSTORE(newobj, self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   105
		    RETURN (newobj );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   106
		}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   107
	    } else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   108
		/*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   109
		 * Take care for subclasses like TwoByteString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   110
		 */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   111
		switch (__smallIntegerVal(__ClassInstPtr(self)->c_flags) & ARRAYMASK) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   112
		case BYTEARRAY:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   113
		    break;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   114
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   115
		case WORDARRAY:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   116
		case SWORDARRAY:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   117
		    nindexedinstvars *= 2;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   118
		    break;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   119
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   120
		case LONGARRAY:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   121
		case SLONGARRAY:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   122
		    nindexedinstvars *= 4;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   123
		    break;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   124
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   125
		default:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   126
		    /* don't know about this array type, delegate to super */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   127
		    goto out;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   128
		}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   129
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   130
	    nInstVars = __intVal(__ClassInstPtr(self)->c_ninstvars);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   131
	    instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars) + nindexedinstvars;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   132
	    __PROTECT_CONTEXT__
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   133
	    __qNew(newobj, instsize);   /* OBJECT ALLOCATION */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   134
	    __UNPROTECT_CONTEXT__
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   135
	    if (newobj != nil) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   136
		__InstPtr(newobj)->o_class = self;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   137
		__qSTORE(newobj, self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   138
		if (nInstVars) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   139
		    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   140
		     * still have to nil out named instvars ...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   141
		     */
788
e80f1c42b87b dont use memset4 if its undefined
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   142
#if defined(memset4) && defined(FAST_OBJECT_MEMSET4)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   143
		    memset4(__InstPtr(newobj)->i_instvars, nil, nInstVars);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   144
#else
249
claus
parents: 221
diff changeset
   145
# if defined(FAST_MEMSET) && !defined(NEGATIVE_ADDRESSES)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   146
		    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   147
		     * knowing that nil is 0
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   148
		     */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   149
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
249
claus
parents: 221
diff changeset
   150
# else
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   151
		    op = __InstPtr(newobj)->i_instvars;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   152
		    while (nInstVars--)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   153
			*op++ = nil;
249
claus
parents: 221
diff changeset
   154
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   155
#endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   156
		}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   157
		RETURN ( newobj );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   158
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   159
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   160
    }
8159
ac6725a62e17 #uninitializedNew: - take care of WORDARRAYS etc.
Stefan Vogel <sv@exept.de>
parents: 8096
diff changeset
   161
out:;
5425
9a2bb3d1cc82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5355
diff changeset
   162
%}.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   163
    ^ self basicNew:anInteger
a27a279701f8 Initial revision
claus
parents:
diff changeset
   164
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   165
11502
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   166
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
   167
!ByteArray class methodsFor:'queries'!
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   168
13706
62f6489aa2c6 faster elementByteSize query
Claus Gittinger <cg@exept.de>
parents: 13703
diff changeset
   169
elementByteSize
16851
e7212682103b comment/format in: #elementByteSize
Claus Gittinger <cg@exept.de>
parents: 16807
diff changeset
   170
    "for bit-like containers, return the number of bytes stored per element.
e7212682103b comment/format in: #elementByteSize
Claus Gittinger <cg@exept.de>
parents: 16807
diff changeset
   171
     Here, 1 is returned"
e7212682103b comment/format in: #elementByteSize
Claus Gittinger <cg@exept.de>
parents: 16807
diff changeset
   172
13706
62f6489aa2c6 faster elementByteSize query
Claus Gittinger <cg@exept.de>
parents: 13703
diff changeset
   173
    ^ 1
62f6489aa2c6 faster elementByteSize query
Claus Gittinger <cg@exept.de>
parents: 13703
diff changeset
   174
62f6489aa2c6 faster elementByteSize query
Claus Gittinger <cg@exept.de>
parents: 13703
diff changeset
   175
    "Created: / 15-09-2011 / 14:12:53 / cg"
62f6489aa2c6 faster elementByteSize query
Claus Gittinger <cg@exept.de>
parents: 13703
diff changeset
   176
!
62f6489aa2c6 faster elementByteSize query
Claus Gittinger <cg@exept.de>
parents: 13703
diff changeset
   177
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   178
isBuiltInClass
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
   179
    "return true if this class is known by the run-time-system.
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
   180
     Here, true is returned for myself, false for subclasses."
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   181
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   182
    ^ self == ByteArray
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
   183
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
   184
    "Modified: 23.4.1996 / 15:56:25 / cg"
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   185
! !
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   186
10884
36e93aa5e790 +copyfromByteArray:
Claus Gittinger <cg@exept.de>
parents: 10821
diff changeset
   187
!ByteArray methodsFor:'Compatibility-Squeak'!
36e93aa5e790 +copyfromByteArray:
Claus Gittinger <cg@exept.de>
parents: 10821
diff changeset
   188
12144
cc0d6bd13d68 added: #bitXor:
Claus Gittinger <cg@exept.de>
parents: 12091
diff changeset
   189
bitXor:aByteArray
cc0d6bd13d68 added: #bitXor:
Claus Gittinger <cg@exept.de>
parents: 12091
diff changeset
   190
    "return a new byteArray containing the bitWise-xor of the receiver's and the
cc0d6bd13d68 added: #bitXor:
Claus Gittinger <cg@exept.de>
parents: 12091
diff changeset
   191
     argument's bytes"
cc0d6bd13d68 added: #bitXor:
Claus Gittinger <cg@exept.de>
parents: 12091
diff changeset
   192
15625
090e438cffe5 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 15330
diff changeset
   193
    |size size1|
090e438cffe5 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 15330
diff changeset
   194
090e438cffe5 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 15330
diff changeset
   195
    "size := self size min:aByteArray size"
090e438cffe5 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 15330
diff changeset
   196
    size := self size.
090e438cffe5 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 15330
diff changeset
   197
    size1 := aByteArray size.
090e438cffe5 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 15330
diff changeset
   198
    size1 < size ifTrue:[
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
   199
	size := size1.
12144
cc0d6bd13d68 added: #bitXor:
Claus Gittinger <cg@exept.de>
parents: 12091
diff changeset
   200
    ].
15625
090e438cffe5 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 15330
diff changeset
   201
090e438cffe5 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 15330
diff changeset
   202
    ^ self copy
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
   203
	bitXorBytesFrom:1 to:size with:aByteArray startingAt:1;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
   204
	yourself.
15625
090e438cffe5 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 15330
diff changeset
   205
090e438cffe5 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 15330
diff changeset
   206
    "
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
   207
	#[0 1 2 3 4] bitXor:#[0 1 2 3 4]
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
   208
	#[0 1 2 3 4] bitXor:#[0 1 2 3]
15625
090e438cffe5 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 15330
diff changeset
   209
    "
10884
36e93aa5e790 +copyfromByteArray:
Claus Gittinger <cg@exept.de>
parents: 10821
diff changeset
   210
! !
36e93aa5e790 +copyfromByteArray:
Claus Gittinger <cg@exept.de>
parents: 10821
diff changeset
   211
12091
c9906aca7a7a added: #asByteString
Claus Gittinger <cg@exept.de>
parents: 11860
diff changeset
   212
!ByteArray methodsFor:'Compatibility-VW'!
c9906aca7a7a added: #asByteString
Claus Gittinger <cg@exept.de>
parents: 11860
diff changeset
   213
c9906aca7a7a added: #asByteString
Claus Gittinger <cg@exept.de>
parents: 11860
diff changeset
   214
asByteString
c9906aca7a7a added: #asByteString
Claus Gittinger <cg@exept.de>
parents: 11860
diff changeset
   215
    ^ self asString
c9906aca7a7a added: #asByteString
Claus Gittinger <cg@exept.de>
parents: 11860
diff changeset
   216
! !
c9906aca7a7a added: #asByteString
Claus Gittinger <cg@exept.de>
parents: 11860
diff changeset
   217
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   218
!ByteArray methodsFor:'accessing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   219
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   220
basicAt:index
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   221
    "return the indexed instance variable with index, anInteger
1019
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   222
     - redefined here to be slighly faster than the default in Object.
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   223
     Q: is it worth the extra code ?"
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   224
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   225
%{  /* NOCONTEXT */
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   226
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   227
    REGISTER int indx;
1147
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   228
    REGISTER OBJ slf;
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   229
    REGISTER OBJ cls;
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   230
    REGISTER int nIndex;
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   231
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   232
    if (__isSmallInteger(index)) {
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   233
	indx = __intVal(index) - 1;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   234
	slf = self;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   235
	if ((cls = __qClass(slf)) != @global(ByteArray)) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   236
	    if (((INT)__ClassInstPtr(cls)->c_flags & __MASKSMALLINT(ARRAYMASK))
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   237
		!= __MASKSMALLINT(BYTEARRAY)) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   238
		goto fail;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   239
	    }
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   240
	    if (indx < 0) goto fail;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   241
	    indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   242
	}
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   243
	nIndex = __byteArraySize(slf);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   244
	if ((unsigned)indx < (unsigned)nIndex) {
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
   245
	    RETURN ( __mkSmallInteger((__ByteArrayInstPtr(slf)->ba_element[indx])) );
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   246
	}
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   247
    }
1019
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   248
  fail: ;
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   249
%}.
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   250
    ^ super basicAt:index
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   251
!
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   252
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   253
basicAt:index put:value
1230
c349c4e9e594 commentary
Claus Gittinger <cg@exept.de>
parents: 1213
diff changeset
   254
    "set the indexed instance variable with index, anInteger to value.
c349c4e9e594 commentary
Claus Gittinger <cg@exept.de>
parents: 1213
diff changeset
   255
     Returns value (sigh).
1019
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   256
     - redefined here to be slighly faster than the default in Object.
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   257
     Q: is it worth the extra code ?"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   258
a27a279701f8 Initial revision
claus
parents:
diff changeset
   259
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   260
a27a279701f8 Initial revision
claus
parents:
diff changeset
   261
    REGISTER int indx;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   262
    int nIndex;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   263
    int val;
1147
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   264
    REGISTER OBJ slf;
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   265
    REGISTER OBJ cls;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   266
249
claus
parents: 221
diff changeset
   267
    if (__bothSmallInteger(index, value)) {
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   268
	val = __intVal(value);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   269
	if ((unsigned)(val) <= 0xFF /* i.e. (val >= 0) && (val <= 255) */) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   270
	    indx = __intVal(index) - 1;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   271
	    slf = self;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   272
	    if ((cls = __qClass(slf)) != @global(ByteArray)) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   273
		if (((INT)__ClassInstPtr(cls)->c_flags & __MASKSMALLINT(ARRAYMASK))
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   274
		    != __MASKSMALLINT(BYTEARRAY)) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   275
		    goto fail;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   276
		}
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   277
		if (indx < 0) goto fail;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   278
		indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   279
	    }
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   280
	    nIndex = __byteArraySize(slf);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   281
	    if ((unsigned)indx < (unsigned)nIndex) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   282
		__ByteArrayInstPtr(slf)->ba_element[indx] = val;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   283
		RETURN ( value );
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   284
	    }
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   285
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   286
    }
1019
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   287
  fail: ;
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   288
%}.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   289
    ^ super basicAt:index put:value
1230
c349c4e9e594 commentary
Claus Gittinger <cg@exept.de>
parents: 1213
diff changeset
   290
c349c4e9e594 commentary
Claus Gittinger <cg@exept.de>
parents: 1213
diff changeset
   291
    "Modified: 19.4.1996 / 11:14:40 / cg"
2
claus
parents: 1
diff changeset
   292
!
claus
parents: 1
diff changeset
   293
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   294
bitAt:index
11502
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   295
    "return the bit at index (1 based index) as 0 or 1"
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   296
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   297
    |byteIndex bitIndex0 byte|
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   298
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   299
%{  /* NOCONTEXT */
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   300
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   301
    REGISTER int indx;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   302
    REGISTER int byte;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   303
    int nIndex;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   304
    REGISTER OBJ slf;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   305
    REGISTER OBJ cls;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   306
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   307
    if (__isSmallInteger(index)) {
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   308
	indx = __intVal(index) - 1;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   309
	slf = self;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   310
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   311
	byte = indx / 8;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   312
	indx = indx % 8;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   313
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   314
	if ((cls = __qClass(slf)) != @global(ByteArray)) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   315
	    if (indx < 0) goto badIndex;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   316
	    byte += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   317
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   318
	nIndex = __byteArraySize(slf);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   319
	if ((unsigned)byte < (unsigned)nIndex) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   320
	    RETURN ( __mkSmallInteger(((__ByteArrayInstPtr(slf)->ba_element[byte] & (1 << indx)) != 0)) );
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   321
	}
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   322
    }
4386
ecc88f1c1169 oops - subclasses with instVars allowed for index-less-than-1-access
Claus Gittinger <cg@exept.de>
parents: 4367
diff changeset
   323
badIndex: ;
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   324
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   325
    byteIndex := ((index-1) // 8) + 1.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   326
    bitIndex0 := ((index-1) \\ 8).
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   327
    byte := self at:byteIndex.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   328
    ^  byte bitTest:(1 bitShift:bitIndex0).
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   329
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   330
   "
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   331
     #[ 1 1 1 1 ] bitAt:9
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   332
     #[ 1 1 1 1 ] bitAt:11
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   333
     #[ 2 2 2 2 ] bitAt:10
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   334
   "
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   335
!
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   336
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   337
bitClearAt:index
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   338
    "clear the bit at index (index starts with 1)"
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   339
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   340
    |byteIndex bitIndex0 byte|
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   341
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   342
%{  /* NOCONTEXT */
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   343
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   344
    REGISTER int indx;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   345
    REGISTER int byte;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   346
    int nIndex;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   347
    REGISTER OBJ slf;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   348
    REGISTER OBJ cls;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   349
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   350
    if (0 /* __isSmallInteger(index) */) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   351
	indx = __intVal(index) - 1;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   352
	slf = self;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   353
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   354
	byte = indx / 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   355
	indx = indx % 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   356
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   357
	if ((cls = __qClass(slf)) != @global(ByteArray)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   358
	    if (indx < 0) goto badIndex;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   359
	    byte += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   360
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   361
	nIndex = __byteArraySize(slf);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   362
	if ((unsigned)byte < (unsigned)nIndex) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   363
	    __ByteArrayInstPtr(slf)->ba_element[byte] &= ~(1 << indx);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   364
	    RETURN (slf);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   365
	}
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   366
    }
4386
ecc88f1c1169 oops - subclasses with instVars allowed for index-less-than-1-access
Claus Gittinger <cg@exept.de>
parents: 4367
diff changeset
   367
badIndex: ;
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   368
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   369
    byteIndex := ((index-1) // 8) + 1.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   370
    bitIndex0 := ((index-1) \\ 8).
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   371
    byte := self at:byteIndex.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   372
    byte := byte bitClear:(1 bitShift:bitIndex0).
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   373
    self at:byteIndex put:byte.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   374
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   375
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   376
     #[0 0 0 0] copy bitClearAt:1
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   377
     #[0 0 0 0] copy bitClearAt:7
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   378
     #[0 0 0 0] copy bitClearAt:8
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   379
     #[0 0 0 0] copy bitClearAt:9
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   380
    "
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   381
   "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   382
     #[ 0 0 0 0 ] bitSetAt:1
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   383
     #[ 0 0 0 0 ] bitSetAt:4
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   384
     #[ 0 0 0 0 ] bitSetAt:8
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   385
     #[ 0 0 0 0 ] bitSetAt:9
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   386
     #[ 0 0 0 0 ] bitSetAt:10
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   387
     #[ 0 0 0 0 ] bitSetAt:11
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   388
   "
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   389
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   390
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   391
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   392
!
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   393
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   394
bitSetAt:index
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   395
    "set the bit at index (index starts with 1)"
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   396
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   397
    |byteIndex bitIndex0 byte|
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   398
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   399
%{  /* NOCONTEXT */
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   400
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   401
    REGISTER int indx;
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   402
    REGISTER int byte;
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   403
    int nIndex;
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   404
    REGISTER OBJ slf;
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   405
    REGISTER OBJ cls;
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   406
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   407
    if (0 /* __isSmallInteger(index) */) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   408
	indx = __intVal(index) - 1;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   409
	slf = self;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   410
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   411
	byte = indx / 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   412
	indx = indx % 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   413
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   414
	if ((cls = __qClass(slf)) != @global(ByteArray)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   415
	    if (indx < 0) goto badIndex;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   416
	    byte += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   417
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   418
	nIndex = __byteArraySize(slf);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   419
	if ((unsigned)byte < (unsigned)nIndex) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   420
	    __ByteArrayInstPtr(slf)->ba_element[byte] |= (1 << indx);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   421
	    RETURN (slf);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   422
	}
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   423
    }
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   424
badIndex: ;
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   425
%}.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   426
    byteIndex := ((index-1) // 8) + 1.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   427
    bitIndex0 := ((index-1) \\ 8).
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   428
    byte := self at:byteIndex.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   429
    byte := byte bitOr:(1 bitShift:bitIndex0).
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   430
    self at:byteIndex put:byte.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   431
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   432
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   433
     #[0 0 0 0] copy bitSetAt:1
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   434
     #[0 0 0 0] copy bitSetAt:7
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   435
     #[0 0 0 0] copy bitSetAt:8
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   436
     #[0 0 0 0] copy bitSetAt:9
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   437
    "
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   438
   "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   439
     #[ 0 0 0 0 ] bitSetAt:1
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   440
     #[ 0 0 0 0 ] bitSetAt:4
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   441
     #[ 0 0 0 0 ] bitSetAt:8
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   442
     #[ 0 0 0 0 ] bitSetAt:9
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   443
     #[ 0 0 0 0 ] bitSetAt:10
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   444
     #[ 0 0 0 0 ] bitSetAt:11
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   445
   "
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   446
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   447
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   448
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   449
! !
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   450
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   451
!ByteArray methodsFor:'accessing-bytes'!
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   452
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   453
byteAt:index
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   454
    "return the byte at index.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   455
     For ByteArray, this is the same as basicAt:;
249
claus
parents: 221
diff changeset
   456
     however, for strings or symbols, this returns a numeric byteValue
claus
parents: 221
diff changeset
   457
     instead of a character."
claus
parents: 221
diff changeset
   458
claus
parents: 221
diff changeset
   459
%{  /* NOCONTEXT */
claus
parents: 221
diff changeset
   460
claus
parents: 221
diff changeset
   461
    REGISTER int indx;
claus
parents: 221
diff changeset
   462
    int nIndex;
1147
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   463
    REGISTER OBJ slf;
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   464
    REGISTER OBJ cls;
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   465
249
claus
parents: 221
diff changeset
   466
    if (__isSmallInteger(index)) {
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   467
	indx = __intVal(index) - 1;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   468
	slf = self;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   469
	if ((cls = __qClass(slf)) != @global(ByteArray)) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   470
	    if (indx < 0) goto badIndex;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   471
	    indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   472
	}
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   473
	nIndex = __byteArraySize(slf);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   474
	if ((unsigned)indx < (unsigned)nIndex) {
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
   475
	    RETURN ( __mkSmallInteger((__ByteArrayInstPtr(slf)->ba_element[indx])) );
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   476
	}
249
claus
parents: 221
diff changeset
   477
    }
4386
ecc88f1c1169 oops - subclasses with instVars allowed for index-less-than-1-access
Claus Gittinger <cg@exept.de>
parents: 4367
diff changeset
   478
badIndex: ;
1147
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   479
%}.
249
claus
parents: 221
diff changeset
   480
    ^ (super basicAt:index) asInteger
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   481
!
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   482
249
claus
parents: 221
diff changeset
   483
byteAt:index put:value
claus
parents: 221
diff changeset
   484
    "set the byte at index. For ByteArray, this is the same as basicAt:put:.
claus
parents: 221
diff changeset
   485
     However, for Strings, this expects a byteValue to be stored."
claus
parents: 221
diff changeset
   486
claus
parents: 221
diff changeset
   487
%{  /* NOCONTEXT */
claus
parents: 221
diff changeset
   488
claus
parents: 221
diff changeset
   489
    REGISTER int indx;
claus
parents: 221
diff changeset
   490
    int nIndex;
claus
parents: 221
diff changeset
   491
    int val;
1147
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   492
    REGISTER OBJ slf;
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   493
    REGISTER OBJ cls;
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   494
249
claus
parents: 221
diff changeset
   495
    if (__bothSmallInteger(index, value)) {
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   496
	val = __intVal(value);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   497
	if ((unsigned)(val) <= 0xFF /* i.e. (val >= 0) && (val <= 255) */) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   498
	    indx = __intVal(index) - 1;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   499
	    slf = self;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   500
	    if ((cls = __qClass(slf)) != ByteArray) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   501
		if (indx < 0) goto badIndex;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   502
		indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   503
	    }
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   504
	    nIndex = __byteArraySize(slf);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   505
	    if ((unsigned)indx < (unsigned)nIndex) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   506
		__ByteArrayInstPtr(slf)->ba_element[indx] = val;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   507
		RETURN ( value );
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   508
	    }
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   509
	}
249
claus
parents: 221
diff changeset
   510
    }
4386
ecc88f1c1169 oops - subclasses with instVars allowed for index-less-than-1-access
Claus Gittinger <cg@exept.de>
parents: 4367
diff changeset
   511
badIndex: ;
1147
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   512
%}.
249
claus
parents: 221
diff changeset
   513
    ^ super basicAt:index put:value
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   514
! !
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   515
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   516
!ByteArray methodsFor:'accessing-longs'!
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   517
2
claus
parents: 1
diff changeset
   518
doubleWordAt:index put:value
claus
parents: 1
diff changeset
   519
    "set the 4-bytes starting at index from the (unsigned) Integer value.
359
claus
parents: 343
diff changeset
   520
     The value should be in the range 0 to 16rFFFFFFFF
claus
parents: 343
diff changeset
   521
     (for negative values, the stored value is not defined).
claus
parents: 343
diff changeset
   522
     The value is stored in the machines natural byte order.
claus
parents: 343
diff changeset
   523
     Q: should it store signed values ? (see ByteArray signedDoubleWordAt:put:)"
claus
parents: 343
diff changeset
   524
claus
parents: 343
diff changeset
   525
    |t|
claus
parents: 343
diff changeset
   526
claus
parents: 343
diff changeset
   527
%{  /* NOCONTEXT */
claus
parents: 343
diff changeset
   528
claus
parents: 343
diff changeset
   529
    REGISTER int indx;
claus
parents: 343
diff changeset
   530
    int nIndex;
claus
parents: 343
diff changeset
   531
    union {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   532
	unsigned char u_char[4];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   533
	unsigned int u_uint;
359
claus
parents: 343
diff changeset
   534
    } val;
claus
parents: 343
diff changeset
   535
    OBJ cls;
2950
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   536
    unsigned char *byteP;
359
claus
parents: 343
diff changeset
   537
claus
parents: 343
diff changeset
   538
    if (__isSmallInteger(index)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   539
	if (__isSmallInteger(value)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   540
	    val.u_uint = __intVal(value);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   541
	} else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   542
	    val.u_uint = __longIntVal(value);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   543
	    if (val.u_uint == 0) goto error;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   544
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   545
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   546
	indx = __intVal(index);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   547
	if (indx > 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   548
	    if ((cls = __qClass(self)) != @global(ByteArray))
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   549
		indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   550
	    nIndex = __qSize(self) - OHDR_SIZE;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   551
	    if ((indx+3) <= nIndex) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   552
		byteP = (unsigned char *)(__ByteArrayInstPtr(self)->ba_element) + indx - 1;
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   553
#if defined(__i386__) || defined(UNALIGNED_FETCH_OK)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   554
		((unsigned int *)byteP)[0] = val.u_uint;
3422
09c13ab58bb2 i386 can do unaligned accesses
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   555
#else
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   556
		if (((unsigned INT)byteP & 3) == 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   557
		    ((unsigned int *)byteP)[0] = val.u_uint;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   558
		} else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   559
		    byteP[0] = val.u_char[0];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   560
		    byteP[1] = val.u_char[1];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   561
		    byteP[2] = val.u_char[2];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   562
		    byteP[3] = val.u_char[3];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   563
		}
3422
09c13ab58bb2 i386 can do unaligned accesses
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   564
#endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   565
		RETURN ( value );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   566
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   567
	}
359
claus
parents: 343
diff changeset
   568
    }
claus
parents: 343
diff changeset
   569
  error: ;
claus
parents: 343
diff changeset
   570
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   571
    ^ super doubleWordAt:index put:value.
359
claus
parents: 343
diff changeset
   572
claus
parents: 343
diff changeset
   573
    "
claus
parents: 343
diff changeset
   574
     |b|
claus
parents: 343
diff changeset
   575
     b := ByteArray new:4.
claus
parents: 343
diff changeset
   576
     b doubleWordAt:1 put:16r04030201.
claus
parents: 343
diff changeset
   577
     b inspect
claus
parents: 343
diff changeset
   578
    "
claus
parents: 343
diff changeset
   579
!
claus
parents: 343
diff changeset
   580
claus
parents: 343
diff changeset
   581
doubleWordAt:index put:value MSB:msb
claus
parents: 343
diff changeset
   582
    "set the 4-bytes starting at index from the (unsigned) Integer value.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   583
     The value must be in the range 0 to 16rFFFFFFFF.
359
claus
parents: 343
diff changeset
   584
     The value is stored MSB-first if msb is true; LSB-first otherwise.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   585
     question: should it store signed values ? (see ByteArray signedDoubleWordAt:put:)"
2
claus
parents: 1
diff changeset
   586
claus
parents: 1
diff changeset
   587
    |t|
claus
parents: 1
diff changeset
   588
claus
parents: 1
diff changeset
   589
%{  /* NOCONTEXT */
claus
parents: 1
diff changeset
   590
claus
parents: 1
diff changeset
   591
    REGISTER int indx;
claus
parents: 1
diff changeset
   592
    int nIndex;
claus
parents: 1
diff changeset
   593
    int val;
249
claus
parents: 221
diff changeset
   594
    OBJ cls;
2950
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   595
    unsigned char *byteP;
2
claus
parents: 1
diff changeset
   596
359
claus
parents: 343
diff changeset
   597
    if (__isSmallInteger(index)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   598
	if (__isSmallInteger(value)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   599
	    val = __intVal(value);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   600
	} else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   601
	    val = __longIntVal(value);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   602
	    if (val == 0) goto error;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   603
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   604
	indx = __intVal(index);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   605
	if (indx > 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   606
	    if ((cls = __qClass(self)) != @global(ByteArray))
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   607
		indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   608
	    nIndex = __qSize(self) - OHDR_SIZE;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   609
	    if ((indx+3) <= nIndex) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   610
		byteP = (unsigned char *)(__ByteArrayInstPtr(self)->ba_element) + indx - 1;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   611
		if (msb == true) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   612
		    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   613
		     * most significant byte first (i.e sparc order)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   614
		     */
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   615
#if defined(__MSBFIRST__)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   616
		    if (((INT)byteP & 3) == 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   617
			((int *)byteP)[0] = val;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   618
		    } else
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   619
#endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   620
		    {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   621
			byteP[3] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   622
			val >>= 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   623
			byteP[2] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   624
			val >>= 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   625
			byteP[1] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   626
			val >>= 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   627
			byteP[0] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   628
		    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   629
		} else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   630
		    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   631
		     * least significant byte first (i.e i386/alpha order)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   632
		     */
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   633
#if defined(__i386__) || (defined(__LSBFIRST__) && defined(UNALIGNED_FETCH_OK))
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   634
		    ((int *)byteP)[0] = val;
3425
f7faef75f0d8 tuned word & doubleWord access for i386
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
   635
#else
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   636
# if defined(__LSBFIRST__)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   637
		    if (((unsigned INT)byteP & 3) == 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   638
			((int *)byteP)[0] = val;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   639
		    } else
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   640
# endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   641
		    {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   642
			byteP[0] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   643
			val >>= 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   644
			byteP[1] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   645
			val >>= 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   646
			byteP[2] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   647
			val >>= 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   648
			byteP[3] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   649
		    }
3425
f7faef75f0d8 tuned word & doubleWord access for i386
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
   650
#endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   651
		}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   652
		RETURN ( value );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   653
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   654
	}
2
claus
parents: 1
diff changeset
   655
    }
359
claus
parents: 343
diff changeset
   656
  error: ;
claus
parents: 343
diff changeset
   657
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   658
    ^ super doubleWordAt:index put:value MSB:msb
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   659
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   660
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   661
     |b|
359
claus
parents: 343
diff changeset
   662
     b := ByteArray new:8.
claus
parents: 343
diff changeset
   663
     b doubleWordAt:1 put:16r04030201 MSB:true.
claus
parents: 343
diff changeset
   664
     b doubleWordAt:5 put:16r04030201 MSB:false.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   665
     b inspect
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   666
    "
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   667
! !
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   668
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   669
!ByteArray methodsFor:'accessing-shorts'!
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   670
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   671
wordAt:index
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   672
    "return the 2-bytes starting at index as an (unsigned) Integer.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   673
     The value is retrieved in the machines natural byte order
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   674
     Notice: 
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   675
        the index is a byte index; thus, this allows for unaligned access to
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   676
        words on any boundary.
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   677
     Question: should it be retrieve signed values ? (see ByteArray>>signedWordAt:)"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   678
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   679
%{  /* NOCONTEXT */
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   680
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   681
    REGISTER int indx;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   682
    int nIndex;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   683
    union {
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   684
        unsigned char u_char[2];
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   685
        unsigned short u_ushort;
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   686
    } val;
2950
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   687
    unsigned char *byteP;
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   688
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   689
    if (__isSmallInteger(index)) {
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   690
        indx = __intVal(index);
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   691
        if (indx > 0) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   692
            if (!__isByteArrayLike(self))
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   693
                indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(self))->c_ninstvars));
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   694
            nIndex = __byteArraySize(self);
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   695
            if ((indx+1) <= nIndex) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   696
                byteP = (unsigned char *)(__ByteArrayInstPtr(self)->ba_element) + indx - 1;
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   697
#if defined(__i386__) || defined(UNALIGNED_FETCH_OK)
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   698
                val.u_ushort = ((unsigned short *)byteP)[0];
3422
09c13ab58bb2 i386 can do unaligned accesses
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   699
#else
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   700
                /*
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   701
                 * mhmh to be measured:
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   702
                 *   the if may hurt more than the additional
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   703
                 *   memory cycles on some machines ...
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   704
                 */
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   705
                if (((INT)byteP & 1) == 0) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   706
                    /* aligned */
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   707
                    val.u_ushort = ((unsigned short *)byteP)[0];
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   708
                } else {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   709
                    val.u_char[0] = byteP[0];
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   710
                    val.u_char[1] = byteP[1];
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   711
                }
3422
09c13ab58bb2 i386 can do unaligned accesses
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   712
#endif
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   713
                RETURN ( __mkSmallInteger((val.u_ushort)) );
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   714
            }
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   715
        }
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   716
    }
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   717
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   718
    ^ super wordAt:index
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   719
!
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   720
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   721
wordAt:index MSB:msb
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   722
    "return the 2-bytes starting at index as an (unsigned) Integer.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   723
     The value is retrieved MSB (high 8 bits at lower index) if msb is true;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   724
     LSB-first (i.e. low 8-bits at lower byte index) if its false.
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   725
     Notice: 
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   726
        the index is a byte index; thus, this allows for unaligned access to
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   727
        words on any boundary.
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   728
     Question: should it be retrieve signed values ? (see ByteArray>>signedWordAt:)"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   729
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   730
%{  /* NOCONTEXT */
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   731
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   732
    REGISTER int indx;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   733
    int nIndex;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   734
    int val;
2950
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   735
    unsigned char *byteP;
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   736
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   737
    if (__isSmallInteger(index)) {
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   738
        indx = __intVal(index);
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   739
        if (indx > 0) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   740
            if (!__isByteArrayLike(self))
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   741
                indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(self))->c_ninstvars));
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   742
            nIndex = __byteArraySize(self);
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   743
            if ((indx+1) <= nIndex) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   744
                byteP = (unsigned char *)(__ByteArrayInstPtr(self)->ba_element) + indx - 1;
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   745
                if (msb == true) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   746
                    /*
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   747
                     * most significant byte first (i.e sparc order)
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   748
                     */
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   749
#if defined(__MSBFIRST__)
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   750
                    /*
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   751
                     * mhmh to be measured:
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   752
                     *   the if may hurt more than the additional
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   753
                     *   memory cycles on some machines ...
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   754
                     */
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   755
                    if (((INT)byteP & 1) == 0) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   756
                        /* aligned */
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   757
                        val = ((unsigned short *)byteP)[0];
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   758
                    } else
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   759
#endif
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   760
                    {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   761
                        val = byteP[0];
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   762
                        val = (val << 8) + byteP[1];
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   763
                    }
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   764
                } else {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   765
                    /*
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   766
                     * least significant byte first (i.e i386/alpha order)
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   767
                     */
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   768
#if defined(__i386__) || (defined(__LSBFIRST__) && defined(UNALIGNED_FETCH_OK))
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   769
                    val = ((unsigned short *)byteP)[0];
3425
f7faef75f0d8 tuned word & doubleWord access for i386
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
   770
#else
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   771
# if defined(__LSBFIRST__)
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   772
                    /*
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   773
                     * mhmh to be measured:
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   774
                     *   the if may hurt more than the additional
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   775
                     *   memory cycles on some machines ...
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   776
                     */
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   777
                    if (((INT)byteP & 1) == 0) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   778
                        /* aligned */
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   779
                        val = ((unsigned short *)byteP)[0];
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   780
                    } else
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   781
# endif
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   782
                    {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   783
                        val = byteP[1];
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   784
                        val = (val << 8) + byteP[0];
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   785
                    }
3425
f7faef75f0d8 tuned word & doubleWord access for i386
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
   786
#endif
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   787
                }
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   788
                RETURN ( __mkSmallInteger(val) );
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   789
            }
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   790
        }
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   791
    }
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   792
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   793
    ^ super wordAt:index MSB:msb
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   794
!
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   795
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   796
wordAt:index put:value
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   797
    "set the 2-bytes starting at index from the (unsigned) Integer value.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   798
     The stored value must be in the range 0 .. 16rFFFF.
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   799
     The value is stored in the machines natural byteorder,
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   800
     i.e. this method should only be used to fill byteArrays which are
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   801
     used internally (not passed to other machines).
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   802
     Notice: 
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   803
        the index is a byte index; thus, this allows for unaligned access to
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   804
        words on any boundary.
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   805
     Question: should it accept signed values ? (see ByteArray>>signedWordAt:put:)"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   806
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   807
%{  /* NOCONTEXT */
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   808
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   809
    REGISTER int indx;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   810
    int nIndex;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   811
    int v;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   812
    union {
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   813
        unsigned char u_char[2];
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   814
        unsigned short u_ushort;
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   815
    } val;
2950
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   816
    unsigned char *byteP;
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   817
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   818
    if (__bothSmallInteger(index, value)) {
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   819
        indx = __intVal(index);
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   820
        if (indx > 0) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   821
            if (!__isByteArrayLike(self))
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   822
                indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(self))->c_ninstvars));
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   823
            nIndex = __byteArraySize(self);
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   824
            if ((indx+1) <= nIndex) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   825
                val.u_ushort = v = __intVal(value);
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   826
                if ((v & ~0xFFFF) == 0 /* i.e. (val >= 0) && (val <= 0xFFFF) */) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   827
                    byteP = (unsigned char *)(__ByteArrayInstPtr(self)->ba_element) + indx - 1;
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   828
#if defined(__i386__) || defined(UNALIGNED_FETCH_OK)
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   829
                    ((unsigned short *)byteP)[0] = val.u_ushort;
3422
09c13ab58bb2 i386 can do unaligned accesses
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   830
#else
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   831
                    /*
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   832
                     * mhmh to be measured:
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   833
                     *   the if may hurt more than the additional
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   834
                     *   memory cycles on some machines ...
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   835
                     */
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   836
                    if (((INT)byteP & 1) == 0) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   837
                        /* aligned */
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   838
                        ((unsigned short *)byteP)[0] = val.u_ushort;
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   839
                    } else {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   840
                        byteP[0] = val.u_char[0];
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   841
                        byteP[1] = val.u_char[1];
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   842
                    }
3422
09c13ab58bb2 i386 can do unaligned accesses
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   843
#endif
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   844
                    RETURN ( value );
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   845
                }
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   846
            }
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   847
        }
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   848
    }
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   849
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   850
    ^ super wordAt:index put:value
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   851
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   852
    "
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   853
     |b|
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   854
     b := ByteArray new:4.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   855
     b wordAt:1 put:16r0102.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   856
     b wordAt:3 put:16r0304.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   857
     b inspect
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   858
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   859
!
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   860
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   861
wordAt:index put:value MSB:msb
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   862
    "set the 2-bytes starting at index from the (unsigned) Integer value.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   863
     The stored value must be in the range 0 .. 16rFFFF.
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   864
     The value is stored LSB-first (i.e. the low 8bits are stored at the
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   865
     lower index) if msb is false, MSB-first otherwise.
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   866
     Notice: 
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   867
        the index is a byte index; thus, this allows for unaligned access to
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   868
        words on any boundary.
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   869
     Question: should it accept signed values ? (see ByteArray>>signedWordAt:put:)"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   870
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   871
%{  /* NOCONTEXT */
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   872
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   873
    REGISTER int indx;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   874
    int nIndex;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   875
    int val;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   876
    OBJ cls;
2950
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   877
    unsigned char *byteP;
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   878
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   879
    if (__bothSmallInteger(index, value)) {
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   880
        indx = __intVal(index);
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   881
        if (indx > 0) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   882
            if (!__isByteArrayLike(self))
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   883
                indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(__qClass(self))->c_ninstvars));
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   884
            nIndex = __byteArraySize(self);
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   885
            if ((indx+1) <= nIndex) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   886
                val = __intVal(value);
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   887
                if ((val & ~0xFFFF) == 0 /* i.e. (val >= 0) && (val <= 0xFFFF) */) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   888
                    byteP = (unsigned char *)(__ByteArrayInstPtr(self)->ba_element) + indx - 1;
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   889
                    if (msb == true) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   890
                        /*
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   891
                         * most significant byte first (i.e sparc order)
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   892
                         */
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   893
#if defined(__MSBFIRST__)
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   894
                        /*
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   895
                         * mhmh to be measured:
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   896
                         *   the if may hurt more than the additional
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   897
                         *   memory cycles on some machines ...
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   898
                         */
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   899
                        if (((INT)byteP & 1) == 0) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   900
                            /* aligned */
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   901
                            ((unsigned short *)byteP)[0] = val;
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   902
                        } else
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   903
#endif
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   904
                        {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   905
                            byteP[1] = val & 0xFF;
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   906
                            byteP[0] = (val>>8) & 0xFF;
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   907
                        }
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   908
                    } else {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   909
                        /*
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   910
                         * least significant byte first (i.e i386/alpha order)
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   911
                         */
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   912
#if defined(__i386__) || (defined(__LSBFIRST__) && defined(UNALIGNED_FETCH_OK))
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   913
                        ((unsigned short *)byteP)[0] = val;
3425
f7faef75f0d8 tuned word & doubleWord access for i386
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
   914
#else
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   915
# if defined(__LSBFIRST__)
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   916
                        /*
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   917
                         * mhmh to be measured:
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   918
                         *   the if may hurt more than the additional
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   919
                         *   memory cycles on some machines ...
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   920
                         */
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   921
                        if (((INT)byteP & 1) == 0) {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   922
                            /* aligned */
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   923
                            ((unsigned short *)byteP)[0] = val;
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   924
                        } else
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   925
# endif
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   926
                        {
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   927
                            byteP[0] = val & 0xFF;
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   928
                            byteP[1] = (val>>8) & 0xFF;
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   929
                        }
3425
f7faef75f0d8 tuned word & doubleWord access for i386
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
   930
#endif
19048
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   931
                    }
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   932
                    RETURN ( value );
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   933
                }
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   934
            }
0929f428048d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18966
diff changeset
   935
        }
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   936
    }
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   937
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   938
    ^ super wordAt:index put:value MSB:msb
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   939
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   940
    "
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   941
     |b|
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   942
     b := ByteArray new:8.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   943
     b wordAt:1 put:16r0102 MSB:false.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   944
     b wordAt:3 put:16r0304 MSB:false.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   945
     b wordAt:5 put:16r0102 MSB:true.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   946
     b wordAt:7 put:16r0304 MSB:true.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   947
     b inspect
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   948
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   949
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   950
11502
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   951
3345
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   952
!ByteArray methodsFor:'comparing'!
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   953
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   954
= aByteArray
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   955
    "Compare the receiver with the argument and return true if the
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   956
     receiver is equal to the argument (i.e. has the same size and elements).
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   957
     Otherwise return false."
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   958
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   959
%{  /* NOCONTEXT */
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   960
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   961
    int l1, l2;
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   962
    REGISTER OBJ s = aByteArray;
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   963
    unsigned char *cp1, *cp2;
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   964
    OBJ cls;
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   965
    OBJ myCls;
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   966
    INT addrDelta;
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   967
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   968
    if (s == self) {
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   969
	RETURN ( true );
3345
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   970
    }
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   971
    if (! __isNonNilObject(s)) {
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   972
	RETURN ( false );
3345
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   973
    }
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   974
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   975
    cls = __qClass(s);
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   976
    myCls = __qClass(self);
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   977
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   978
    if (cls == myCls) {
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   979
	l2 = __byteArraySize(s);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   980
	l1 = __byteArraySize(self);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   981
	if (l1 != l2) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   982
	    RETURN ( false );
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   983
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   984
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   985
	cp1 = __byteArrayVal(self);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   986
	cp2 = __byteArrayVal(s);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   987
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   988
	/*
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   989
	 * care for instances of subclasses ...
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   990
	 */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   991
	if (cls != ByteArray) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   992
	    int n = __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   993
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   994
	    cp2 += n;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   995
	    cp1 += n;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   996
	    l1 -= n;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   997
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   998
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
   999
	addrDelta = cp2 - cp1;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1000
	while (l1 >= (sizeof(unsigned INT) * 4)) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1001
	    if (((unsigned INT *)cp1)[0] != ((unsigned INT *)(cp1+addrDelta))[0]) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1002
		RETURN (false);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1003
	    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1004
	    if (((unsigned INT *)cp1)[1] != ((unsigned INT *)(cp1+addrDelta))[1]) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1005
		RETURN (false);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1006
	    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1007
	    if (((unsigned INT *)cp1)[2] != ((unsigned INT *)(cp1+addrDelta))[2]) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1008
		RETURN (false);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1009
	    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1010
	    if (((unsigned INT *)cp1)[3] != ((unsigned INT *)(cp1+addrDelta))[3]) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1011
		RETURN (false);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1012
	    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1013
	    l1 -= sizeof(unsigned INT)*4;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1014
	    cp1 += sizeof(unsigned INT)*4;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1015
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1016
	while (l1 >= sizeof(unsigned INT)) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1017
	    if (*((unsigned INT *)cp1) != *((unsigned INT *)(cp1+addrDelta))) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1018
		RETURN (false);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1019
	    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1020
	    l1 -= sizeof(unsigned INT);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1021
	    cp1 += sizeof(unsigned INT);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1022
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1023
	if (l1 >= sizeof(unsigned short)) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1024
	    if (*((unsigned short *)cp1) != *((unsigned short *)(cp1+addrDelta))) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1025
		RETURN (false);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1026
	    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1027
	    l1 -= sizeof(unsigned short);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1028
	    cp1 += sizeof(unsigned short);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1029
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1030
	while (l1) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1031
	    if (*cp1 != *(cp1+addrDelta)) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1032
		RETURN (false);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1033
	    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1034
	    l1--;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1035
	    cp1++;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1036
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1037
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1038
	RETURN (true);
3345
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1039
    }
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1040
%}.
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1041
    ^ super = aByteArray
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1042
! !
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1043
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1044
!ByteArray methodsFor:'converting'!
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1045
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1046
asByteArray
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1047
    "return the receiver as a byteArray"
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1048
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1049
    "could be an instance of a subclass..."
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1050
    self class == ByteArray ifTrue:[
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1051
	^ self
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1052
    ].
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1053
    ^ super asByteArray
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1054
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1055
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1056
     'hello world' asByteArray
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1057
     #(1 2 3 4 5 6 7) asByteArray
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1058
     #(1 2 256 4 5 6 7) asByteArray
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1059
    "
4778
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1060
!
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1061
12453
74715f6d4cbe added: #asImmutableByteArray
Claus Gittinger <cg@exept.de>
parents: 12276
diff changeset
  1062
asImmutableByteArray
74715f6d4cbe added: #asImmutableByteArray
Claus Gittinger <cg@exept.de>
parents: 12276
diff changeset
  1063
    "return a write-protected copy of myself"
74715f6d4cbe added: #asImmutableByteArray
Claus Gittinger <cg@exept.de>
parents: 12276
diff changeset
  1064
74715f6d4cbe added: #asImmutableByteArray
Claus Gittinger <cg@exept.de>
parents: 12276
diff changeset
  1065
    ^ self copy changeClassTo:ImmutableByteArray
74715f6d4cbe added: #asImmutableByteArray
Claus Gittinger <cg@exept.de>
parents: 12276
diff changeset
  1066
!
74715f6d4cbe added: #asImmutableByteArray
Claus Gittinger <cg@exept.de>
parents: 12276
diff changeset
  1067
12276
6a8f5042befc added: #asInteger
Stefan Vogel <sv@exept.de>
parents: 12144
diff changeset
  1068
asInteger
6a8f5042befc added: #asInteger
Stefan Vogel <sv@exept.de>
parents: 12144
diff changeset
  1069
    "convert myself to an integer - the first byte is most significant.
6a8f5042befc added: #asInteger
Stefan Vogel <sv@exept.de>
parents: 12144
diff changeset
  1070
     This is also in Squeak."
6a8f5042befc added: #asInteger
Stefan Vogel <sv@exept.de>
parents: 12144
diff changeset
  1071
16795
6ceacf5daa62 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16741
diff changeset
  1072
    ^ self asIntegerMSB:true
12276
6a8f5042befc added: #asInteger
Stefan Vogel <sv@exept.de>
parents: 12144
diff changeset
  1073
6a8f5042befc added: #asInteger
Stefan Vogel <sv@exept.de>
parents: 12144
diff changeset
  1074
    "
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1075
	#[ 2 ] asInteger hexPrintString
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1076
	#[ 16r1 16r2 ] asInteger hexPrintString
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1077
	#[4 0 0 0 0 0 0 0] asInteger hexPrintString
12276
6a8f5042befc added: #asInteger
Stefan Vogel <sv@exept.de>
parents: 12144
diff changeset
  1078
    "
6a8f5042befc added: #asInteger
Stefan Vogel <sv@exept.de>
parents: 12144
diff changeset
  1079
!
6a8f5042befc added: #asInteger
Stefan Vogel <sv@exept.de>
parents: 12144
diff changeset
  1080
12621
Stefan Vogel <sv@exept.de>
parents: 12550
diff changeset
  1081
asIntegerMSB:isMSBFirst
Stefan Vogel <sv@exept.de>
parents: 12550
diff changeset
  1082
    "convert myself to an integer - the first byte is most significant.
Stefan Vogel <sv@exept.de>
parents: 12550
diff changeset
  1083
     This is also in Squeak."
Stefan Vogel <sv@exept.de>
parents: 12550
diff changeset
  1084
14135
bc011ad68efb changed:
Stefan Vogel <sv@exept.de>
parents: 13706
diff changeset
  1085
    ^ (LargeInteger digitBytes:self MSB:isMSBFirst) compressed
12621
Stefan Vogel <sv@exept.de>
parents: 12550
diff changeset
  1086
Stefan Vogel <sv@exept.de>
parents: 12550
diff changeset
  1087
    "
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1088
	(#[ 2 ] asIntegerMSB:true) hexPrintString
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1089
	(#[ 16r1 16r2 ] asIntegerMSB:true) hexPrintString
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1090
	(#[ 16r1 16r2 ] asIntegerMSB:false) hexPrintString
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1091
	(#[4 0 0 0 0 0 0 0] asIntegerMSB:true) hexPrintString
12621
Stefan Vogel <sv@exept.de>
parents: 12550
diff changeset
  1092
    "
Stefan Vogel <sv@exept.de>
parents: 12550
diff changeset
  1093
!
Stefan Vogel <sv@exept.de>
parents: 12550
diff changeset
  1094
7117
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1095
asPackedString
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1096
    "ST-80 compatibility: encode the receiver into an ascii String
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1097
     with 6bits encoded per character. Each group of 6 bits is encoded
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1098
     as a corresponding character (32+value) and the resulting string
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1099
     is returned. The resulting string is always a multiple of 4 (since
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1100
     24 is the lcm of 6 and 8) and the number of remaining characters is
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1101
     encoded in the last character.
16799
11676875b9fe class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16795
diff changeset
  1102
     ST-80 uses this encoding for Images...
11676875b9fe class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16795
diff changeset
  1103
     This is a base64 encoding, very similar (but not equal) to the algorithm used in RFC1421.
11676875b9fe class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16795
diff changeset
  1104
     PS: I don't like it ;-)
11676875b9fe class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16795
diff changeset
  1105
     See also: fromPackedString: - the reverse operation"
7117
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1106
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1107
    |outStream
7117
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1108
     index     "{ Class:SmallInteger}"
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1109
     nextIndex "{ Class:SmallInteger}"
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1110
     stop      "{ Class:SmallInteger}"
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1111
     n         "{ Class:SmallInteger}"
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1112
     mod       "{ Class:SmallInteger}"
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1113
     cpl|
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1114
18584
ee039e582133 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 17535
diff changeset
  1115
    outStream := WriteStream on:(String new:((self size + 2) * 4 // 3)).
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1116
    index := 1.
7117
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1117
    stop := self size.
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1118
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1119
    stop > 100 ifTrue:[
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1120
	"/ cg:
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1121
	"/ initial lineBreak
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1122
	outStream cr.
7117
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1123
    ].
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1124
    cpl := 0.
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1125
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1126
    [index <= stop] whileTrue:[
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1127
	"take 3 source bytes"
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1128
	n := (self at:index) bitShift:16.
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1129
	(index < stop) ifTrue:[
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1130
	    nextIndex := index + 1.
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1131
	    n := n bitOr:((self at:nextIndex) bitShift:8).
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1132
	    (nextIndex < stop) ifTrue:[
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1133
		n := n bitOr:(self at:(index + 2)).
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1134
	    ].
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1135
	].
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1136
	index := index + 3.
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1137
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1138
	"took me a while to find that one out ..."
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1139
	n := n bitXor:16r820820.
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1140
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1141
	outStream nextPut:(Character value:((n bitShift:-18) bitAnd:16r3F) + 32).
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1142
	outStream nextPut:(Character value:((n bitShift:-12) bitAnd:16r3F) + 32).
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1143
	outStream nextPut:(Character value:((n bitShift:-6) bitAnd:16r3F) + 32).
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1144
	outStream nextPut:(Character value:(n bitAnd:16r3F) + 32).
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1145
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1146
	"/ cg:
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1147
	"/ lineBreak after every 120 characters
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1148
	"/ fromPackedString will ignore those
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1149
	cpl := cpl + 4.
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1150
	cpl >= 120 ifTrue:[
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1151
	    outStream cr.
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1152
	    cpl := 0.
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1153
	].
7117
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1154
    ].
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1155
    (mod := stop \\ 3) ~~ 0 ifTrue:[
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1156
	outStream backStep.
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1157
	outStream nextPut:(Character value:(mod + 96)).
7117
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1158
    ].
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1159
    ^ outStream contents
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1160
16799
11676875b9fe class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16795
diff changeset
  1161
    "
11676875b9fe class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16795
diff changeset
  1162
     #[ 16r00 16r01 16r02 16r04 16r08 16r10 16r20 16r40 16r80 ] asPackedString
11676875b9fe class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16795
diff changeset
  1163
    "
11676875b9fe class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16795
diff changeset
  1164
7117
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1165
    "Modified: 12.11.1996 / 15:45:02 / cg"
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1166
!
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1167
17377
e4fdf84bd41a class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 16852
diff changeset
  1168
beImmutable
e4fdf84bd41a class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 16852
diff changeset
  1169
    "make myself write-protected"
e4fdf84bd41a class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 16852
diff changeset
  1170
e4fdf84bd41a class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 16852
diff changeset
  1171
    self changeClassTo:ImmutableByteArray
e4fdf84bd41a class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 16852
diff changeset
  1172
!
e4fdf84bd41a class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 16852
diff changeset
  1173
4807
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1174
decodeAsLiteralArray
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1175
    "given a literalEncoding in the receiver,
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1176
     create & return the corresponding object.
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1177
     The inverse operation to #literalArrayEncoding."
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1178
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1179
    ^ self
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1180
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1181
!
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1182
4778
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1183
literalArrayEncoding
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1184
    "encode myself as an array literal, from which a copy of the receiver
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1185
     can be reconstructed with #decodeAsLiteralArray."
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1186
12487
d0c7ee0b0fb4 more immutability stuff
Claus Gittinger <cg@exept.de>
parents: 12466
diff changeset
  1187
    |cls|
d0c7ee0b0fb4 more immutability stuff
Claus Gittinger <cg@exept.de>
parents: 12466
diff changeset
  1188
d0c7ee0b0fb4 more immutability stuff
Claus Gittinger <cg@exept.de>
parents: 12466
diff changeset
  1189
    ((cls := self class) == ByteArray or:[cls == ImmutableByteArray]) ifTrue:[
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1190
	^ self
11063
ca134030dff4 changed #literalArrayEncoding: self is onlz ok for realByteArrays
fm
parents: 11010
diff changeset
  1191
    ].
ca134030dff4 changed #literalArrayEncoding: self is onlz ok for realByteArrays
fm
parents: 11010
diff changeset
  1192
    ^ super literalArrayEncoding
4778
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1193
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1194
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1195
     #[1 2 3] literalArrayEncoding
4778
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1196
    "
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1197
! !
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1198
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1199
!ByteArray methodsFor:'copying'!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1200
5024
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1201
copy
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1202
    "redefined for a bit more speed"
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1203
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1204
    self class == ByteArray ifTrue:[
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1205
	^ self copyFrom:1 to:(self size)
5024
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1206
    ].
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1207
    ^ super copy
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1208
!
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1209
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1210
copyFrom:start to:stop
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1211
    "return the subcollection starting at index start, anInteger and ending
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1212
     at stop, anInteger.
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1213
     - reimplemented here for speed"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1214
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1215
%{  /* NOCONTEXT */
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1216
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1217
    REGISTER unsigned char *srcp;
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1218
    REGISTER unsigned char *dstp;
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1219
    REGISTER int count;
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1220
    int len, index1, index2, sz;
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1221
    OBJ newByteArray;
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1222
12466
353502b2baa9 __isByteArray() to __isByteArrayLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 12453
diff changeset
  1223
    if (__isByteArrayLike(self)
249
claus
parents: 221
diff changeset
  1224
     && __bothSmallInteger(start, stop)) {
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1225
	len = __byteArraySize(self);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1226
	index1 = __intVal(start);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1227
	index2 = __intVal(stop);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1228
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1229
	if ((index1 <= index2) && (index1 > 0)) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1230
	    if (index2 <= len) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1231
		count = index2 - index1 + 1;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1232
		__PROTECT_CONTEXT__
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1233
		sz = OHDR_SIZE + count;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1234
		__qNew(newByteArray, sz);       /* OBJECT ALLOCATION */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1235
		__UNPROTECT_CONTEXT__
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1236
		if (newByteArray != nil) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1237
		    __InstPtr(newByteArray)->o_class = ByteArray;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1238
		    __qSTORE(newByteArray, ByteArray);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1239
		    dstp = __ByteArrayInstPtr(newByteArray)->ba_element;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1240
		    srcp = __ByteArrayInstPtr(self)->ba_element + index1 - 1;
2648
a544a64491a7 better use of bcopy4
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
  1241
a544a64491a7 better use of bcopy4
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
  1242
#ifdef bcopy4
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1243
		    if (((unsigned INT)srcp & 3) == ((unsigned INT)dstp & 3)) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1244
			int nW;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1245
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1246
			/* copy unaligned part */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1247
			while (count && (((unsigned INT)srcp & 3) != 0)) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1248
			    *dstp++ = *srcp++;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1249
			    count--;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1250
			}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1251
			if (count) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1252
			    /* copy aligned part */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1253
			    nW = count >> 2;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1254
			    if (count & 3) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1255
				nW++;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1256
			    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1257
			    bcopy4(srcp, dstp, nW);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1258
			}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1259
			RETURN ( newByteArray );
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1260
		    }
2648
a544a64491a7 better use of bcopy4
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
  1261
#endif /* bcopy4 */
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
  1262
#if __POINTER_SIZE__ == 8
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1263
		    if (((unsigned INT)srcp & 7) == ((unsigned INT)dstp & 7)) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1264
			int nW;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1265
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1266
			/* copy unaligned part */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1267
			while (count && (((unsigned INT)srcp & 7) != 0)) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1268
			    *dstp++ = *srcp++;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1269
			    count--;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1270
			}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1271
			/* copy aligned part */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1272
			while (count >= 8) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1273
			    ((unsigned INT *)dstp)[0] = ((unsigned INT *)srcp)[0];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1274
			    dstp += 8;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1275
			    srcp += 8;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1276
			    count -= 8;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1277
			}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1278
			/* copy remaining part */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1279
			while (count) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1280
			    *dstp++ = *srcp++;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1281
			    count--;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1282
			}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1283
			RETURN ( newByteArray );
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1284
		    }
4943
8e51d34f2b3a slightly tuned #copyFrom:to: and #replaceBytesFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4941
diff changeset
  1285
#endif /* bcopy4 */
2648
a544a64491a7 better use of bcopy4
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
  1286
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1287
#ifdef FAST_MEMCPY
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1288
		    bcopy(srcp, dstp, count);
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1289
#else
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1290
		    while (count--) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1291
			*dstp++ = *srcp++;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1292
		    }
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1293
#endif
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1294
		    RETURN ( newByteArray );
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1295
		}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1296
	    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1297
	}
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1298
    }
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1299
%}.
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1300
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1301
     fall back in case of non-integer index or out-of-bound index;
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1302
     will eventually lead to an out-of-bound signal raise
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1303
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1304
    ^ super copyFrom:start to:stop
4941
7674fdddb1db better byteArray copy on Intel
Claus Gittinger <cg@exept.de>
parents: 4931
diff changeset
  1305
7674fdddb1db better byteArray copy on Intel
Claus Gittinger <cg@exept.de>
parents: 4931
diff changeset
  1306
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1307
     #[1 2 3 4 5 6 7 8 9 10] copyFrom:1 to:10
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1308
     #[1 2 3 4 5 6 7 8 9 10] copyFrom:5 to:7
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1309
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1310
     #[1 2 3 4 5 6 7 8 9 10] copyFrom:5 to:11
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1311
     #[1 2 3 4 5 6 7 8 9 10] copyFrom:0 to:10
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1312
     #[1 2 3 4 5 6 7 8 9 10] copyFrom:0 to:9
4941
7674fdddb1db better byteArray copy on Intel
Claus Gittinger <cg@exept.de>
parents: 4931
diff changeset
  1313
    "
3325
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1314
!
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1315
5024
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1316
shallowCopy
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1317
    "redefined for a bit more speed"
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1318
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1319
    self class == ByteArray ifTrue:[
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1320
	^ self copyFrom:1 to:(self size)
5024
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1321
    ].
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1322
    ^ super shallowCopy
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1323
!
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1324
3325
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1325
symbolFrom:start to:stop
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1326
    "make a symbol from the characters of the subcollection starting
3325
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1327
     at index start, anInteger and ending at stop, anInteger.
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1328
     This saves us garbage and character copying."
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1329
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1330
    |sym|
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1331
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1332
%{  /* STACK:1024 */
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1333
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1334
    REGISTER unsigned char *srcp;
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1335
    REGISTER unsigned char *endp;
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1336
    REGISTER int count;
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1337
    int len, index1, index2;
4086
4b3a61a4e35d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
  1338
    unsigned char scratchBuffer[1024], savec;
3325
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1339
12466
353502b2baa9 __isByteArray() to __isByteArrayLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 12453
diff changeset
  1340
    if (__isByteArrayLike(self) && __bothSmallInteger(start, stop)) {
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1341
	len = __byteArraySize(self);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1342
	index1 = __intVal(start);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1343
	index2 = __intVal(stop);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1344
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1345
	if ((index1 <= index2) && (index1 > 0) && (index2 <= len)) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1346
	    count = index2 - index1 + 1;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1347
	    srcp = __ByteArrayInstPtr(self)->ba_element + index1 - 1;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1348
	    if (index2 < len) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1349
		/* temporarily stuff in a '\0' */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1350
		endp = srcp + count + 1;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1351
		savec = *endp;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1352
		*endp = '\0';
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1353
		sym = __MKSYMBOL(srcp, 0);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1354
		/* must refetch endp (in case of a GC */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1355
		endp = __ByteArrayInstPtr(self)->ba_element + index1 + count;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1356
		*endp = savec;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1357
	    } else {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1358
		/* not enough space for '\0', copy the bytes */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1359
		if (count < sizeof(scratchBuffer)) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1360
		    bcopy(srcp, scratchBuffer, count);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1361
		    scratchBuffer[count] = '\0';
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1362
		    sym = __MKSYMBOL(scratchBuffer, 0);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1363
		}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1364
	    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1365
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1366
	if (sym != nil)
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  1367
	    RETURN(sym);
3325
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1368
    }
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1369
%}.
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1370
    "
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1371
     fall back in case of non-integer index or out-of-bound index
4086
4b3a61a4e35d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
  1372
     or not enough stack-memory available;
4b3a61a4e35d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
  1373
     may eventually lead to an out-of-bound signal raise
3325
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1374
    "
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1375
    ^ (super copyFrom:start to:stop) asString asSymbol
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1376
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1377
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1378
    "
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1379
     'abcdefghijklmnop' symbolFrom:1 to:3
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1380
     'abcdefghijklmnop' symbolFrom:3 to:16
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1381
     'abcdefghijklmnop' symbolFrom:3 to:17
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1382
    "
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1383
! !
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1384
4154
6938d9274ee4 category rename
Claus Gittinger <cg@exept.de>
parents: 4128
diff changeset
  1385
!ByteArray methodsFor:'filling & replacing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1386
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1387
from:start to:stop put:aNumber
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1388
    "fill part of the receiver with aNumber.
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1389
     - reimplemented here for speed"
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1390
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1391
%{  /* NOCONTEXT */
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1392
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1393
    REGISTER unsigned char *dstp;
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1394
    REGISTER int count, value;
249
claus
parents: 221
diff changeset
  1395
    int len, index1, index2;
claus
parents: 221
diff changeset
  1396
    OBJ cls;
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1397
249
claus
parents: 221
diff changeset
  1398
    if (__isSmallInteger(aNumber)
1002
c44e50c09986 care for 16bit subclass instances (in tuned methods)
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  1399
     && __bothSmallInteger(start, stop)
c44e50c09986 care for 16bit subclass instances (in tuned methods)
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  1400
     && __isBytes(self)) {
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1401
	len = __byteArraySize(self);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1402
	index1 = __intVal(start);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1403
	index2 = __intVal(stop);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1404
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1405
	dstp = __ByteArrayInstPtr(self)->ba_element + index1 - 1;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1406
	if ((cls = __qClass(self)) != @global(ByteArray)) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1407
	    int nInst;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1408
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1409
	    nInst = __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1410
	    dstp += nInst;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1411
	    len -= nInst;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1412
	}
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1413
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1414
	value = __intVal(aNumber);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1415
	if (((unsigned)value <= 0xFF) /* i.e. (value >= 0) && (value <= 255) */
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1416
	 && (index1 <= index2)
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1417
	 && (index1 > 0)) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1418
	    if (index2 <= len) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1419
		count = index2 - index1 + 1;
2579
7e0783458c2f much faster #from:to:put: and #replaceBytes on i386 platforms
Claus Gittinger <cg@exept.de>
parents: 2464
diff changeset
  1420
7e0783458c2f much faster #from:to:put: and #replaceBytes on i386 platforms
Claus Gittinger <cg@exept.de>
parents: 2464
diff changeset
  1421
#ifdef memset4
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1422
		if (count > 20) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1423
		    /* fill unaligned part */
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1424
		    while (((unsigned INT)dstp & 3) != 0) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1425
			*dstp++ = value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1426
			count--;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1427
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1428
		    /* fill aligned part */
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1429
		    {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1430
			int n4 = count & ~3;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1431
			int v4, nW;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1432
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1433
			v4 = (value << 8) | value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1434
			v4 = (v4 << 16) | v4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1435
			nW = n4>>2;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1436
			memset4(dstp, v4, nW);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1437
			count -= n4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1438
			dstp += n4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1439
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1440
		    while (count--) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1441
			*dstp++ = value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1442
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1443
		    RETURN (self);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1444
		}
2579
7e0783458c2f much faster #from:to:put: and #replaceBytes on i386 platforms
Claus Gittinger <cg@exept.de>
parents: 2464
diff changeset
  1445
#endif /* memset4 */
7e0783458c2f much faster #from:to:put: and #replaceBytes on i386 platforms
Claus Gittinger <cg@exept.de>
parents: 2464
diff changeset
  1446
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1447
#if (__POINTER_SIZE__ == 8)
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1448
		{
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1449
		    INT v8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1450
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1451
		    v8 = (value << 8) | value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1452
		    v8 = (v8 << 16) | v8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1453
		    v8 = (v8 << 32) | v8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1454
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1455
		    /* fill unaligned part */
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1456
		    while ((count > 0) && (((unsigned INT)dstp & 3) != 0)) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1457
			*dstp++ = value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1458
			count--;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1459
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1460
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1461
		    if ((count >= 4) && (((unsigned INT)dstp & 7) != 0)) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1462
			((unsigned int *)dstp)[0] = v8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1463
			dstp += 4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1464
			count -= 4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1465
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1466
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1467
		    /* fill aligned part */
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1468
		    while (count >= 8) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1469
			((unsigned INT *)dstp)[0] = v8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1470
			dstp += 8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1471
			count -= 8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1472
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1473
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1474
		    /* fill rest */
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1475
		    if (count >= 4) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1476
			((unsigned int *)dstp)[0] = v8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1477
			dstp += 4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1478
			count -= 4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1479
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1480
		    if (count >= 2) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1481
			((unsigned short *)dstp)[0] = v8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1482
			dstp += 2;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1483
			count -= 2;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1484
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1485
		    if (count) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1486
			*dstp = value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1487
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1488
		    RETURN (self);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1489
		}
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1490
#endif /* 64bit */
4945
2e67ed09d194 tuned filling for alpha
Claus Gittinger <cg@exept.de>
parents: 4944
diff changeset
  1491
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1492
#ifdef FAST_MEMSET
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1493
		memset(dstp, value, count);
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1494
#else
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1495
# ifdef __UNROLL_LOOPS__
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1496
		while (count >= 8) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1497
		    dstp[0] = dstp[1] = dstp[2] = dstp[3] =
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1498
		    dstp[4] = dstp[5] = dstp[6] = dstp[7] = value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1499
		    dstp += 8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1500
		    count -= 8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1501
		}
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1502
# endif /* __UNROLL_LOOPS__ */
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1503
		while (count--) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1504
		    *dstp++ = value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1505
		}
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1506
#endif
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1507
		RETURN (self);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1508
	    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1509
	}
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1510
    }
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1511
%}.
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1512
    "
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1513
     fall back in case of non-integer index or out-of-bound index/value;
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1514
     will eventually lead to an out-of-bound signal raise
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1515
    "
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1516
    ^ super from:start to:stop put:aNumber
4945
2e67ed09d194 tuned filling for alpha
Claus Gittinger <cg@exept.de>
parents: 4944
diff changeset
  1517
2e67ed09d194 tuned filling for alpha
Claus Gittinger <cg@exept.de>
parents: 4944
diff changeset
  1518
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1519
     (ByteArray new:10) from:1 to:10 put:1
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1520
     (ByteArray new:20) from:10 to:20 put:1
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1521
     (ByteArray new:20) from:1 to:10 put:1
4945
2e67ed09d194 tuned filling for alpha
Claus Gittinger <cg@exept.de>
parents: 4944
diff changeset
  1522
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1523
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1524
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1525
!ByteArray methodsFor:'image manipulation support'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1526
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1527
bitAndBytesFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1528
    "replace bytes in the receiver with the result of a bitAnd operation.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1529
     Warning: this is a destructive operation - elements in the receiver are overwritten."
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1530
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1531
    ^ self bitBlitBytesFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart rule:#bitAnd:
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1532
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1533
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1534
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1535
	bitAndBytesFrom:1 to:8 with:#[1 2 3 4 5 6 7 8] startingAt:1
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1536
     #[1 2 3 4 5 6 7 8]
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1537
	bitAndBytesFrom:1 to:8 with:#[1 1 1 1 1 1 1 1] startingAt:1
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1538
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1539
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1540
!
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1541
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1542
bitBlitBytesFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart rule:ruleSymbol
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1543
    "perform a special case of an aligned bitBlit operation.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1544
     Bytes in the receiver from dstStart to dstEnd are destructively replaced by the result
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1545
     of some logical operation, as specified by the ruleSymbol.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1546
     SourceBytes are fetched starting at sourceOffset.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1547
     Valid rule symbols are:
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1548
	#copy    - trivial;  same as replaceBytesFrom:to:with:startingAt:
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1549
	#bitXor: - xoring;   byte[dI] = byte[dI] bitXor:(srcByte[sI])
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1550
	#bitAnd: - anding;   byte[dI] = byte[dI] bitAnd:(srcByte[sI])
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1551
	#bitOr:  - oring;    byte[dI] = byte[dI] bitOr:(srcByte[sI])
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1552
	#+       - adding;   byte[dI] = (byte[dI] + (srcByte[sI])) mod: 256
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1553
	#-       - subtract; byte[dI] = (byte[dI] - (srcByte[sI])) mod: 256
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1554
     Warning: this is a destructive operation - elements in the receiver are overwritten.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1555
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1556
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1557
    |srcIdx|
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1558
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1559
%{
12466
353502b2baa9 __isByteArray() to __isByteArrayLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 12453
diff changeset
  1560
    if ((__isByteArrayLike(sourceBytes))
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1561
     && (__qClass(self) == ByteArray)
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1562
     && __isSmallInteger(dstStart)
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1563
     && __isSmallInteger(dstEnd)
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1564
     && __isSmallInteger(sourceStart)) {
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1565
	unsigned char *srcP = __ByteArrayInstPtr(sourceBytes)->ba_element;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1566
	unsigned char *dstP = __ByteArrayInstPtr(self)->ba_element;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1567
	int srcLen = __byteArraySize(sourceBytes);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1568
	int dstLen = __byteArraySize(self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1569
	int __srcStart = __intVal(sourceStart);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1570
	int __dstStart = __intVal(dstStart);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1571
	int count = __intVal(dstEnd) - __dstStart + 1;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1572
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1573
	if ((__dstStart >= 1)
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1574
	 && (__srcStart >= 1)
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1575
	 && ((__dstStart + count - 1) <= dstLen)
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1576
	 && ((__srcStart + count - 1) <= srcLen)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1577
	    srcP += __srcStart - 1;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1578
	    dstP += __dstStart - 1;
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1579
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1580
#define OP_LOOP_BYTES(OP) \
16621
ac0885c03e15 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16620
diff changeset
  1581
    while (count >= 4) {                                             \
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1582
	(dstP[0]) OP (srcP[0]);                                      \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1583
	(dstP[1]) OP (srcP[1]);                                      \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1584
	(dstP[2]) OP (srcP[2]);                                      \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1585
	(dstP[3]) OP (srcP[3]);                                      \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1586
	srcP += 4;                                                   \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1587
	dstP += 4;                                                   \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1588
	count -= 4;                                                  \
16621
ac0885c03e15 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16620
diff changeset
  1589
    }                                                                \
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1590
    while (count > 0) {                                              \
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1591
	*dstP OP (*srcP);                                            \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1592
	srcP++;                                                      \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1593
	dstP++;                                                      \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1594
	count--;                                                     \
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1595
    }
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1596
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1597
#define OP_LOOP(OP) \
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1598
    while (count >= 16) {                                            \
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1599
	((unsigned int *)dstP)[0] OP (((unsigned int *)srcP)[0]);    \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1600
	((unsigned int *)dstP)[1] OP (((unsigned int *)srcP)[1]);    \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1601
	((unsigned int *)dstP)[2] OP (((unsigned int *)srcP)[2]);    \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1602
	((unsigned int *)dstP)[3] OP (((unsigned int *)srcP)[3]);    \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1603
	srcP += 16;                                                  \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1604
	dstP += 16;                                                  \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1605
	count -= 16;                                                 \
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1606
    }                                                                \
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1607
    while (count >= 4) {                                             \
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1608
	((unsigned int *)dstP)[0] OP (((unsigned int *)srcP)[0]);    \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1609
	srcP += 4;                                                   \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1610
	dstP += 4;                                                   \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1611
	count -= 4;                                                  \
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1612
    }                                                                \
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1613
    while (count > 0) {                                              \
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1614
	*dstP OP (*srcP);                                            \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1615
	srcP++;                                                      \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1616
	dstP++;                                                      \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1617
	count--;                                                     \
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1618
    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1619
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1620
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1621
	    if (ruleSymbol == @symbol(bitXor:)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1622
		OP_LOOP( ^= )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1623
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1624
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1625
	    if (ruleSymbol == @symbol(bitXorNot:)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1626
		OP_LOOP( ^=~ )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1627
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1628
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1629
	    if (ruleSymbol == @symbol(bitAnd:)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1630
		OP_LOOP( &= )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1631
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1632
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1633
	    if (ruleSymbol == @symbol(bitAndNot:)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1634
		OP_LOOP( &=~ )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1635
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1636
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1637
	    if (ruleSymbol == @symbol(bitOr:)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1638
		OP_LOOP( |= )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1639
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1640
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1641
	    if (ruleSymbol == @symbol(bitOrNot:)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1642
		OP_LOOP( |=~ )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1643
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1644
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1645
	    if (ruleSymbol == @symbol(copy)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1646
		OP_LOOP( = )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1647
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1648
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1649
	    if (ruleSymbol == @symbol(copyNot)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1650
		OP_LOOP( =~ )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1651
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1652
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1653
	    if (ruleSymbol == @symbol(+)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1654
		OP_LOOP_BYTES( += )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1655
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1656
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1657
	    if (ruleSymbol == @symbol(-)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1658
		OP_LOOP_BYTES( -= )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1659
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1660
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1661
	}
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1662
    }
5549
30a2dde72cf5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5468
diff changeset
  1663
#undef OP_LOOP_BYTES
30a2dde72cf5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5468
diff changeset
  1664
#undef OP_LOOP
30a2dde72cf5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5468
diff changeset
  1665
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1666
%}.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1667
    ruleSymbol == #copy ifTrue:[
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1668
	self replaceFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart.
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1669
	^ self
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1670
    ].
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1671
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1672
    srcIdx := sourceStart.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1673
    dstStart to:dstEnd do:[:dstIdx |
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1674
	self at:dstIdx put:((self at:dstIdx) perform:ruleSymbol with:(sourceBytes at:srcIdx)).
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1675
	srcIdx := srcIdx + 1.
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1676
    ].
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1677
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1678
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1679
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1680
	bitBlitBytesFrom:1 to:3 with:#[1 2 3 4 5 6 7 8] startingAt:1 rule:#bitXor:
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1681
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1682
	bitBlitBytesFrom:1 to:8 with:#[1 2 3 4 5 6 7 8] startingAt:1 rule:#bitXor:
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1683
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1684
	bitBlitBytesFrom:1 to:8 with:#[1 1 1 1 1 1 1 1] startingAt:1 rule:#bitAnd:
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1685
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1686
	bitBlitBytesFrom:1 to:8 with:#[1 2 3 4 5 6 7 8] startingAt:1 rule:#+
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1687
     #[255 0 0 0 0 0 0 0]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1688
	bitBlitBytesFrom:1 to:8 with:#[1 2 3 4 5 6 7 8] startingAt:1 rule:#+
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1689
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1690
	bitBlitBytesFrom:1 to:4 with:#[1 1 1 1 1 1 1 1] startingAt:1 rule:#+
4924
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  1691
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1692
	bitBlitBytesFrom:1 to:4 with:#[1 1 1 1 2 2 2 2] startingAt:5 rule:#+
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1693
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1694
	bitBlitBytesFrom:1 to:4 with:#[1 1 1 1 2 2 2 2] startingAt:5 rule:#copyNot
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1695
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1696
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1697
	bitBlitBytesFrom:1 to:8 with:(1 to:8) startingAt:1 rule:#+
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1698
    "
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1699
!
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1700
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1701
bitBlitBytesFrom:dstStart to:dstEnd withConstant:sourceByte rule:ruleSymbol
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1702
    "perform a special case of an aligned bitBlit operation.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1703
     Bytes in the receiver from dstStart to dstEnd are destructively replaced by the result
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1704
     of some logical operation, as specified by the ruleSymbol.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1705
     Valid rule symbols are:
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1706
	#copy    - trivial;  same as from:to:put:
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1707
	#bitXor: - xoring;   byte[dI] = byte[dI] bitXor:sourceConst
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1708
	#bitAnd: - anding;   byte[dI] = byte[dI] bitAnd:sourceConst
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1709
	#bitOr:  - oring;    byte[dI] = byte[dI] bitOr:sourceConst
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1710
	#+       - adding;   byte[dI] = (byte[dI] + sourceConst) mod: 256
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1711
	#-       - subtract; byte[dI] = (byte[dI] - sourceConst) mod: 256
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1712
     Warning: this is a destructive operation - elements in the receiver are overwritten.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1713
    "
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1714
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1715
    |srcIdx|
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1716
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1717
%{
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1718
    if ((__qClass(self) == ByteArray)
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1719
     && __isSmallInteger(dstStart)
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1720
     && __isSmallInteger(dstEnd)
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1721
     && __isSmallInteger(sourceByte)) {
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1722
	unsigned char srcByte = __intVal(sourceByte);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1723
	unsigned srcWord;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1724
	unsigned char *dstP = __ByteArrayInstPtr(self)->ba_element;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1725
	int dstLen = __byteArraySize(self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1726
	int __dstStart = __intVal(dstStart);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1727
	int count = __intVal(dstEnd) - __dstStart + 1;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1728
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1729
	srcWord = (srcByte << 8) | srcByte;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1730
	srcWord = (srcWord << 16) | srcWord;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1731
	if ((__dstStart >= 1)
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1732
	 && ((__dstStart + count - 1) <= dstLen)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1733
	    dstP += __dstStart - 1;
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1734
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1735
#define OP_LOOP_BYTES(OP) \
16620
9db0a09c71c0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 15625
diff changeset
  1736
    while (count >= 4) {                         \
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1737
	dstP[0] OP srcByte;                      \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1738
	dstP[1] OP srcByte;                      \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1739
	dstP[2] OP srcByte;                      \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1740
	dstP[3] OP srcByte;                      \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1741
	dstP += 4;                               \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1742
	count -= 4;                              \
16620
9db0a09c71c0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 15625
diff changeset
  1743
    }                                            \
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1744
    while (count > 0) {                          \
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1745
	*dstP OP srcByte;                        \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1746
	dstP++;                                  \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1747
	count--;                                 \
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1748
    }
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1749
16620
9db0a09c71c0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 15625
diff changeset
  1750
#define OP_LOOP_INT32(OP) \
9db0a09c71c0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 15625
diff changeset
  1751
    while (count >= 16) {                        \
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1752
	((unsigned int *)dstP)[0] OP srcWord;    \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1753
	((unsigned int *)dstP)[1] OP srcWord;    \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1754
	((unsigned int *)dstP)[2] OP srcWord;    \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1755
	((unsigned int *)dstP)[3] OP srcWord;    \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1756
	dstP += 16;                              \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1757
	count -= 16;                             \
16620
9db0a09c71c0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 15625
diff changeset
  1758
    }                                            \
9db0a09c71c0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 15625
diff changeset
  1759
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1760
#define OP_LOOP(OP) \
16620
9db0a09c71c0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 15625
diff changeset
  1761
    OP_LOOP_INT32(OP)                            \
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1762
    while (count >= 4) {                         \
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1763
	((unsigned int *)dstP)[0] OP srcWord;    \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1764
	dstP += 4;                               \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1765
	count -= 4;                              \
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1766
    }                                            \
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1767
    while (count > 0) {                          \
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1768
	*dstP OP srcByte;                        \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1769
	dstP++;                                  \
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1770
	count--;                                 \
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1771
    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1772
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1773
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1774
	    if (ruleSymbol == @symbol(bitXor:)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1775
		OP_LOOP( ^= )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1776
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1777
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1778
	    if (ruleSymbol == @symbol(bitXorNot:)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1779
		OP_LOOP( ^=~ )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1780
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1781
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1782
	    if (ruleSymbol == @symbol(bitAnd:)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1783
		OP_LOOP( &= )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1784
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1785
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1786
	    if (ruleSymbol == @symbol(bitAndNot:)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1787
		OP_LOOP( &=~ )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1788
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1789
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1790
	    if (ruleSymbol == @symbol(bitOr:)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1791
		OP_LOOP( |= )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1792
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1793
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1794
	    if (ruleSymbol == @symbol(bitOrNot:)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1795
		OP_LOOP( |=~ )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1796
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1797
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1798
	    if (ruleSymbol == @symbol(copy)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1799
		OP_LOOP( = )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1800
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1801
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1802
	    if (ruleSymbol == @symbol(copyNot)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1803
		OP_LOOP( =~ )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1804
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1805
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1806
	    if (ruleSymbol == @symbol(+)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1807
		OP_LOOP_BYTES( += )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1808
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1809
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1810
	    if (ruleSymbol == @symbol(-)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1811
		OP_LOOP_BYTES( -= )
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1812
		RETURN (self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1813
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1814
	}
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1815
    }
5549
30a2dde72cf5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5468
diff changeset
  1816
#undef OP_LOOP_BYTES
30a2dde72cf5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5468
diff changeset
  1817
#undef OP_LOOP
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1818
%}.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1819
    ruleSymbol == #copy ifTrue:[
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1820
	self from:dstStart to:dstEnd put:sourceByte.
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1821
	^ self
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1822
    ].
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1823
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1824
    dstStart to:dstEnd do:[:dstIdx |
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1825
	self at:dstIdx put:((self at:dstIdx) perform:ruleSymbol with:sourceByte).
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1826
    ].
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1827
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1828
    "
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1829
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1830
	bitBlitBytesFrom:1 to:3 withConstant:1 rule:#bitXor:
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1831
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1832
	bitBlitBytesFrom:1 to:8 withConstant:1 rule:#bitXor:
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1833
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1834
	bitBlitBytesFrom:1 to:8 withConstant:1 rule:#bitAnd:
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1835
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1836
	bitBlitBytesFrom:1 to:8 withConstant:1 rule:#+
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1837
     #[255 0 0 0 0 0 0 0]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1838
	bitBlitBytesFrom:1 to:8 withConstant:1 rule:#+
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1839
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1840
	bitBlitBytesFrom:1 to:4 withConstant:1 rule:#+
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1841
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1842
	bitBlitBytesFrom:1 to:4 withConstant:1 rule:#-
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1843
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1844
	bitBlitBytesFrom:1 to:4 withConstant:1 rule:#copyNot
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1845
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1846
     #[1 2 3 4 5 6 7 8]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  1847
	bitBlitBytesFrom:1 to:8 withConstant:1 rule:#+
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1848
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1849
!
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1850
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1851
bitOrBytesFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1852
    "replace bytes in the receiver with the result of a bitOr operation.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1853
     Warning: this is a destructive operation - elements in the receiver are overwritten."
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1854
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1855
    ^ self bitBlitBytesFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart rule:#bitOr:
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1856
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1857
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1858
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1859
	bitOrBytesFrom:1 to:8 with:#[1 2 3 4 5 6 7 8] startingAt:1
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1860
     #[1 2 3 4 5 6 7 8]
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1861
	bitOrBytesFrom:1 to:8 with:#[1 1 1 1 1 1 1 1] startingAt:1
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1862
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1863
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1864
!
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1865
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1866
bitXorBytesFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1867
    "replace bytes in the receiver with the result of an bitXor operation.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1868
     Warning: this is a destructive operation - elements in the receiver are overwritten."
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1869
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1870
    ^ self bitBlitBytesFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart rule:#bitXor:
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1871
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1872
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1873
     #[1 2 3 4 5 6 7 8]
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1874
	bitXorBytesFrom:1 to:3 with:#[1 2 3 4 5 6 7 8] startingAt:1
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1875
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1876
	bitXorBytesFrom:1 to:8 with:#[1 2 3 4 5 6 7 8] startingAt:1
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1877
     #[1 2 3 4 5 6 7 8]
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1878
	bitXorBytesFrom:1 to:8 with:#[1 1 1 1 1 1 1 1] startingAt:1
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1879
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1880
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1881
!
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1882
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  1883
compressPixels:nBitsPerPixel width:width height:height into:aByteArray mapping:aMapByteArray
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1884
    "given the receiver with 8-bit pixels, compress them into aByteArray
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1885
     with nBitsPerPixel-depth pixels. The width/height-arguments are needed
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1886
     to allow for any padding. On the fly, the source bytes are translated
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1887
     using aMapByteArray (if non-nil).
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1888
     Notice that smalltalk indexing begins at 1; thus the map-index for a byte
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1889
     value of n is found in map at:(n + 1).
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1890
     Output bits are filled left-to right, i.e. the first byte in the input
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1891
     corresponds to the high bit(s) if the first byte in the input.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1892
     This method can be used to convert 8-bit image data to mono, 2-bit and 4-bit
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1893
     bitmaps.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1894
     It can also be used to compress byte-arrays into bitArrays."
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1895
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1896
%{  /* NOCONTEXT */
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1897
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1898
    REGISTER unsigned char *src, *dst;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1899
    REGISTER int wrun;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1900
    unsigned char *dstNext;
1472
abaa73dc0e9a check for destination overrun
Claus Gittinger <cg@exept.de>
parents: 1459
diff changeset
  1901
    unsigned char *dstEnd;
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1902
    int bytesPerRow, mask, shift0, shift;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1903
    int w, h, hrun;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1904
    int srcBytes, dstBytes;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1905
    int bitsPerPixel;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1906
    int bits;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1907
    int ncells;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1908
    unsigned char *map;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1909
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1910
    if ((__qClass(self) == @global(ByteArray))
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  1911
     && (__qClass(aByteArray) == @global(ByteArray))
249
claus
parents: 221
diff changeset
  1912
     && __isSmallInteger(nBitsPerPixel)
claus
parents: 221
diff changeset
  1913
     && __bothSmallInteger(height, width)) {
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1914
	if ((aMapByteArray != nil)
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1915
	 && (__Class(aMapByteArray) == @global(ByteArray))) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1916
	    map = __ByteArrayInstPtr(aMapByteArray)->ba_element;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1917
	} else {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1918
	    map = (unsigned char *)0;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1919
	}
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1920
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1921
	bitsPerPixel = __intVal(nBitsPerPixel);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1922
	w = __intVal(width);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1923
	h = __intVal(height);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1924
	src = __ByteArrayInstPtr(self)->ba_element;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1925
	dst = __ByteArrayInstPtr(aByteArray)->ba_element;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1926
	dstEnd = dst + __byteArraySize(aByteArray);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1927
	switch (bitsPerPixel) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1928
	    case 1:
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1929
		mask = 0x01;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1930
		break;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1931
	    case 2:
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1932
		mask = 0x03;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1933
		break;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1934
	    case 4:
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1935
		mask = 0x0F;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1936
		break;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1937
	    case 8:
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1938
		mask = 0xFF;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1939
		break;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1940
	    default:
13703
Claus Gittinger <cg@exept.de>
parents: 13219
diff changeset
  1941
		console_printf("invalid depth in compressPixels\n");
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1942
		goto fail;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1943
	}
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1944
	if (map) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1945
	    /*
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1946
	     * if a map is present, it must have entries for
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1947
	     * all possible byte-values (i.e. its size must be >= 256)
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1948
	     */
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1949
	    if ((__qSize(aMapByteArray) - OHDR_SIZE) < 256) {
13703
Claus Gittinger <cg@exept.de>
parents: 13219
diff changeset
  1950
		console_printf("invalid map in compressPixels\n");
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1951
		goto fail;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1952
	    }
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1953
	}
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1954
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1955
	bytesPerRow = (w * bitsPerPixel + 7) / 8;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1956
	dstBytes = bytesPerRow * h;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1957
	srcBytes = w * h;
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  1958
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1959
	if ((__byteArraySize(self) >= srcBytes)
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1960
	 && (__byteArraySize(aByteArray) >= dstBytes)) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1961
	    for (hrun=h; hrun; hrun--) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1962
		dstNext = dst + bytesPerRow;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1963
		bits = 0; shift = 8;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1964
		if (map) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1965
		    for (wrun=w; wrun; wrun--) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1966
			bits = (bits << bitsPerPixel) | (map[*src++] & mask);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1967
			shift -= bitsPerPixel;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1968
			if (shift == 0) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1969
			    if (dst == dstEnd) goto fail;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1970
			    *dst++ = bits;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1971
			    bits = 0; shift = 8;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1972
			}
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1973
		    }
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1974
		} else {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1975
		    for (wrun=w; wrun; wrun--) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1976
			bits = (bits << bitsPerPixel) | (*src++ & mask);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1977
			shift -= bitsPerPixel;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1978
			if (shift == 0) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1979
			    if (dst == dstEnd) goto fail;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1980
			    *dst++ = bits;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1981
			    bits = 0; shift = 8;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1982
			}
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1983
		    }
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1984
		}
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1985
		if (shift != 8) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1986
		    if (dst == dstEnd) goto fail;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1987
		    *dst = bits;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1988
		}
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1989
		dst = dstNext;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1990
	    }
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1991
	    RETURN ( self );
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  1992
	}
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1993
    }
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1994
fail: ;
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  1995
%}.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1996
    self primitiveFailed
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1997
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1998
    "Example1:
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1999
     compress 1 byte-per-pixel bitmap to 1-bit-per-pixel bitmap
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2000
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2001
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2002
     |inBits outBits|
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2003
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2004
     inBits := #[0 0 0 0 1 1 1 1
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2005
		 0 0 1 1 0 0 1 1
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2006
		 0 1 0 1 0 1 0 1
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2007
		 1 1 1 1 0 0 0 0].
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2008
     outBits := ByteArray new:4.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2009
     inBits compressPixels:1 width:8 height:4
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2010
		    into:outBits mapping:nil.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2011
     outBits inspect
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2012
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2013
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2014
    "Example2:
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2015
     compress byte-array into a bitArray, translating 99 to 0-bits,
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2016
     and 176 to 1-bits. (just a stupid example)
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2017
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2018
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2019
     |inBits outBits map|
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2020
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2021
     inBits := #[176 176 176 176 99 99 99 99 176 176 99 99 176 99 176 99].
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2022
     map := ByteArray new:256.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2023
     map at:176+1 put:1.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2024
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2025
     outBits := ByteArray new:2.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2026
     inBits compressPixels:1 width:16 height:1
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2027
		    into:outBits mapping:map.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2028
     outBits inspect
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2029
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2030
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2031
    "Example3:
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2032
     compress byte-array into a bitArray, translating everything below 128 to 0-bits,
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2033
     and 128 to 255 to 1-bits.99 to 0-bits (another stupid example)
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2034
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2035
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2036
     |inBits outBits map|
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2037
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2038
     inBits := #[176 176 176 176 99 99 99 99 176 176 99 99 176 99 176 99].
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2039
     map := ByteArray new:256.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2040
     map atAll:(128+1 to:255+1) put:1.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2041
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2042
     outBits := ByteArray new:2.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2043
     inBits compressPixels:1 width:16 height:1
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2044
		    into:outBits mapping:map.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2045
     outBits inspect
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2046
    "
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2047
!
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2048
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2049
expandPixels:nBitsPerPixel width:width height:height into:aByteArray mapping:aMapByteArray
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2050
    "given the receiver with nBitsPerPixel-depth pixels, expand them into
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2051
     aByteArray with 8-bit pixels. The width/height-arguments are needed
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2052
     to skip any padded src-bits. On the fly, the destination pixels
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2053
     are translated using aMapByteArray (if non-nil).
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2054
     Input bits are read left-to right, i.e. the first byte in the output
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2055
     corresponds to the high bit(s) in the inputs first byte.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2056
     This is used to display mono, 2-bit and 4-bit bitmaps on grey-scale/color
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2057
     machines. With nBitsPerPixel==8, this is a translate operation.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2058
     Notice that smalltalk indexing begins at 1; thus the map-index for a byte
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2059
     value of n is found in map at:(n + 1).
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2060
     It can also be used to expand bit-arrays into byteArrays.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2061
     This method is specialized for ByteArray arguments - it will not handle
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2062
     anything else."
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2063
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2064
%{  /* NOCONTEXT */
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2065
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2066
    REGISTER unsigned char *src, *dst;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2067
    REGISTER int wrun;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2068
    unsigned char *srcNext;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2069
    int bytesPerRow, mask, shift0, shift;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2070
    int w, h, hrun;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2071
    int srcBytes, dstBytes;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2072
    int bitsPerPixel;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2073
    int bits;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2074
    int ncells;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2075
    unsigned char *map;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2076
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2077
    if ((__qClass(self) == @global(ByteArray))
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  2078
     && (__qClass(aByteArray) == @global(ByteArray))
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2079
     && __isSmallInteger(nBitsPerPixel)
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2080
     && __bothSmallInteger(height, width)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2081
	if ((aMapByteArray != nil)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2082
	 && (__Class(aMapByteArray) == @global(ByteArray))) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2083
	    map = __ByteArrayInstPtr(aMapByteArray)->ba_element;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2084
	} else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2085
	    map = (unsigned char *)0;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2086
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2087
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2088
	bitsPerPixel = __intVal(nBitsPerPixel);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2089
	w = __intVal(width);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2090
	h = __intVal(height);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2091
	src = __ByteArrayInstPtr(self)->ba_element;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2092
	dst = __ByteArrayInstPtr(aByteArray)->ba_element;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2093
	switch (bitsPerPixel) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2094
	    case 1:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2095
		mask = 0x01;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2096
		break;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2097
	    case 2:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2098
		mask = 0x03;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2099
		break;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2100
	    case 4:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2101
		mask = 0x0F;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2102
		break;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2103
	    case 8:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2104
		mask = 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2105
		break;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2106
	    default:
13703
Claus Gittinger <cg@exept.de>
parents: 13219
diff changeset
  2107
		console_printf("expandPixels: invalid depth\n");
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2108
		goto fail;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2109
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2110
	ncells = mask + 1;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2111
	if (map) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2112
	    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2113
	     * if a map is present, it must have the correct size
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2114
	     * (i.e. 2 raisedTo:nBitsPerPixel)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2115
	     */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2116
	    if ((__qSize(aMapByteArray) - OHDR_SIZE) < ncells) {
13703
Claus Gittinger <cg@exept.de>
parents: 13219
diff changeset
  2117
		console_printf("expandPixels: invalid map\n");
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2118
		goto fail;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2119
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2120
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2121
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2122
	bytesPerRow = (w * bitsPerPixel + 7) / 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2123
	shift0 = 8 - bitsPerPixel;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2124
	srcBytes = bytesPerRow * h;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2125
	dstBytes = w * h;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2126
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2127
	if ((__byteArraySize(self) >= srcBytes)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2128
	 && (__byteArraySize(aByteArray) >= dstBytes)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2129
	    for (hrun=h; hrun; hrun--) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2130
		srcNext = src + bytesPerRow;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2131
		shift = shift0;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2132
		if (map) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2133
		    if (shift0 == 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2134
			/* translate only */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2135
			for (wrun=w; wrun; wrun--) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2136
			    bits = *src++;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2137
			    *dst++ = map[bits];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2138
			}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2139
		    } else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2140
			for (wrun=w; wrun; wrun--) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2141
			    if (shift == shift0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2142
				bits = *src++;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2143
			    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2144
			    *dst++ = map[(bits >> shift) & mask];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2145
			    shift -= bitsPerPixel;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2146
			    if (shift < 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2147
				shift = shift0;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2148
			    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2149
			}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2150
		    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2151
		} else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2152
		    for (wrun=w; wrun; wrun--) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2153
			if (shift == shift0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2154
			    bits = *src++;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2155
			}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2156
			*dst++ = (bits >> shift) & mask;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2157
			shift -= bitsPerPixel;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2158
			if (shift < 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2159
			    shift = shift0;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2160
			}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2161
		    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2162
		}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2163
		src = srcNext;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2164
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2165
	    RETURN ( self );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2166
	}
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2167
	console_printf("expandPixels: buffer size: self:%"_ld_" expect at least:%"_ld_"\n",
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2168
		(INT)(__byteArraySize(self)), (INT)srcBytes);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2169
	console_printf("expandPixels: buffer size: arg:%"_ld_" expect at least:%"_ld_"\n",
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2170
		(INT)(__byteArraySize(aByteArray)), (INT)dstBytes);
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2171
    }
13703
Claus Gittinger <cg@exept.de>
parents: 13219
diff changeset
  2172
    console_printf("expandPixels: invalid args\n");
1527
af119b16aa16 better handle the translate-only case in #expandPixels:
ca
parents: 1505
diff changeset
  2173
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2174
fail: ;
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2175
%}.
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2176
    self primitiveFailed
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2177
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2178
    "Example1:
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2179
     expand 1-bit-per-pixel bitmap into a 1byte-per-pixel byteArray
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2180
    "
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2181
    "
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2182
     |inBits outBits|
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2183
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2184
     inBits := #[2r11110000
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2185
		 2r11001100
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2186
		 2r01010101
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2187
		 2r00001111].
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2188
     outBits := ByteArray new:(8*4).
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2189
     inBits expandPixels:1 width:8 height:4
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2190
		    into:outBits mapping:nil.
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2191
     outBits inspect
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2192
    "
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2193
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2194
    "Example2:
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2195
     expand bit-array into a byteArray, translating 0-bits to 99,
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2196
     1-bits to 176. (just a stupid example)
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2197
    "
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2198
    "
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2199
     |inBits outBits|
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2200
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2201
     inBits := #[2r11110000 2r11001100].
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2202
     outBits := ByteArray new:16.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2203
     inBits expandPixels:1 width:16 height:1
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2204
		    into:outBits mapping:#[99 176].
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2205
     outBits inspect
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2206
    "
4978
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2207
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2208
    "This Can also be used to extract nibbles ..."
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2209
    "
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2210
     |inBits outBits|
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2211
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2212
     inBits := #[ 16r12 16r34 16r56 16r78 16r9A 16rBC 16rDE 16rF0 ].
4978
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2213
     outBits := ByteArray new:(inBits size * 2).
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2214
     inBits expandPixels:4 width:outBits size height:1 into:outBits mapping:nil.
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2215
     outBits inspect
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2216
    "
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2217
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2218
!
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2219
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2220
invert
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2221
    "invert all bytes - used with image manipulations
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2222
     written as a primitive for speed.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2223
     Q: is this really needed ?"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2224
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2225
%{  /* NOCONTEXT */
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2226
    REGISTER unsigned char *dst;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2227
    REGISTER unsigned long *ldst;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2228
    REGISTER int cnt;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2229
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  2230
    if (__qClass(self) == @global(ByteArray)) {
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2231
	cnt = __byteArraySize(self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2232
	dst = __ByteArrayInstPtr(self)->ba_element;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2233
	if (((INT)dst & (sizeof(long)-1)) == 0) { // aligned
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2234
	    ldst = (unsigned long *)dst;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2235
	    while (cnt >= (sizeof(long))*4) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2236
		ldst[0] = ~(ldst[0]);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2237
		ldst[1] = ~(ldst[1]);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2238
		ldst[2] = ~(ldst[2]);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2239
		ldst[3] = ~(ldst[3]);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2240
		ldst += 4;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2241
		cnt -= (sizeof(long))*4;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2242
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2243
	    while (cnt >= sizeof(long)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2244
		*ldst = ~(*ldst);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2245
		ldst++;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2246
		cnt -= sizeof(long);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2247
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2248
	    dst = (unsigned char *)ldst;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2249
	}
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2250
	while (cnt--) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2251
	    *dst = ~(*dst);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2252
	    dst++;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2253
	}
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2254
	RETURN ( self );
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2255
    }
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2256
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  2257
    self bitBlitBytesFrom:1 to:self size withConstant:16rFF rule:#bitXor:
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2258
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2259
    "
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2260
     #[1 2 3 4 5 6 7 8 9 10] copy invert
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2261
     #[1 2 3 4 5 6 7 8 9 10] copy
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2262
	bitBlitBytesFrom:1 to:10 withConstant:16rFF rule:#bitXor:
16621
ac0885c03e15 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16620
diff changeset
  2263
ac0885c03e15 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16620
diff changeset
  2264
     |l|
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2265
     l := ByteArray fromHexString:'0102030405060708090a0b0c0d0e0f1112131415161718191a1b1c1d1e1f'.
16621
ac0885c03e15 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16620
diff changeset
  2266
     Time millisecondsToRun:[
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2267
	1000000 timesRepeat:[ l invert ].
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2268
     ]
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2269
    "
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2270
!
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2271
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2272
reverse
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2273
    "reverse the order of my elements inplace -
7338
7a1a2514b6aa comment
Claus Gittinger <cg@exept.de>
parents: 7245
diff changeset
  2274
     WARNING: this is a destructive operation, which modifies the receiver.
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2275
	      Please use reversed (with a d) for a functional version.
7338
7a1a2514b6aa comment
Claus Gittinger <cg@exept.de>
parents: 7245
diff changeset
  2276
     Written as a primitive for speed on image manipulations (mirror)"
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2277
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2278
%{  /* NOCONTEXT */
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2279
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2280
    REGISTER unsigned char *p1, *p2;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2281
    REGISTER int cnt;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2282
    REGISTER unsigned t;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2283
    OBJ cls;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2284
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  2285
    if (__qClass(self) == @global(ByteArray)) {
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2286
	cnt = __byteArraySize(self);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2287
	p1 = __ByteArrayInstPtr(self)->ba_element;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2288
	p2 = p1 + cnt - 1;
4924
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2289
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2290
#if defined(__BSWAP)
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2291
	/*
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2292
	 * can we use the bswap instruction ?
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2293
	 * notice - not all CPUs have it (the HAS_BSWAP checks this).
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2294
	 */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2295
	if (__HAS_BSWAP()
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2296
	 && ((cnt & 3) == 0)) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2297
	    unsigned int *ip1, *ip2;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2298
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2299
	    ip1 = (unsigned int *)p1;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2300
	    ip2 = (unsigned int *)(p2 - 3);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2301
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2302
	    ip2 -= 7;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2303
	    while (ip1 <= ip2) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2304
		int t1, t2;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2305
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2306
		t1 = ip1[0];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2307
		t2 = ip2[7];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2308
		ip2[7] = __BSWAP(t1);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2309
		ip1[0] = __BSWAP(t2);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2310
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2311
		t1 = ip1[1];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2312
		t2 = ip2[6];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2313
		ip2[6] = __BSWAP(t1);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2314
		ip1[1] = __BSWAP(t2);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2315
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2316
		t1 = ip1[2];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2317
		t2 = ip2[5];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2318
		ip2[5] = __BSWAP(t1);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2319
		ip1[2] = __BSWAP(t2);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2320
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2321
		t1 = ip1[3];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2322
		t2 = ip2[4];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2323
		ip2[4] = __BSWAP(t1);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2324
		ip1[3] = __BSWAP(t2);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2325
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2326
		ip1 += 4;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2327
		ip2 -= 4;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2328
	    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2329
	    ip2 += 7;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2330
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2331
	    while (ip1 < ip2) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2332
		int t;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2333
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2334
		t = __BSWAP(*ip1);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2335
		*ip1++ = __BSWAP(*ip2);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2336
		*ip2-- = t;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2337
	    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2338
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2339
	    if (ip1 == ip2) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2340
		int t;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2341
		t = *ip1;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2342
		t = __BSWAP(t);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2343
		*ip1 = t;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2344
	    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2345
	    RETURN ( self );
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2346
	}
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
  2347
#endif /* __i386__ && __GNUC__ */
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2348
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2349
	p2 -= 7;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2350
	while (p1 <= p2) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2351
	    t = p1[0];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2352
	    p1[0] = p2[7];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2353
	    p2[7] = t;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2354
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2355
	    t = p1[1];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2356
	    p1[1] = p2[6];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2357
	    p2[6] = t;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2358
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2359
	    t = p1[2];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2360
	    p1[2] = p2[5];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2361
	    p2[5] = t;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2362
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2363
	    t = p1[3];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2364
	    p1[3] = p2[4];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2365
	    p2[4] = t;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2366
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2367
	    p1 += 4;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2368
	    p2 -= 4;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2369
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2370
	p2 += 7;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2371
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2372
	while (p1 < p2) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2373
	    t = *p1;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2374
	    *p1++ = *p2;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2375
	    *p2-- = t;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2376
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2377
	RETURN ( self );
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2378
    }
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2379
%}.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2380
    ^ super reverse
2585
6c25622320aa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  2381
6c25622320aa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  2382
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2383
     #[1 2 3 4 5] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2384
     #[1 2 3 4] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2385
     #[1 2 3 4 5] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2386
     #[1 2 3 4 5 6] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2387
     #[1 2 3 4 5 6 7] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2388
     #[1 2 3 4 5 6 7 8] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2389
     #[1 2 3 4 5 6 7 8 9] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2390
     #[1 2 3 4 5 6 7 8 9 10] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2391
     #[1 2 3 4 5 6 7 8 9 10 11 12] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2392
     #[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2393
     #[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2394
     (1 to:255) asByteArray reverse
4924
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2395
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2396
     1 to:1024 do:[:i|
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2397
	|bytes test rBytes|
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2398
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2399
	bytes := ((1 to:i) asArray collect:[:i | i bitAnd:255]) asByteArray.
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2400
	test := ((i to:1 by:-1) asArray collect:[:i | i bitAnd:255]) asByteArray.
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2401
	rBytes := bytes copy.
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2402
	rBytes reverse ~= test ifTrue:[
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2403
	    self halt
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2404
	].
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2405
	rBytes := bytes copy.
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2406
	rBytes reverse reverse ~= bytes ifTrue:[
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2407
	    self halt
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2408
	]
4924
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2409
     ].
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2410
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2411
     Time millisecondsToRun:[
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2412
	10000000 timesRepeat:[
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2413
	    #[1 2 3 4 5 6 7 8] reverse
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2414
	]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2415
     ]
4924
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2416
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2417
     |b|
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2418
     b := (0 to:255) asByteArray.
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2419
     Time millisecondsToRun:[
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2420
	10000000 timesRepeat:[
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2421
	    b reverse
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2422
	]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2423
     ]
2585
6c25622320aa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  2424
    "
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2425
!
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2426
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2427
swapBytes
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2428
    "swap bytes inplace -
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2429
     Expects that the receiver has an even number of bytes;
15274
58d5c0f8d906 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 14382
diff changeset
  2430
     if not, only the pairs excluding the last byte are swapped.
58d5c0f8d906 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 14382
diff changeset
  2431
     written as a primitive for speed on image grabbing (if display order is different)."
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2432
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2433
%{  /* NOCONTEXT */
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2434
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2435
    REGISTER unsigned char *p;
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2436
    REGISTER int cnt;
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2437
    REGISTER unsigned t;
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2438
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  2439
    if (__qClass(self) == @global(ByteArray)) {
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2440
	cnt = __byteArraySize(self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2441
	cnt = cnt & ~1; /* make it even */
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2442
	p = __ByteArrayInstPtr(self)->ba_element;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2443
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2444
	while (cnt >= sizeof(INT)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2445
	    unsigned INT i = ((unsigned INT *)p)[0];
15274
58d5c0f8d906 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 14382
diff changeset
  2446
58d5c0f8d906 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 14382
diff changeset
  2447
#if __POINTER_SIZE__ == 8
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2448
	    i = ((i>>8) & 0x00FF00FF00FF00FF) | ((i & 0x00FF00FF00FF00FF) << 8);
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
  2449
#else
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2450
	    i = ((i>>8) & 0x00FF00FF) | ((i & 0x00FF00FF) << 8);
15274
58d5c0f8d906 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 14382
diff changeset
  2451
#endif /* __POINTER_SIZE__ */
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2452
	    ((unsigned INT *)p)[0] = i;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2453
	    p += sizeof(INT);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2454
	    cnt -= sizeof(INT);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2455
	}
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2456
	while (cnt > 0) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2457
	    unsigned short s;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2458
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2459
	    s = ((unsigned short *)p)[0];
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2460
	    s = (s >> 8) | (s << 8);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2461
	    ((unsigned short *)p)[0] = s;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2462
	    p += 2;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2463
	    cnt -= 2;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2464
	}
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2465
	RETURN ( self );
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2466
    }
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2467
%}.
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2468
    ^ super swapBytes "/ rubbish - there is no one currenly
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2469
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2470
    "
15274
58d5c0f8d906 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 14382
diff changeset
  2471
     #[1 2 3 4 5 6 7 8 9 10] copy swapBytes     -> #[2 1 4 3 6 5 8 7 10 9]
58d5c0f8d906 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 14382
diff changeset
  2472
     #[1 2 3 4 5 6 7 8 9 10 11] copy swapBytes  -> #[2 1 4 3 6 5 8 7 10 9 11]
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2473
     #[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18] copy swapBytes
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2474
    "
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2475
!
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2476
4983
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2477
swapIndex:i1 and:i2
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2478
   "spap the bytes with i1 and i2"
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2479
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2480
%{  /* NOCONTEXT */
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2481
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2482
    REGISTER unsigned char *p;
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2483
    unsigned int __i1, __i2;
15330
6e9281a08730 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 15324
diff changeset
  2484
    int sz;
4983
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2485
    unsigned int t;
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2486
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2487
    if (__qClass(self) == @global(ByteArray) && __bothSmallInteger(i1, i2)) {
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2488
	__i1 = __intVal(i1) - 1;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2489
	__i2 = __intVal(i2) - 1;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2490
	sz = __byteArraySize(self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2491
	p = __ByteArrayInstPtr(self)->ba_element;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2492
	if (__i1 < sz && __i2 < sz) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2493
	    t = p[__i1];
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2494
	    p[__i1] = p[__i2];
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2495
	    p[__i2] = t;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2496
	}
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2497
	RETURN ( self );
4983
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2498
    }
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2499
%}.
11265
dd57cc0a379b comment
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  2500
    ^ super swapIndex:i1 and:i2 "/ rubbish - there is no one currently
4983
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2501
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2502
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2503
     #[1 2 3 4 5 6 7 8 9 10] copy swapIndex:1 and:10
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2504
     #[1 2 3 4 5 6 7 8 9 10 11] copy swapIndex:5 and:6
4983
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2505
    "
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2506
!
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2507
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2508
swapLongs
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2509
    "swap long bytes inplace
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2510
     - any partial longs at the end are not swapped."
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2511
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2512
    self swapLongsFrom:1 to:self size
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2513
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2514
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2515
     #[1 2 3 4 5 6 7 8 9] copy swapLongs
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2516
     #[1 2 3 4 5 6 7 8 9 10] copy swapLongs
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2517
     #[1 2 3 4 5 6 7 8 9 10 11] copy swapLongs
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2518
     #[1 2 3 4 5 6 7 8 9 10 11 12] copy swapLongs
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2519
    "
4365
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2520
!
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2521
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2522
swapLongsFrom:startIndex to:endIndex
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2523
    "swap longs inplace
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2524
     - any partial longs at the end are not swapped.
4367
3d481db099ec oops - swapLongsFrom:to: was wrong
Claus Gittinger <cg@exept.de>
parents: 4365
diff changeset
  2525
     Swapping is from startIndex to (exclusiv) endIndex;
3d481db099ec oops - swapLongsFrom:to: was wrong
Claus Gittinger <cg@exept.de>
parents: 4365
diff changeset
  2526
     indexing starts at 1."
4365
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2527
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2528
%{  /* NOCONTEXT */
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2529
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2530
    REGISTER unsigned char *p;
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2531
    REGISTER int limit;
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2532
    REGISTER unsigned t;
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2533
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2534
    if ((__qClass(self) == @global(ByteArray))
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2535
     && __isSmallInteger(startIndex)
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2536
     && __isSmallInteger(endIndex)) {
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2537
	int __idx = __intVal(startIndex);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2538
	int __endIdx = __intVal(endIndex);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2539
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2540
	limit = __byteArraySize(self);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2541
	if (__endIdx < limit) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2542
	    limit = __endIdx;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2543
	}
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2544
	p = __ByteArrayInstPtr(self)->ba_element;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2545
	p = p + __idx - 1;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2546
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2547
	limit = limit - 4 + 1;
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2548
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2549
#if defined(__BSWAP)
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2550
	/*
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2551
	 * can we use the bswap instruction ?
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2552
	 * notice - not all CPUs have it (the HAS_BSWAP checks this).
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2553
	 */
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2554
	if (__HAS_BSWAP()
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2555
	 && (((unsigned int)p & 3) == 0)) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2556
	    unsigned int *ip;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2557
	    ip = (unsigned int *)p;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2558
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2559
	    while (__idx <= limit) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2560
		*ip = __BSWAP(*ip);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2561
		ip++;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2562
		__idx += 4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2563
	    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2564
	    RETURN (self);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2565
	}
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2566
#endif /* __BSWAP */
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2567
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2568
	while (__idx <= limit) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2569
	    t = p[0];
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2570
	    p[0] = p[3];
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2571
	    p[3] = t;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2572
	    t = p[1];
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2573
	    p[1] = p[2];
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2574
	    p[2] = t;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2575
	    p += 4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2576
	    __idx += 4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2577
	}
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2578
	RETURN ( self );
4365
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2579
    }
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2580
%}.
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2581
    ^ super swapLongsFrom:startIndex to:endIndex "/ rubbish - there is no one currenly
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2582
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2583
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2584
     #[1 2 3 4 5 6 7 8 9] copy swapLongsFrom:1 to:3
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2585
     #[1 2 3 4 5 6 7 8 9] copy swapLongsFrom:1 to:4
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2586
     #[1 2 3 4 5 6 7 8 9] copy swapLongsFrom:1 to:5
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2587
     #[1 2 3 4 5 6 7 8 9] copy swapLongsFrom:1 to:6
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2588
     #[1 2 3 4 5 6 7 8 9] copy swapLongsFrom:1 to:7
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2589
     #[1 2 3 4 5 6 7 8 9] copy swapLongsFrom:1 to:8
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2590
     #[1 2 3 4 5 6 7 8 9 10] copy swapLongsFrom:1 to:11
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2591
     #[1 2 3 4 5 6 7 8 9 10 11] copy swapLongsFrom:1 to:12
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2592
     #[1 2 3 4 5 6 7 8 9 10 11 12] copy swapLongsFrom:1 to:13
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2593
     #[1 2 3 4 5 6 7 8 9] copy swapLongsFrom:5 to:10
4365
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2594
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2595
! !
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2596
10028
f43a291eabd6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9659
diff changeset
  2597
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2598
!ByteArray methodsFor:'printing & storing'!
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2599
13078
7934a86b395b Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 12932
diff changeset
  2600
displayOn:aGCOrStream
1244
dc9dd731258c commentary
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
  2601
    "return a printed representation of the receiver for displaying"
dc9dd731258c commentary
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
  2602
17535
44798ad63741 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 17433
diff changeset
  2603
    "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
44798ad63741 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 17433
diff changeset
  2604
    "/ ST/X (and some old ST80's) mean: draw-yourself on a GC.
18596
d6abf6a67de4 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 18584
diff changeset
  2605
    |cls|
d6abf6a67de4 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 18584
diff changeset
  2606
d6abf6a67de4 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 18584
diff changeset
  2607
    cls := self class.
d6abf6a67de4 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 18584
diff changeset
  2608
    ((cls == ByteArray or:[cls == ImmutableByteArray]) and:[aGCOrStream isStream]) ifTrue:[
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2609
	self storeOn:aGCOrStream.
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2610
	^ self
6513
d7bc1d1dab4b displayString fix for subclasses
Claus Gittinger <cg@exept.de>
parents: 6125
diff changeset
  2611
    ].
13078
7934a86b395b Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 12932
diff changeset
  2612
    ^ super displayOn:aGCOrStream
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2613
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2614
    "Created: 25.10.1995 / 13:33:26 / cg"
1244
dc9dd731258c commentary
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
  2615
    "Modified: 22.4.1996 / 12:54:06 / cg"
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2616
!
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2617
5019
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2618
printOn:aStream
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2619
    "append a printed representation to aStream"
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2620
12487
d0c7ee0b0fb4 more immutability stuff
Claus Gittinger <cg@exept.de>
parents: 12466
diff changeset
  2621
    |cls|
d0c7ee0b0fb4 more immutability stuff
Claus Gittinger <cg@exept.de>
parents: 12466
diff changeset
  2622
d0c7ee0b0fb4 more immutability stuff
Claus Gittinger <cg@exept.de>
parents: 12466
diff changeset
  2623
    "/ care for subclasses
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2624
    ((cls := self class) == ByteArray or:[cls == ImmutableByteArray]) ifTrue:[
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2625
	aStream nextPutAll:'#['.
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2626
	self
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2627
	    do:[:byte | byte printOn:aStream]
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2628
	    separatedBy:[aStream space].
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2629
	aStream nextPut:$].
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2630
	^ self
5019
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2631
    ].
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2632
    ^ super printOn:aStream
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2633
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2634
    "
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2635
     #[1 2 3 4 5] printOn:Transcript
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2636
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2637
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2638
     #[1 2 3 4 5] storeString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2639
     #[1 2 3 4 5] displayString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2640
     #[1 2 3 4 5] printString
5019
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2641
    "
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2642
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2643
    "Modified: / 12.9.1997 / 22:11:33 / cg"
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2644
    "Modified: / 17.3.1999 / 17:01:31 / stefan"
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2645
!
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2646
4050
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2647
printOn:aStream base:radix
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2648
    "append a printed representation to aStream in the given number base."
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2649
6125
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2650
    ^ self printOn:aStream base:radix showRadix:false
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2651
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2652
    "
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2653
     #[1 2 3 4 5] printOn:Transcript base:2
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2654
     'Hello World' printOn:Transcript base:2
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2655
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2656
     #[1 2 3 4 5] storeString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2657
     #[1 2 3 4 5] displayString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2658
     #[1 2 3 4 5] printString
6125
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2659
    "
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2660
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2661
    "Modified: / 17.3.1999 / 17:01:31 / stefan"
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2662
    "Modified: / 31.10.2001 / 09:43:56 / cg"
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2663
!
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2664
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2665
printOn:aStream base:radix showRadix:showRadix
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2666
    "append a printed representation to aStream in the given number base."
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2667
12487
d0c7ee0b0fb4 more immutability stuff
Claus Gittinger <cg@exept.de>
parents: 12466
diff changeset
  2668
    |cls|
d0c7ee0b0fb4 more immutability stuff
Claus Gittinger <cg@exept.de>
parents: 12466
diff changeset
  2669
d0c7ee0b0fb4 more immutability stuff
Claus Gittinger <cg@exept.de>
parents: 12466
diff changeset
  2670
    ((cls := self class) == ByteArray or:[cls == ImmutableByteArray]) ifTrue:[
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2671
	"/ care for subclasses
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2672
	aStream nextPutAll:'#['.
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2673
	self
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2674
	    do:[:byte | byte printOn:aStream base:radix showRadix:showRadix]
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2675
	    separatedBy:[aStream space].
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2676
	aStream nextPut:$].
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2677
	^ self
4050
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2678
    ].
5019
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2679
    ^ self printOn:aStream
4050
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2680
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2681
    "
5019
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2682
     #[1 2 3 4 5] printOn:Transcript base:2
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2683
     'Hello World' printOn:Transcript base:2
4050
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2684
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2685
     #[1 2 3 4 5] storeString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2686
     #[1 2 3 4 5] displayString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2687
     #[1 2 3 4 5] printString
4050
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2688
    "
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2689
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2690
    "Modified: / 12.9.1997 / 22:11:33 / cg"
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2691
    "Modified: / 17.3.1999 / 17:01:31 / stefan"
6125
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2692
    "Created: / 31.10.2001 / 09:43:41 / cg"
4050
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2693
!
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2694
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2695
storeOn:aStream
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2696
    "append a printed representation from which the receiver can be
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2697
     reconstructed to aStream. (reimplemented to make it look better)"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2698
12487
d0c7ee0b0fb4 more immutability stuff
Claus Gittinger <cg@exept.de>
parents: 12466
diff changeset
  2699
    |cls|
d0c7ee0b0fb4 more immutability stuff
Claus Gittinger <cg@exept.de>
parents: 12466
diff changeset
  2700
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2701
    ((cls := self class) == ByteArray or:[cls == ImmutableByteArray]) ifTrue:[
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2702
	"/ care for subclasses
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2703
	aStream nextPutAll:'#['.
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2704
	self
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2705
	    do:[:byte | byte storeOn:aStream]
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2706
	    separatedBy:[aStream space].
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2707
	aStream nextPutAll:']'.
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2708
	^ self
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2709
    ].
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2710
    ^ super storeOn:aStream
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2711
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2712
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2713
     #[1 2 3 4 5] storeOn:Transcript
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2714
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2715
     #[1 2 3 4 5] storeString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2716
     #[1 2 3 4 5] displayString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2717
     #[1 2 3 4 5] printString
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2718
    "
1082
b186a68fff0e category change
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  2719
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2720
    "Modified: 12.9.1997 / 22:11:33 / cg"
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2721
! !
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2722
7822
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2723
!ByteArray methodsFor:'queries'!
1082
b186a68fff0e category change
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  2724
16804
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2725
containsNon7BitAscii
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2726
    "return true, if any byte in the receiver has the 7th bit on.
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2727
     This my look as a too specific operation to be put here,
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2728
     put it is very helpful for UTF8 string reading (Java class reader),
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2729
     to quickly determine, if UTF8 decoding is needed or not.
18596
d6abf6a67de4 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 18584
diff changeset
  2730
     As most strings in a class file are in fact only containing 7bit ascii,
16804
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2731
     this should speedup class file reading considerably"
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2732
16805
e1f4f10936c0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16804
diff changeset
  2733
%{  /* NOCONTEXT */
16804
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2734
    REGISTER unsigned char *cp;
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2735
    REGISTER unsigned char *endP;
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2736
18611
fca966d5e383 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 18596
diff changeset
  2737
    if (__isByteArrayLike(self)) {
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2738
	cp = &(__ByteArrayInstPtr(self)->ba_element[0]);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2739
	endP = cp + __byteArraySize(self);
16806
575f0e271998 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16805
diff changeset
  2740
#if __POINTER_SIZE__ == 8
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2741
	while (cp+8 < endP) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2742
	    if ( ((unsigned INT *)cp)[0] & 0x8080808080808080) RETURN( true );
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2743
	    cp += 8;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2744
	}
16806
575f0e271998 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16805
diff changeset
  2745
#endif
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2746
	while (cp+4 < endP) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2747
	    if ( ((unsigned int *)cp)[0] & 0x80808080) RETURN( true );
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2748
	    cp += 4;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2749
	}
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2750
	while (cp < endP) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2751
	    if (*cp++ & 0x80) RETURN( true );
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2752
	}
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2753
	RETURN ( false );
16804
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2754
    }
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2755
%}
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2756
.
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2757
    ^ self contains:[:b | b bitTest:16r80].
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2758
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2759
    "
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2760
     #[1 2 3 1 2 3 1 2 127 ] containsNon7BitAscii
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2761
     #[1 2 3 1 2 3 1 2 250 251 250 251 255] containsNon7BitAscii
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2762
    "
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2763
!
8b7dfe6e80b0 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 16799
diff changeset
  2764
18966
3bc73a4cdae6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18665
diff changeset
  2765
containsNon8BitElements
3bc73a4cdae6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18665
diff changeset
  2766
    "return true, if one of my elements is larger than a single byte.
3bc73a4cdae6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18665
diff changeset
  2767
     Per definition not."
3bc73a4cdae6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18665
diff changeset
  2768
3bc73a4cdae6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18665
diff changeset
  2769
    ^ false.
3bc73a4cdae6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18665
diff changeset
  2770
!
3bc73a4cdae6 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18665
diff changeset
  2771
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2772
max
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2773
    "return the maximum value in the receiver -
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2774
     redefined to speedup image processing and sound-player
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2775
     (which need a fast method for this on byteArrays)"
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2776
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2777
%{  /* NOCONTEXT */
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2778
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2779
    REGISTER unsigned char *cp;
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2780
    REGISTER int index, max;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2781
    int len;
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2782
14135
bc011ad68efb changed:
Stefan Vogel <sv@exept.de>
parents: 13706
diff changeset
  2783
    if (__isByteArrayLike(self)) {
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2784
	max = 0;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2785
	index = 0;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2786
	len = __qSize(self) - OHDR_SIZE;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2787
	cp = &(__ByteArrayInstPtr(self)->ba_element[0]);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2788
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2789
	while (++index <= len) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2790
	    unsigned int byte;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2791
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2792
	    byte = *cp;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2793
	    cp++;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2794
	    if (byte > max) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2795
		max = byte;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2796
		if (byte == 255) break;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2797
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2798
	}
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2799
	RETURN ( __mkSmallInteger(max) );
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2800
    }
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2801
%}.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2802
    ^ super max
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2803
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2804
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2805
     #[1 2 3 1 2 3 1 2 19] max
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2806
    "
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  2807
!
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2808
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2809
usageCounts
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2810
    "return an array filled with value-counts -
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2811
     This is needed in the bitmap/image classes to get info on color usage.
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2812
     (i.e. to build up a histogram of color usage within an image)."
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2813
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2814
    |counts|
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2815
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2816
    counts := Array basicNew:256.
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2817
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2818
%{  /* STACK: 2000 */
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2819
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2820
    REGISTER unsigned char *cp;
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2821
    REGISTER int nByte;
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2822
    REGISTER int index;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
  2823
    INT icounts[256];
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2824
12768
4c56c6dd923d Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12719
diff changeset
  2825
    if (__isByteArrayLike(self) && __isArray(counts)) {
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2826
	/*
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2827
	 * zero counts
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2828
	 */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2829
	for (index=0; index<256; index++) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2830
	    icounts[index] = 0;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2831
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2832
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2833
	/*
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2834
	 * count
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2835
	 */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2836
	nByte = __qSize(self) - OHDR_SIZE;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2837
	cp = &(__ByteArrayInstPtr(self)->ba_element[0]);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2838
	while (nByte--) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2839
	    icounts[*cp++]++;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2840
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2841
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2842
	/*
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2843
	 * make it real counts
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2844
	 */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2845
	for (index=0; index<256; index++) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2846
	    __ArrayInstPtr(counts)->a_element[index] = __mkSmallInteger(icounts[index]);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2847
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2848
	RETURN ( counts );
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2849
    }
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2850
%}
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2851
.
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2852
    self primitiveFailed
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2853
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2854
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2855
     #[1 2 3 1 2 3 1 2 250 251 250 251 255] usageCounts
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2856
    "
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2857
!
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2858
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2859
usedValues
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2860
    "return a new ByteArray with all used values (actually a kind of Set);
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2861
     This is needed specially in the bitmap/Imageclasses to find used colors
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2862
     of an image."
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2863
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2864
%{  /* STACK: 400 */
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2865
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2866
    REGISTER unsigned char *cp;
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2867
    unsigned char *endp;
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2868
    REGISTER int len;
2890
fa0418a0f896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  2869
    OBJ result;
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2870
    union {
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2871
	unsigned char flags[256];
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2872
	int toForceAlignmentOfFlags;
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2873
    } f;
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2874
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2875
#ifdef TO_BE_MEASURED
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2876
    int coverage = 0;
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2877
#endif
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2878
12768
4c56c6dd923d Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12719
diff changeset
  2879
    if (__isByteArrayLike(self)) {
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2880
	memset(f.flags, 0, sizeof(f.flags));
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2881
	len = __qSize(self) - OHDR_SIZE;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2882
	cp = &(__ByteArrayInstPtr(self)->ba_element[0]);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2883
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2884
	/* for each used byte, set flag */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2885
	while (len > 0) {
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2886
#ifdef TO_BE_MEASURED
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2887
	    unsigned  byte;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2888
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2889
	    byte = *cp;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2890
	    if (! f.flags[byte]) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2891
		f.flags[byte] = 1;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2892
		coverage++;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2893
		if (coverage == 256) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2894
		    /* no need to scan rest */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2895
		    break;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2896
		}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2897
	    }
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2898
#else
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2899
	    f.flags[*cp] = 1;
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2900
#endif
12879
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2901
	    cp++;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2902
	    len--;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2903
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2904
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2905
	/* count 1's */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2906
	len = 0;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2907
	for (cp=f.flags, endp=f.flags+256; cp < endp;) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2908
	    if ( *((unsigned int *)cp)) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2909
		if (cp[0]) len++;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2910
		if (cp[1]) len++;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2911
		if (cp[2]) len++;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2912
		if (cp[3]) len++;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2913
	    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2914
	    cp += 4;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2915
	}
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2916
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2917
	/* create ByteArray of used values */
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2918
	result = __BYTEARRAY_UNINITIALIZED_NEW_INT(len);
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2919
	if (result) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2920
	    cp = __ByteArrayInstPtr(result)->ba_element;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2921
	    for (len=0; len < 256; len++) {
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2922
		if (f.flags[len])
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2923
		    *cp++ = len;
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2924
	    }
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2925
	    RETURN ( result );
ca913786d412 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12768
diff changeset
  2926
	}
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2927
    }
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2928
%}.
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2929
    ^ self asIdentitySet asByteArray
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2930
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2931
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2932
     #[1 2 3 1 2 3 1 2 3 1 2 3 4 5 6 4 5 6] usedValues
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2933
    "
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2934
! !
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2935
7822
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2936
!ByteArray methodsFor:'searching'!
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2937
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2938
indexOf:aByte startingAt:start
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2939
    "return the index of the first occurrence of the argument, aByte
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2940
     in the receiver starting at start, anInteger; return 0 if not found.
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2941
     - reimplemented here for speed"
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2942
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2943
%{  /* NOCONTEXT */
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2944
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2945
    REGISTER unsigned char *cp;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
  2946
    REGISTER INT index;
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
  2947
    REGISTER int byteValue;
7822
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2948
    REGISTER int len;
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2949
    OBJ cls;
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2950
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2951
    if (__isSmallInteger(aByte) &&__isBytes(self)) {
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2952
	byteValue = __intVal(aByte);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2953
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2954
	if (byteValue & ~0xFF /* i.e. (byteValue < 0) || (byteValue > 255) */) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2955
	    /*
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2956
	     * searching for something which cannot be found
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2957
	     */
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2958
	    RETURN ( __mkSmallInteger(0) );
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2959
	}
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2960
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2961
	if (__isSmallInteger(start)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2962
	    index = __intVal(start);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2963
	    len = __byteArraySize(self);
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2964
	    cp = __ByteArrayInstPtr(self)->ba_element;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2965
	    if ((cls = __qClass(self)) != @global(ByteArray)) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2966
		int nInst;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2967
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2968
		nInst = __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2969
		cp += nInst;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2970
		len -= nInst;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2971
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2972
	    cp += index - 1;
14382
dcbff20f0a14 changed: #indexOf:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14135
diff changeset
  2973
#ifdef __UNROLL_LOOPS__
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2974
	    while ((index+4) < len) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2975
		if (cp[0] == byteValue) { RETURN ( __mkSmallInteger(index) ); }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2976
		if (cp[1] == byteValue) { RETURN ( __mkSmallInteger(index+1) ); }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2977
		if (cp[2] == byteValue) { RETURN ( __mkSmallInteger(index+2) ); }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2978
		if (cp[3] == byteValue) { RETURN ( __mkSmallInteger(index+3) ); }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2979
		index += 4;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2980
		cp += 4;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2981
	    }
14382
dcbff20f0a14 changed: #indexOf:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14135
diff changeset
  2982
#endif
18655
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2983
	    while (index <= len) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2984
		if (*cp == byteValue) {
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2985
		    RETURN ( __mkSmallInteger(index) );
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2986
		}
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2987
		index++;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2988
		cp++;
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2989
	    }
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2990
	    RETURN ( __mkSmallInteger(0) );
57469de23fac INT prinitng
Claus Gittinger <cg@exept.de>
parents: 18611
diff changeset
  2991
	}
7822
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2992
    }
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2993
%}.
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2994
    ^ super indexOf:aByte startingAt:start
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2995
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2996
    "
14135
bc011ad68efb changed:
Stefan Vogel <sv@exept.de>
parents: 13706
diff changeset
  2997
     #[1 2 3 4 5 6 7 8 9 0 1 2 3 4 5] indexOf:0 startingAt:1
7822
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2998
    "
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2999
! !
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3000
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3001
!ByteArray methodsFor:'testing'!
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3002
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3003
isByteArray
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3004
    "return true, if the receiver is some kind of bytearray;
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3005
     true is returned here - the method is redefined from Object."
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3006
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3007
    ^ true
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3008
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3009
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3010
!
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3011
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3012
isLiteral
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3013
    "return true, if the receiver can be used as a literal constant in ST syntax
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3014
     (i.e. can be used in constant arrays)"
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3015
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3016
    "/ no, simply returning true here is a mistake:
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  3017
    "/ it could be a subclass of ByteArray
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3018
    "/ (of which the compiler does not know at all ...)
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3019
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3020
    ^ self class == ByteArray
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3021
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3022
    "Modified: 22.4.1996 / 12:55:30 / cg"
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3023
! !
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3024
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3025
!ByteArray class methodsFor:'documentation'!
628
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
  3026
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
  3027
version
18584
ee039e582133 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 17535
diff changeset
  3028
    ^ '$Header$'
12091
c9906aca7a7a added: #asByteString
Claus Gittinger <cg@exept.de>
parents: 11860
diff changeset
  3029
!
c9906aca7a7a added: #asByteString
Claus Gittinger <cg@exept.de>
parents: 11860
diff changeset
  3030
c9906aca7a7a added: #asByteString
Claus Gittinger <cg@exept.de>
parents: 11860
diff changeset
  3031
version_CVS
18584
ee039e582133 class: ByteArray
Stefan Vogel <sv@exept.de>
parents: 17535
diff changeset
  3032
    ^ '$Header$'
628
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
  3033
! !
15274
58d5c0f8d906 class: ByteArray
Claus Gittinger <cg@exept.de>
parents: 14382
diff changeset
  3034