|
| 1 | +// |
| 2 | +// FlutterSocketConnection.m |
| 3 | +// RCTWebRTC |
| 4 | +// |
| 5 | +// Created by Alex-Dan Bumbu on 08/01/2021. |
| 6 | +// |
| 7 | + |
| 8 | +#include <sys/socket.h> |
| 9 | +#include <sys/un.h> |
| 10 | + |
| 11 | +#import "FlutterSocketConnection.h" |
| 12 | + |
| 13 | +@interface FlutterSocketConnection () |
| 14 | + |
| 15 | +@property (nonatomic, assign) int serverSocket; |
| 16 | +@property (nonatomic, strong) dispatch_source_t listeningSource; |
| 17 | + |
| 18 | +@property (nonatomic, strong) NSThread *networkThread; |
| 19 | + |
| 20 | +@property (nonatomic, strong) NSInputStream *inputStream; |
| 21 | +@property (nonatomic, strong) NSOutputStream *outputStream; |
| 22 | + |
| 23 | +@end |
| 24 | + |
| 25 | +@implementation FlutterSocketConnection |
| 26 | + |
| 27 | +- (instancetype)initWithFilePath:(nonnull NSString *)filePath { |
| 28 | + self = [super init]; |
| 29 | + |
| 30 | + [self setupNetworkThread]; |
| 31 | + |
| 32 | + self.serverSocket = socket(AF_UNIX, SOCK_STREAM, 0); |
| 33 | + if (self.serverSocket < 0) { |
| 34 | + NSLog(@"failure creating socket"); |
| 35 | + return nil; |
| 36 | + } |
| 37 | + |
| 38 | + if (![self setupSocketWithFileAtPath: filePath]) { |
| 39 | + close(self.serverSocket); |
| 40 | + return nil; |
| 41 | + } |
| 42 | + |
| 43 | + return self; |
| 44 | +} |
| 45 | + |
| 46 | +- (void)openWithStreamDelegate:(id <NSStreamDelegate>)streamDelegate { |
| 47 | + int status = listen(self.serverSocket, 10); |
| 48 | + if (status < 0) { |
| 49 | + NSLog(@"failure: socket listening"); |
| 50 | + return; |
| 51 | + } |
| 52 | + |
| 53 | + dispatch_source_t listeningSource = dispatch_source_create(DISPATCH_SOURCE_TYPE_READ, self.serverSocket, 0, NULL); |
| 54 | + dispatch_source_set_event_handler(listeningSource, ^ { |
| 55 | + int clientSocket = accept(self.serverSocket, NULL, NULL); |
| 56 | + if (clientSocket < 0) { |
| 57 | + NSLog(@"failure accepting connection"); |
| 58 | + return; |
| 59 | + } |
| 60 | + |
| 61 | + CFReadStreamRef readStream; |
| 62 | + CFWriteStreamRef writeStream; |
| 63 | + |
| 64 | + CFStreamCreatePairWithSocket(kCFAllocatorDefault, clientSocket, &readStream, &writeStream); |
| 65 | + |
| 66 | + self.inputStream = (__bridge_transfer NSInputStream *)readStream; |
| 67 | + self.inputStream.delegate = streamDelegate; |
| 68 | + [self.inputStream setProperty:@"kCFBooleanTrue" forKey:@"kCFStreamPropertyShouldCloseNativeSocket"]; |
| 69 | + |
| 70 | + self.outputStream = (__bridge_transfer NSOutputStream *)writeStream; |
| 71 | + [self.outputStream setProperty:@"kCFBooleanTrue" forKey:@"kCFStreamPropertyShouldCloseNativeSocket"]; |
| 72 | + |
| 73 | + [self.networkThread start]; |
| 74 | + [self performSelector:@selector(scheduleStreams) onThread:self.networkThread withObject:nil waitUntilDone:true]; |
| 75 | + |
| 76 | + [self.inputStream open]; |
| 77 | + [self.outputStream open]; |
| 78 | + }); |
| 79 | + |
| 80 | + self.listeningSource = listeningSource; |
| 81 | + dispatch_resume(listeningSource); |
| 82 | +} |
| 83 | + |
| 84 | +- (void)close { |
| 85 | + [self performSelector:@selector(unscheduleStreams) onThread:self.networkThread withObject:nil waitUntilDone:true]; |
| 86 | + |
| 87 | + self.inputStream.delegate = nil; |
| 88 | + self.outputStream.delegate = nil; |
| 89 | + |
| 90 | + [self.inputStream close]; |
| 91 | + [self.outputStream close]; |
| 92 | + |
| 93 | + [self.networkThread cancel]; |
| 94 | + |
| 95 | + dispatch_source_cancel(self.listeningSource); |
| 96 | + close(self.serverSocket); |
| 97 | +} |
| 98 | + |
| 99 | +// MARK: - Private Methods |
| 100 | + |
| 101 | +- (void)setupNetworkThread { |
| 102 | + self.networkThread = [[NSThread alloc] initWithBlock:^{ |
| 103 | + do { |
| 104 | + @autoreleasepool { |
| 105 | + [[NSRunLoop currentRunLoop] run]; |
| 106 | + } |
| 107 | + } while (![NSThread currentThread].isCancelled); |
| 108 | + }]; |
| 109 | + self.networkThread.qualityOfService = NSQualityOfServiceUserInitiated; |
| 110 | +} |
| 111 | + |
| 112 | +- (BOOL)setupSocketWithFileAtPath:(NSString *)filePath { |
| 113 | + struct sockaddr_un addr; |
| 114 | + memset(&addr, 0, sizeof(addr)); |
| 115 | + addr.sun_family = AF_UNIX; |
| 116 | + |
| 117 | + if (filePath.length > sizeof(addr.sun_path)) { |
| 118 | + NSLog(@"failure: path too long"); |
| 119 | + return false; |
| 120 | + } |
| 121 | + |
| 122 | + unlink(filePath.UTF8String); |
| 123 | + strncpy(addr.sun_path, filePath.UTF8String, sizeof(addr.sun_path) - 1); |
| 124 | + |
| 125 | + int status = bind(self.serverSocket, (struct sockaddr *)&addr, sizeof(addr)); |
| 126 | + if (status < 0) { |
| 127 | + NSLog(@"failure: socket binding"); |
| 128 | + return false; |
| 129 | + } |
| 130 | + |
| 131 | + return true; |
| 132 | +} |
| 133 | + |
| 134 | +- (void)scheduleStreams { |
| 135 | + [self.inputStream scheduleInRunLoop:NSRunLoop.currentRunLoop forMode:NSRunLoopCommonModes]; |
| 136 | + [self.outputStream scheduleInRunLoop:NSRunLoop.currentRunLoop forMode:NSRunLoopCommonModes]; |
| 137 | +} |
| 138 | + |
| 139 | +- (void)unscheduleStreams { |
| 140 | + [self.inputStream removeFromRunLoop:NSRunLoop.currentRunLoop forMode:NSRunLoopCommonModes]; |
| 141 | + [self.outputStream removeFromRunLoop:NSRunLoop.currentRunLoop forMode:NSRunLoopCommonModes]; |
| 142 | +} |
| 143 | + |
| 144 | +@end |
0 commit comments