aboutsummaryrefslogtreecommitdiff
path: root/src/jdk/nashorn/internal/objects/ArrayBufferView.java
blob: 60da65a113aded72568dae4c749817ecb6f7dbe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
/*
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package jdk.nashorn.internal.objects;

import jdk.nashorn.internal.objects.annotations.Attribute;
import jdk.nashorn.internal.objects.annotations.Getter;
import jdk.nashorn.internal.objects.annotations.ScriptClass;
import jdk.nashorn.internal.runtime.JSType;
import jdk.nashorn.internal.runtime.PropertyMap;
import jdk.nashorn.internal.runtime.ScriptObject;
import jdk.nashorn.internal.runtime.ScriptRuntime;
import jdk.nashorn.internal.runtime.arrays.ArrayData;

import static jdk.nashorn.internal.runtime.ECMAErrors.rangeError;

@ScriptClass("ArrayBufferView")
abstract class ArrayBufferView extends ScriptObject {

    // initialized by nasgen
    private static PropertyMap $nasgenmap$;

    static PropertyMap getInitialMap() {
        return $nasgenmap$;
    }

    ArrayBufferView(final NativeArrayBuffer buffer, final int byteOffset, final int elementLength) {
        checkConstructorArgs(buffer, byteOffset, elementLength);
        final Global global = Global.instance();
        this.setMap(global.getArrayBufferViewMap());
        this.setProto(getPrototype(global));
        this.setArray(factory().createArrayData(buffer, byteOffset, elementLength));
    }

    private void checkConstructorArgs(final NativeArrayBuffer buffer, final int byteOffset, final int elementLength) {
        if (byteOffset < 0 || elementLength < 0) {
            throw new RuntimeException("byteOffset or length must not be negative");
        }
        if (byteOffset + elementLength * bytesPerElement() > buffer.getByteLength()) {
            throw new RuntimeException("byteOffset + byteLength out of range");
        }
        if (byteOffset % bytesPerElement() != 0) {
            throw new RuntimeException("byteOffset must be a multiple of the element size");
        }
    }

    private int bytesPerElement() {
        return factory().bytesPerElement;
    }

    @Getter(attributes = Attribute.NOT_ENUMERABLE | Attribute.NOT_WRITABLE | Attribute.NOT_CONFIGURABLE)
    public static Object buffer(final Object self) {
        return ((ArrayDataImpl)((ArrayBufferView)self).getArray()).buffer;
    }

    @Getter(attributes = Attribute.NOT_ENUMERABLE | Attribute.NOT_WRITABLE | Attribute.NOT_CONFIGURABLE)
    public static Object byteOffset(final Object self) {
        return ((ArrayDataImpl)((ArrayBufferView)self).getArray()).byteOffset;
    }

    @Getter(attributes = Attribute.NOT_ENUMERABLE | Attribute.NOT_WRITABLE | Attribute.NOT_CONFIGURABLE)
    public static Object byteLength(final Object self) {
        final ArrayBufferView view = (ArrayBufferView)self;
        return ((ArrayDataImpl)view.getArray()).elementLength * view.bytesPerElement();
    }

    @Getter(attributes = Attribute.NOT_ENUMERABLE | Attribute.NOT_WRITABLE | Attribute.NOT_CONFIGURABLE)
    public static Object length(final Object self) {
        return ((ArrayBufferView)self).elementLength();
    }

    @Override
    public final Object getLength() {
        return elementLength();
    }

    private int elementLength() {
        return ((ArrayDataImpl)getArray()).elementLength;
    }

    protected static abstract class ArrayDataImpl extends ArrayData {
        protected final NativeArrayBuffer buffer;
        protected final int byteOffset;
        private final int elementLength;

        protected ArrayDataImpl(final NativeArrayBuffer buffer, final int byteOffset, final int elementLength) {
            super(elementLength);
            this.buffer = buffer;
            this.byteOffset = byteOffset;
            this.elementLength = elementLength;
        }

        @Override
        public Object[] asObjectArray() {
            final Object[] array = new Object[elementLength];
            for (int i = 0; i < elementLength; i++) {
                array[i] = getObjectImpl(i);
            }
            return array;
        }

        @Override
        public ArrayData ensure(final long safeIndex) {
            return this;
        }

        @Override
        public void setLength(final long length) {
            //empty?
            //TODO is this right?
        }

        @Override
        public ArrayData shrink(final long newLength) {
            return this;
        }

        @Override
        public ArrayData set(final int index, final Object value, final boolean strict) {
            if (has(index)) {
                setImpl(index, value);
            }
            return this;
        }

        @Override
        public ArrayData set(final int index, final int value, final boolean strict) {
            if (has(index)) {
                setImpl(index, value);
            }
            return this;
        }

        @Override
        public ArrayData set(final int index, final long value, final boolean strict) {
            if (has(index)) {
                setImpl(index, value);
            }
            return this;
        }

        @Override
        public ArrayData set(final int index, final double value, final boolean strict) {
            if (has(index)) {
                setImpl(index, value);
            }
            return this;
        }

        @Override
        public int getInt(final int index) {
            return getIntImpl(index);
        }

        @Override
        public long getLong(final int index) {
            return getLongImpl(index);
        }

        @Override
        public double getDouble(final int index) {
            return getDoubleImpl(index);
        }

        @Override
        public Object getObject(final int index) {
            return getObjectImpl(index);
        }

        @Override
        public boolean has(final int index) {
            return index >= 0 && index < elementLength;
        }

        @Override
        public boolean canDelete(final int index, final boolean strict) {
            return false;
        }

        @Override
        public boolean canDelete(final long fromIndex, final long toIndex, final boolean strict) {
            return false;
        }

        @Override
        public ArrayData delete(final int index) {
            return this;
        }

        @Override
        public ArrayData delete(final long fromIndex, final long toIndex) {
            return this;
        }

        @Override
        protected ArrayData convert(final Class<?> type) {
            return this;
        }

        @Override
        public void shiftLeft(final int by) {
            throw new UnsupportedOperationException();
        }

        @Override
        public ArrayData shiftRight(final int by) {
            throw new UnsupportedOperationException();
        }

        @Override
        public Object pop() {
            throw new UnsupportedOperationException();
        }

        @Override
        public ArrayData slice(final long from, final long to) {
            throw new UnsupportedOperationException();
        }

        protected abstract int getIntImpl(int key);

        protected long getLongImpl(final int key) {
            return getIntImpl(key);
        }

        protected double getDoubleImpl(final int key) {
            return getIntImpl(key);
        }

        protected Object getObjectImpl(final int key) {
            return getIntImpl(key);
        }

        protected abstract void setImpl(int key, int value);

        protected void setImpl(final int key, final long value) {
            setImpl(key, (int)value);
        }

        protected void setImpl(final int key, final double value) {
            setImpl(key, JSType.toInt32(value));
        }

        protected void setImpl(final int key, final Object value) {
            setImpl(key, JSType.toInt32(value));
        }

        protected abstract int byteIndex(int index);
    }

    protected static abstract class Factory {
        final int bytesPerElement;

        public Factory(final int bytesPerElement) {
            this.bytesPerElement = bytesPerElement;
        }

        public final ArrayBufferView construct(final int elementLength) {
            return construct(new NativeArrayBuffer(elementLength * bytesPerElement), 0, elementLength);
        }

        public abstract ArrayBufferView construct(NativeArrayBuffer buffer, int byteOffset, int elementLength);

        public abstract ArrayData createArrayData(NativeArrayBuffer buffer, int byteOffset, int elementLength);
    }

    protected abstract Factory factory();

    protected abstract ScriptObject getPrototype(final Global global);

    protected boolean isFloatArray() {
        return false;
    }

    protected static ArrayBufferView constructorImpl(final Object[] args, final Factory factory) {
        final Object arg0 = args.length != 0 ? args[0] : 0;
        final ArrayBufferView dst;
        final int length;
        if (arg0 instanceof NativeArrayBuffer) {
            // Constructor(ArrayBuffer buffer, optional unsigned long byteOffset, optional unsigned long length)
            final NativeArrayBuffer buffer = (NativeArrayBuffer) arg0;
            final int byteOffset = args.length > 1 ? JSType.toInt32(args[1]) : 0;
            if (args.length > 2) {
                length = JSType.toInt32(args[2]);
            } else {
                if ((buffer.getByteLength() - byteOffset) % factory.bytesPerElement != 0) {
                    throw new RuntimeException("buffer.byteLength - byteOffset must be a multiple of the element size");
                }
                length = (buffer.getByteLength() - byteOffset) / factory.bytesPerElement;
            }
            return factory.construct(buffer, byteOffset, length);
        } else if (arg0 instanceof ArrayBufferView) {
            // Constructor(TypedArray array)
            length = ((ArrayBufferView)arg0).elementLength();
            dst = factory.construct(length);
        } else if (arg0 instanceof NativeArray) {
            // Constructor(type[] array)
            length = lengthToInt(((NativeArray) arg0).getArray().length());
            dst = factory.construct(length);
        } else {
            // Constructor(unsigned long length)
            length = lengthToInt(JSType.toInt64(arg0));
            return factory.construct(length);
        }

        copyElements(dst, length, (ScriptObject)arg0, 0);
        return dst;
    }

    protected static Object setImpl(final Object self, final Object array, final Object offset0) {
        final ArrayBufferView dest = ((ArrayBufferView)self);
        final int length;
        if (array instanceof ArrayBufferView) {
            // void set(TypedArray array, optional unsigned long offset)
            length = ((ArrayBufferView)array).elementLength();
        } else if (array instanceof NativeArray) {
            // void set(type[] array, optional unsigned long offset)
            length = (int) (((NativeArray) array).getArray().length() & 0x7fff_ffff);
        } else {
            throw new RuntimeException("argument is not of array type");
        }

        final ScriptObject source = (ScriptObject) array;
        final int offset = JSType.toInt32(offset0); // default=0

        if (dest.elementLength() < length + offset || offset < 0) {
            throw new RuntimeException("offset or array length out of bounds");
        }

        copyElements(dest, length, source, offset);

        return ScriptRuntime.UNDEFINED;
    }

    private static void copyElements(final ArrayBufferView dest, final int length, final ScriptObject source, final int offset) {
        if (!dest.isFloatArray()) {
            for (int i = 0, j = offset; i < length; i++, j++) {
                dest.set(j, source.getInt(i), false);
            }
        } else {
            for (int i = 0, j = offset; i < length; i++, j++) {
                dest.set(j, source.getDouble(i), false);
            }
        }
    }

    private static int lengthToInt(final long length) {
        if (length > Integer.MAX_VALUE || length < 0) {
            throw rangeError("inappropriate.array.buffer.length", JSType.toString(length));
        }
        return (int) (length & Integer.MAX_VALUE);
    }

    protected static Object subarrayImpl(final Object self, final Object begin0, final Object end0) {
        final ArrayBufferView arrayView = ((ArrayBufferView)self);
        final int elementLength = arrayView.elementLength();
        final int begin = NativeArrayBuffer.adjustIndex(JSType.toInt32(begin0), elementLength);
        final int end = NativeArrayBuffer.adjustIndex(end0 != ScriptRuntime.UNDEFINED ? JSType.toInt32(end0) : elementLength, elementLength);
        final ArrayDataImpl arrayData = (ArrayDataImpl)arrayView.getArray();
        return arrayView.factory().construct(arrayData.buffer, arrayData.byteIndex(begin), Math.max(end - begin, 0));
    }
}