The best way to construct a C appropriate Swift library?
With a purpose to create a Swift library that is going to work with C, we’ve to mess around with unsafe reminiscence pointers to create a C appropriate interface. Luckily I used to be capable of finding a pleasant instance, which served me as a very good start line, on the Swift boards created by Cory Benfield, so that is what we will use on this case. Thanks you. 🙏
last class MyType {
var rely: Int = 69
}
@_cdecl("mytype_create")
public func mytype_create() -> OpaquePointer {
let kind = MyType()
let retained = Unmanaged.passRetained(kind).toOpaque()
return OpaquePointer(retained)
}
@_cdecl("mytype_get_count")
public func mytype_get_count(_ kind: OpaquePointer) -> CInt {
let kind = Unmanaged<MyType>.fromOpaque(UnsafeRawPointer(kind)).takeUnretainedValue()
return CInt(kind.rely)
}
@_cdecl("mytype_destroy")
public func mytype_destroy(_ kind: OpaquePointer) {
_ = Unmanaged<MyType>.fromOpaque(UnsafeRawPointer(kind)).takeRetainedValue()
}
The excellent news is that we do not mandatory should create a separate header file for our interfaces, however the Swift compiler can generate it for us if we offer the -emit-objc-header
flag.
I’ve an article about the swiftc command for newbies and I additionally wrote some issues about the Swift compiler, the place I speak concerning the obtainable flags. This time we will use the -module-name
choice to specify our module identify, we will generate the required information utilizing the -emit-dependencies
flag, parse the supply information as a library (-parse-as-library
), since we would wish to generate a Swift library present the mandatory goal and model data and emit a header file.
swiftc
-module-name mytype
-emit-dependencies
-parse-as-library
-c mytype.swift
-target arm64-apple-macosx12.0
-swift-version 5
-emit-objc-header
-emit-objc-header-path mytype.h
swiftc
-module-name mytype
-emit-dependencies
-parse-as-library
-c mytype.swift
-swift-version 5
-emit-objc-header
-emit-objc-header-path mytype.h
This could generate a mytype.h
and a mytype.o
file plus some further Swift module associated output information. We’ll use these information to construct our last executable, however there are just a few extra further issues I would like to say.
Underneath Linux the header file will not work. It comprises a line #embody Basis/Basis.h
and naturally there isn’t a such header file for Linux. It’s potential to put in the GNUstep package deal (e.g. by way of yum: sudo yum set up gnustep-base gnustep-base-devel gcc-objc
, however for me the clang command nonetheless complained concerning the location of the objc.h
file. Anyway, I simply eliminated the iclude Basis assertion from the header file and I used to be good to go. 😅
The second factor I would like to say is that if you wish to export a category for Swift, that is going to be a bit tougher, as a result of lessons will not be included within the generated header file. You have got two choices on this case. The primary one is to show them into Goal-C lessons, however it will result in issues when utilizing Linux, anyway, that is how you are able to do it:
import Basis
@objc public last class MyType: NSObject {
public var rely: Int = 69
}
I favor the second choice, when you do not change the Swift file, however you create a separate header file and outline your object kind as a struct with a customized kind (mytype_struct.h
).
typedef struct mytype mytype_t;
We’ll want this kind (with the corresponding header file), as a result of the mytype_create
operate returns a pointer that we are able to use to name the opposite mytype_get_count
methodology. 🤔
Compiling C sources utilizing Swift libraries
So how can we use these uncovered Swift objects in C? Within the C programming language you simply should import the headers after which voilá you should utilize every little thing outlined in these headers.
#embody <stdio.h>
#embody "mytype.h"
int foremost() {
mytype_t *merchandise = mytype_create();
int i = mytype_get_count(merchandise);
printf("Hiya, World! %dn", i);
return 0;
}
We are able to use clang to compile the foremost.c
file into an object file utilizing the mandatory header information.
clang -x objective-c -include mytype.h -include mytype_struct.h -c foremost.c
clang -include mytype.h -include mytype_struct.h -c foremost.c
This command will construct a foremost.o
file, which we are able to use to create the ultimate executable. 💪
Linking the ultimate executable
This was the toughest half to determine, however I used to be in a position to hyperlink the 2 object information collectively after just a few hours of scuffling with the ld command and different framework instruments I made a decision to present it up and let swiftc
handle the job, since it may construct and hyperlink each C and Swift-based executables.
We’ll want an inventory of the thing information that we will hyperlink collectively.
ls *.o > LinkFileList
Then we are able to name swiftc
to do the job for us. I suppose it will invoke the ld
command underneath the hood, however I am not a linker knowledgeable, so if you already know extra about this, be happy to achieve out and present me extra information concerning the course of. I’ve to learn this e book for positive. 📚
swiftc
-sdk /Purposes/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.1.sdk
-F /Purposes/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks
-I /Purposes/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib
-L /Purposes/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib
-L /Customers/tib/swiftfromc/
-module-name Instance
-emit-executable
-Xlinker -rpath
-Xlinker @loader_path @/Customers/tib/swiftfromc/LinkFileList
-Xlinker -rpath
-Xlinker /Purposes/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx
-Xlinker -rpath
-Xlinker /Purposes/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-5.5/macosx
-target arm64-apple-macosx12.1
-Xlinker -add_ast_path
-Xlinker /Customers/tib/swiftfromc/mytype.swiftmodule
-L /Purposes/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib
swiftc
-L /house/ec2-user/swiftfromc
-module-name Instance
-emit-executable
-Xlinker -rpath
-Xlinker @loader_path @/house/ec2-user/swiftfromc/LinkFileList
The command above will produce the ultimate linked executable file that you may run by utilizing the ./Instance
snippet and hopefully you may see the “Hiya, World! 69” message. 🙈
If you wish to know extra concerning the rpath linker flag, I extremely suggest studying the article by Marcin Krzyzanowski. If you wish to learn extra about Swift / Goal-C interoperability and utilizing the swiftc command, you need to try this text by RDerik. Lastly if you wish to name C code from Swift and go the opposite means, you need to check out my different weblog put up.