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
|
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
import SwiftShims
// TODO: This is all a stop-gap so that at least some types are printable in
// embedded Swift, in an embedded-programming friendly way (we mainly need
// printing to not need to heap allocate).
@_extern(c, "putchar")
@discardableResult
func putchar(_: CInt) -> CInt
public func print(_ string: StaticString, terminator: StaticString = "\n") {
var p = unsafe string.utf8Start
while unsafe p.pointee != 0 {
putchar(CInt(unsafe p.pointee))
unsafe p += 1
}
unsafe p = terminator.utf8Start
while unsafe p.pointee != 0 {
putchar(CInt(unsafe p.pointee))
unsafe p += 1
}
}
@_disfavoredOverload
public func print(_ string: String, terminator: StaticString = "\n") {
var string = string
string.withUTF8 { buf in
for unsafe c in unsafe buf {
putchar(CInt(c))
}
}
var p = unsafe terminator.utf8Start
while unsafe p.pointee != 0 {
putchar(CInt(unsafe p.pointee))
unsafe p += 1
}
}
@_disfavoredOverload
public func print(_ object: some CustomStringConvertible, terminator: StaticString = "\n") {
var string = object.description
string.withUTF8 { buf in
for unsafe c in unsafe buf {
putchar(CInt(c))
}
}
var p = unsafe terminator.utf8Start
while unsafe p.pointee != 0 {
putchar(CInt(unsafe p.pointee))
unsafe p += 1
}
}
func print(_ buf: UnsafeBufferPointer<UInt8>, terminator: StaticString = "\n") {
for unsafe c in unsafe buf {
putchar(CInt(c))
}
var p = unsafe terminator.utf8Start
while unsafe p.pointee != 0 {
unsafe putchar(CInt(p.pointee))
unsafe p += 1
}
}
func printCharacters(_ buf: UnsafeRawBufferPointer) {
for unsafe c in unsafe buf {
putchar(CInt(c))
}
}
func printCharacters(_ buf: UnsafeBufferPointer<UInt8>) {
unsafe printCharacters(UnsafeRawBufferPointer(buf))
}
extension BinaryInteger {
internal func _toStringImpl(
_ buffer: UnsafeMutablePointer<UTF8.CodeUnit>,
_ bufferLength: UInt,
_ radix: Int,
_ uppercase: Bool
) -> Int {
if self == (0 as Self) {
unsafe buffer[0] = UInt8(("0" as Unicode.Scalar).value)
return 1
}
func _ascii(_ digit: UInt8) -> UTF8.CodeUnit {
if digit < 10 {
UInt8(("0" as Unicode.Scalar).value) + digit
} else {
UInt8(("a" as Unicode.Scalar).value) + (digit - 10)
}
}
let isNegative = Self.isSigned && self < (0 as Self)
var value = magnitude
var index = Int(bufferLength - 1)
while value != 0 {
let (quotient, remainder) = value.quotientAndRemainder(dividingBy: Magnitude(radix))
unsafe buffer[index] = _ascii(UInt8(truncatingIfNeeded: remainder))
index -= 1
value = quotient
}
if isNegative {
unsafe buffer[index] = UInt8(("-" as Unicode.Scalar).value)
index -= 1
}
let start = index + 1
let end = Int(bufferLength - 1)
let count = end - start + 1
let intermediate = unsafe UnsafeBufferPointer(start: buffer.advanced(by: start), count: count)
let destination = unsafe UnsafeMutableRawBufferPointer(start: buffer, count: Int(bufferLength))
unsafe destination.copyMemory(from: UnsafeRawBufferPointer(intermediate))
return count
}
func writeToStdout() {
// Avoid withUnsafeTemporaryAllocation which is not typed-throws ready yet
let byteCount = 64
let stackBuffer = Builtin.stackAlloc(byteCount._builtinWordValue,
1._builtinWordValue, 1._builtinWordValue)
let buffer = unsafe UnsafeMutableRawBufferPointer(start: .init(stackBuffer),
count: byteCount).baseAddress!.assumingMemoryBound(to: UInt8.self)
let count = unsafe _toStringImpl(buffer, 64, 10, false)
unsafe printCharacters(UnsafeBufferPointer(start: buffer, count: count))
Builtin.stackDealloc(stackBuffer)
}
}
public func print(_ integer: some BinaryInteger, terminator: StaticString = "\n") {
integer.writeToStdout()
print("", terminator: terminator)
}
public func print(_ boolean: Bool, terminator: StaticString = "\n") {
if boolean {
print("true", terminator: terminator)
} else {
print("false", terminator: terminator)
}
}
|