Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add JSTypedArray.copyMemory(to:) method #315

Merged
merged 1 commit into from
Mar 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 22 additions & 24 deletions Sources/JavaScriptKit/BasicObjects/JSTypedArray.swift
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral wh
Int(jsObject["byteLength"].number!)
}

/// Length (in elements) of the typed array.
public var length: Int {
Int(jsObject["length"].number!)
}

/// Calls the given closure with a pointer to a copy of the underlying bytes of the
/// array's storage.
///
Expand All @@ -93,18 +98,10 @@ public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral wh
/// argument is valid only for the duration of the closure's execution.
/// - Returns: The return value, if any, of the `body` closure parameter.
public func withUnsafeBytes<R>(_ body: (UnsafeBufferPointer<Element>) throws -> R) rethrows -> R {
let bytesLength = lengthInBytes
let rawBuffer = UnsafeMutableBufferPointer<UInt8>.allocate(capacity: bytesLength)
defer { rawBuffer.deallocate() }
let baseAddress = rawBuffer.baseAddress!
swjs_load_typed_array(jsObject.id, baseAddress)
let length = bytesLength / MemoryLayout<Element>.size
let rawBaseAddress = UnsafeRawPointer(baseAddress)
let bufferPtr = UnsafeBufferPointer<Element>(
start: rawBaseAddress.assumingMemoryBound(to: Element.self),
count: length
)
let result = try body(bufferPtr)
let buffer = UnsafeMutableBufferPointer<Element>.allocate(capacity: length)
defer { buffer.deallocate() }
copyMemory(to: buffer)
let result = try body(UnsafeBufferPointer(buffer))
return result
}

Expand All @@ -124,21 +121,22 @@ public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral wh
/// - Returns: The return value, if any, of the `body`async closure parameter.
@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
public func withUnsafeBytesAsync<R>(_ body: (UnsafeBufferPointer<Element>) async throws -> R) async rethrows -> R {
let bytesLength = lengthInBytes
let rawBuffer = UnsafeMutableBufferPointer<UInt8>.allocate(capacity: bytesLength)
defer { rawBuffer.deallocate() }
let baseAddress = rawBuffer.baseAddress!
swjs_load_typed_array(jsObject.id, baseAddress)
let length = bytesLength / MemoryLayout<Element>.size
let rawBaseAddress = UnsafeRawPointer(baseAddress)
let bufferPtr = UnsafeBufferPointer<Element>(
start: rawBaseAddress.assumingMemoryBound(to: Element.self),
count: length
)
let result = try await body(bufferPtr)
let buffer = UnsafeMutableBufferPointer<Element>.allocate(capacity: length)
defer { buffer.deallocate() }
copyMemory(to: buffer)
let result = try await body(UnsafeBufferPointer(buffer))
return result
}
#endif

/// Copies the contents of the array to the given buffer.
///
/// - Parameter buffer: The buffer to copy the contents of the array to.
/// The buffer must have enough space to accommodate the contents of the array.
public func copyMemory(to buffer: UnsafeMutableBufferPointer<Element>) {
precondition(buffer.count >= length, "Buffer is too small to hold the contents of the array")
swjs_load_typed_array(jsObject.id, buffer.baseAddress!)
}
}

// MARK: - Int and UInt support
Expand Down
14 changes: 14 additions & 0 deletions Tests/JavaScriptKitTests/JSTypedArrayTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,18 @@ final class JSTypedArrayTests: XCTestCase {
XCTAssertEqual(typedArray[i], Float32(i))
}
}

func testCopyMemory() {
let array = JSTypedArray<Int>(length: 100)
for i in 0..<100 {
array[i] = i
}
let destination = UnsafeMutableBufferPointer<Int>.allocate(capacity: 100)
defer { destination.deallocate() }
array.copyMemory(to: destination)

for i in 0..<100 {
XCTAssertEqual(destination[i], i)
}
}
}