Files
swift-mirror/stdlib/public/SDK/Foundation/DataThunks.m
Arnold Schwaighofer 39fa2f0228 Use the swift calling convention for swift functions
Use the generic type lowering algorithm described in
"docs/CallingConvention.rst#physical-lowering" to map from IRGen's explosion
type to the type expected by the ABI.

Change IRGen to use the swift calling convention (swiftcc) for native swift
functions.

Use the 'swiftself' attribute on self parameters and for closures contexts.

Use the 'swifterror' parameter for swift error parameters.

Change functions in the runtime that are called as native swift functions to use
the swift calling convention.

rdar://19978563
2017-02-14 12:17:57 -08:00

168 lines
5.5 KiB
Objective-C

//===----------------------------------------------------------------------===//
//
// 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 <Foundation/Foundation.h>
#import <sys/fcntl.h>
#include "swift/Runtime/Config.h"
typedef void (^NSDataDeallocator)(void *, NSUInteger);
extern const NSDataDeallocator NSDataDeallocatorVM;
extern const NSDataDeallocator NSDataDeallocatorUnmap;
extern const NSDataDeallocator NSDataDeallocatorFree;
extern const NSDataDeallocator NSDataDeallocatorNone;
SWIFT_CC(swift)
void __NSDataInvokeDeallocatorVM(void *mem, NSUInteger length) {
NSDataDeallocatorVM(mem, length);
}
SWIFT_CC(swift)
void __NSDataInvokeDeallocatorUnmap(void *mem, NSUInteger length) {
NSDataDeallocatorUnmap(mem, length);
}
SWIFT_CC(swift)
void __NSDataInvokeDeallocatorFree(void *mem, NSUInteger length) {
NSDataDeallocatorFree(mem, length);
}
#if TARGET_OS_IPHONE && !TARGET_OS_SIMULATOR
static int __NSFileProtectionClassForOptions(NSUInteger options) {
int result;
switch (options & NSDataWritingFileProtectionMask) {
case NSDataWritingFileProtectionComplete: // Class A
result = 1;
break;
case NSDataWritingFileProtectionCompleteUnlessOpen: // Class B
result = 2;
break;
case NSDataWritingFileProtectionCompleteUntilFirstUserAuthentication: // Class C
result = 3;
break;
case NSDataWritingFileProtectionNone: // Class D
result = 4;
break;
default:
result = 0;
break;
}
return result;
}
#endif
static int32_t _NSOpenFileDescriptor(const char *path, NSInteger flags, int protectionClass, NSInteger mode) {
int fd = -1;
if (protectionClass != 0) {
fd = open_dprotected_np(path, flags, protectionClass, 0, mode);
} else {
fd = open(path, flags, mode);
}
return fd;
}
static NSInteger _NSWriteToFileDescriptor(int32_t fd, const void *buffer, NSUInteger length) {
size_t preferredChunkSize = (size_t)length;
size_t numBytesRemaining = (size_t)length;
while (numBytesRemaining > 0UL) {
size_t numBytesRequested = (preferredChunkSize < (1LL << 31)) ? preferredChunkSize : ((1LL << 31) - 1);
if (numBytesRequested > numBytesRemaining) numBytesRequested = numBytesRemaining;
ssize_t numBytesWritten;
do {
numBytesWritten = write(fd, buffer, numBytesRequested);
} while (numBytesWritten < 0L && errno == EINTR);
if (numBytesWritten < 0L) {
return -1;
} else if (numBytesWritten == 0L) {
break;
} else {
numBytesRemaining -= numBytesWritten;
if ((size_t)numBytesWritten < numBytesRequested) break;
buffer = (char *)buffer + numBytesWritten;
}
}
return length - numBytesRemaining;
}
extern NSError *_NSErrorWithFilePath(NSInteger code, id pathOrURL);
extern NSError *_NSErrorWithFilePathAndErrno(NSInteger posixErrno, id pathOrURL, BOOL reading);
SWIFT_CC(swift)
BOOL _NSWriteDataToFile_Swift(NSURL * NS_RELEASES_ARGUMENT url, NSData * NS_RELEASES_ARGUMENT data, NSDataWritingOptions writingOptions, NSError **errorPtr) {
assert((writingOptions & NSDataWritingAtomic) == 0);
NSString *path = url.path;
char cpath[1026];
if (![path getFileSystemRepresentation:cpath maxLength:1024]) {
if (errorPtr) *errorPtr = _NSErrorWithFilePath(NSFileWriteInvalidFileNameError, path);
return NO;
}
int protectionClass = 0;
#if TARGET_OS_IPHONE && !TARGET_OS_SIMULATOR
protectionClass = __NSFileProtectionClassForOptions(writingOptions);
#endif
int flags = O_WRONLY|O_CREAT|O_TRUNC;
if (writingOptions & NSDataWritingWithoutOverwriting) {
flags |= O_EXCL;
}
int32_t fd = _NSOpenFileDescriptor(cpath, flags, protectionClass, 0666);
if (fd < 0) {
if (errorPtr) *errorPtr = _NSErrorWithFilePathAndErrno(errno, path, NO);
[url release];
[data release];
return NO;
}
__block BOOL writingFailed = NO;
__block int32_t saveerr = 0;
NSUInteger dataLength = [data length];
[data enumerateByteRangesUsingBlock:^(const void *bytes, NSRange byteRange, BOOL *stop) {
NSUInteger length = byteRange.length;
BOOL success = NO;
if (length > 0) {
NSInteger writtenLength = _NSWriteToFileDescriptor(fd, bytes, length);
success = writtenLength > 0 && (NSUInteger)writtenLength == length;
} else {
success = YES; // Writing nothing always succeeds.
}
if (!success) {
saveerr = errno;
writingFailed = YES;
*stop = YES;
}
}];
if (dataLength && !writingFailed) {
if (fsync(fd) < 0) {
writingFailed = YES;
saveerr = errno;
}
}
if (writingFailed) {
close(fd);
errno = (saveerr);
if (errorPtr) {
*errorPtr = _NSErrorWithFilePathAndErrno(errno, path, NO);
}
[url release];
[data release];
return NO;
}
close(fd);
[url release];
[data release];
return YES;
}