@@ -46,20 +46,32 @@ public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral wh
46
46
///
47
47
/// - Parameter array: The array that will be copied to create a new instance of TypedArray
48
48
public convenience init ( _ array: [ Element ] ) {
49
- let jsArrayRef = array. withUnsafeBufferPointer { ptr in
50
- // Retain the constructor function to avoid it being released before calling `swjs_create_typed_array`
51
- withExtendedLifetime ( Self . constructor!) { ctor in
52
- swjs_create_typed_array ( ctor. id, ptr. baseAddress, Int32 ( array. count) )
53
- }
49
+ let object = array. withUnsafeBufferPointer { buffer in
50
+ Self . createTypedArray ( from: buffer)
54
51
}
55
- self . init ( unsafelyWrapping: JSObject ( id : jsArrayRef ) )
52
+ self . init ( unsafelyWrapping: object )
56
53
}
57
54
58
55
/// Convenience initializer for `Sequence`.
59
56
public convenience init < S: Sequence > ( _ sequence: S ) where S. Element == Element {
60
57
self . init ( Array ( sequence) )
61
58
}
62
59
60
+ /// Initialize a new instance of TypedArray in JavaScript environment with given buffer contents.
61
+ ///
62
+ /// - Parameter buffer: The buffer that will be copied to create a new instance of TypedArray
63
+ public convenience init ( buffer: UnsafeBufferPointer < Element > ) {
64
+ self . init ( unsafelyWrapping: Self . createTypedArray ( from: buffer) )
65
+ }
66
+
67
+ private static func createTypedArray( from buffer: UnsafeBufferPointer < Element > ) -> JSObject {
68
+ // Retain the constructor function to avoid it being released before calling `swjs_create_typed_array`
69
+ let jsArrayRef = withExtendedLifetime ( Self . constructor!) { ctor in
70
+ swjs_create_typed_array ( ctor. id, buffer. baseAddress, Int32 ( buffer. count) )
71
+ }
72
+ return JSObject ( id: jsArrayRef)
73
+ }
74
+
63
75
/// Length (in bytes) of the typed array.
64
76
/// The value is established when a TypedArray is constructed and cannot be changed.
65
77
/// If the TypedArray is not specifying a `byteOffset` or a `length`, the `length` of the referenced `ArrayBuffer` will be returned.
0 commit comments