//===--- UnsafeBufferPointer.swift.gyb ------------------------*- swift -*-===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/LICENSE.txt for license information // See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors // //===----------------------------------------------------------------------===// /// An iterator for the elements in the buffer referenced by an /// `UnsafeBufferPointer` or `UnsafeMutableBufferPointer` instance. public struct UnsafeBufferPointerIterator : IteratorProtocol, Sequence { /// Advances to the next element and returns it, or `nil` if no next element /// exists. /// /// Once `nil` has been returned, all subsequent calls return `nil`. public mutating func next() -> Element? { if _position == _end { return nil } let result = _position!.pointee _position! += 1 return result } internal var _position, _end: UnsafePointer? } % for mutable in (True, False): % Self = 'UnsafeMutableBufferPointer' if mutable else 'UnsafeBufferPointer' % Mutable = 'Mutable' if mutable else '' /// A non-owning collection interface to a buffer of ${Mutable.lower()} /// elements stored contiguously in memory. /// /// You can use an `${Self}` instance in low level operations to eliminate /// uniqueness checks and, in release mode, bounds checks. Bounds checks are /// always performed in debug mode. /// /// ${Self} Semantics /// ================= /// /// An `${Self}` instance is a view into memory and does not own the memory /// that it references. Copying a value of type `${Self}` does not copy the /// instances stored in the underlying memory. However, initializing another /// collection with an `${Self}` instance copies the instances out of the /// referenced memory and into the new collection. /// /// - SeeAlso: `Unsafe${Mutable}Pointer`, `Unsafe${Mutable}RawBufferPointer` @_fixed_layout public struct Unsafe${Mutable}BufferPointer : _${Mutable}Indexable, ${Mutable}Collection, RandomAccessCollection { // FIXME: rdar://18157434 - until this is fixed, this has to be fixed layout // to avoid a hang in Foundation, which has the following setup: // struct A { struct B { let x: UnsafeMutableBufferPointer<...> } let b: B } public typealias Index = Int public typealias IndexDistance = Int public typealias Iterator = IndexingIterator> /// The index of the first element in a nonempty buffer. /// /// The `startIndex` property of an `Unsafe${Mutable}BufferPointer` instance /// is always zero. public var startIndex: Int { return 0 } /// The "past the end" position---that is, the position one greater than the /// last valid subscript argument. /// /// The `endIndex` property of an `Unsafe${Mutable}BufferPointer` instance is /// always identical to `count`. public var endIndex: Int { return count } public func index(after i: Int) -> Int { // NOTE: this is a manual specialization of index movement for a Strideable // index that is required for UnsafeBufferPointer performance. The // optimizer is not capable of creating partial specializations yet. // NOTE: Range checks are not performed here, because it is done later by // the subscript function. return i + 1 } public func formIndex(after i: inout Int) { // NOTE: this is a manual specialization of index movement for a Strideable // index that is required for UnsafeBufferPointer performance. The // optimizer is not capable of creating partial specializations yet. // NOTE: Range checks are not performed here, because it is done later by // the subscript function. i += 1 } public func index(before i: Int) -> Int { // NOTE: this is a manual specialization of index movement for a Strideable // index that is required for UnsafeBufferPointer performance. The // optimizer is not capable of creating partial specializations yet. // NOTE: Range checks are not performed here, because it is done later by // the subscript function. return i - 1 } public func formIndex(before i: inout Int) { // NOTE: this is a manual specialization of index movement for a Strideable // index that is required for UnsafeBufferPointer performance. The // optimizer is not capable of creating partial specializations yet. // NOTE: Range checks are not performed here, because it is done later by // the subscript function. i -= 1 } public func index(_ i: Int, offsetBy n: Int) -> Int { // NOTE: this is a manual specialization of index movement for a Strideable // index that is required for UnsafeBufferPointer performance. The // optimizer is not capable of creating partial specializations yet. // NOTE: Range checks are not performed here, because it is done later by // the subscript function. return i + n } public func index( _ i: Int, offsetBy n: Int, limitedBy limit: Int ) -> Int? { // NOTE: this is a manual specialization of index movement for a Strideable // index that is required for UnsafeBufferPointer performance. The // optimizer is not capable of creating partial specializations yet. // NOTE: Range checks are not performed here, because it is done later by // the subscript function. let l = limit - i if n > 0 ? l >= 0 && l < n : l <= 0 && n < l { return nil } return i + n } public func distance(from start: Int, to end: Int) -> Int { // NOTE: this is a manual specialization of index movement for a Strideable // index that is required for UnsafeBufferPointer performance. The // optimizer is not capable of creating partial specializations yet. // NOTE: Range checks are not performed here, because it is done later by // the subscript function. return end - start } public func _failEarlyRangeCheck(_ index: Int, bounds: Range) { // NOTE: This method is a no-op for performance reasons. } public func _failEarlyRangeCheck(_ range: Range, bounds: Range) { // NOTE: This method is a no-op for performance reasons. } public typealias Indices = CountableRange public var indices: Indices { return startIndex.. Int in /// var result = 0 /// for i in stride(from: buffer.startIndex, to: buffer.endIndex, by: 2) { /// result += buffer[i] /// } /// return result /// } /// // 'sum' == 9 %end /// /// - Note: Bounds checks for `i` are performed only in debug mode. /// /// - Parameter i: The position of the element to access. `i` must be in the /// range `0.. Element { get { _debugPrecondition(i >= 0) _debugPrecondition(i < endIndex) return _position![i] } %if Mutable: nonmutating set { _debugPrecondition(i >= 0) _debugPrecondition(i < endIndex) _position![i] = newValue } %end } public subscript(bounds: Range) -> ${Mutable}RandomAccessSlice> { get { _debugPrecondition(bounds.lowerBound >= startIndex) _debugPrecondition(bounds.upperBound <= endIndex) return ${Mutable}RandomAccessSlice( base: self, bounds: bounds) } % if Mutable: set { _debugPrecondition(bounds.lowerBound >= startIndex) _debugPrecondition(bounds.upperBound <= endIndex) // FIXME: swift-3-indexing-model: tests. _writeBackMutableSlice(&self, bounds: bounds, slice: newValue) } % end } /// Creates a new buffer pointer over the specified number of contiguous /// instances beginning at the given pointer. /// /// - Parameters: /// - start: A pointer to the start of the buffer, or `nil`. If `start` is /// `nil`, `count` must be zero. However, `count` may be zero even for a /// non-`nil` `start`. The pointer passed as `start` must be aligned to /// `MemoryLayout.alignment`. /// - count: The number of instances in the buffer. `count` must not be /// negative. public init(start: Unsafe${Mutable}Pointer?, count: Int) { _precondition( count >= 0, "Unsafe${Mutable}BufferPointer with negative count") _precondition( count == 0 || start != nil, "Unsafe${Mutable}BufferPointer has a nil start and nonzero count") _position = start _end = start.map { $0 + count } } /// Returns an iterator over the elements of this buffer. /// /// - Returns: An iterator over the elements of this buffer. public func makeIterator() -> UnsafeBufferPointerIterator { return UnsafeBufferPointerIterator(_position: _position, _end: _end) } /// A pointer to the first element of the buffer. /// /// If the `baseAddress` of this buffer is `nil`, the count is zero. However, /// a buffer can have a `count` of zero even with a non-`nil` base address. public var baseAddress: Unsafe${Mutable}Pointer? { return _position } /// The number of elements in the buffer. /// /// If the `baseAddress` of this buffer is `nil`, the count is zero. However, /// a buffer can have a `count` of zero even with a non-`nil` base address. public var count: Int { if let pos = _position { return _end! - pos } return 0 } let _position, _end: Unsafe${Mutable}Pointer? } extension Unsafe${Mutable}BufferPointer : CustomDebugStringConvertible { /// A textual representation of the buffer, suitable for debugging. public var debugDescription: String { return "Unsafe${Mutable}BufferPointer" + "(start: \(_position.map(String.init(describing:)) ?? "nil"), count: \(count))" } } %end extension UnsafeMutableBufferPointer { /// Initializes memory in the buffer with the elements of `source`. /// Returns an iterator to any elements of `source` that didn't fit in the /// buffer, and an index to the point in the buffer one past the last element /// written (so `startIndex` if no elements written, `endIndex` if the buffer /// was completely filled). /// /// - Precondition: The memory in `self` is uninitialized. The buffer must /// contain sufficient uninitialized memory to accommodate `source.underestimatedCount`. /// /// - Postcondition: The `Pointee`s at `self[startIndex..(from source: S) -> (S.Iterator, Index) where S.Iterator.Element == Iterator.Element { return source._copyContents(initializing: self) } } @available(*, unavailable, renamed: "UnsafeBufferPointerIterator") public struct UnsafeBufferPointerGenerator {} // ${'Local Variables'}: // eval: (read-only-mode 1) // End: