Content to come.
Content to come.
Content to come.
You can link against system libraries using the package manager. To do so, there needs to be a special package for each system library that contains a module map for that library. Such a wrapper package does not contain any code of its own.
Let’s see an example of using IJG’s JPEG library from an executable.
First, create a directory called example
, and initialize it as a package that builds an executable:
$ mkdir example
$ cd example
example$ swift package init --type executable
Edit the Sources/main.swift
so it consists of this code:
import CJPEG
let jpegData = jpeg_common_struct()
print(jpegData)
To import CJPEG
, the package manager requires
that the JPEG library has been installed by a system packager (eg. apt
, brew
, yum
, etc.).
The following files from the JPEG system-package are of interest:
/usr/lib/libjpeg.so # .dylib on OS X
/usr/include/jpeglib.h
Swift packages that provide module maps for system libraries are handled differently from regular Swift packages.
Note that the system library may be located elsewhere on your system, such as /usr/local/
rather than /usr/
.
Create a directory called CJPEG
next to the example
directory and initialize it as a package
that builds a system module:
example$ cd ..
$ mkdir CJPEG
$ cd CJPEG
CJPEG$ swift package init --type system-module
This creates Package.swift
and module.modulemap
files in the directory. Edit module.modulemap
so it
consists of the following:
module CJPEG [system] {
header "/usr/include/jpeglib.h"
link "jpeg"
export *
}
The convention we hope the community will adopt is to prefix such modules with
C
and to camelcase the modules as per Swift module name conventions. Then the community is free to name another module simplyJPEG
which contains more “Swifty” function wrappers around the raw C interface.
Packages are Git repositories, tagged with semantic versions, containing a Package.swift
file at their root.
Initializing the package created a Package.swift
file, but to make it a usable package we need to initialize
a Git repository with at least one version tag:
CJPEG$ git init
CJPEG$ git add .
CJPEG$ git commit -m "Initial Commit"
CJPEG$ git tag 1.0.0
Now to use the CJPEG package we must declare our dependency in our example app’s Package.swift
:
import PackageDescription
let package = Package(
dependencies: [
.Package(url: "../CJPEG", majorVersion: 1)
]
)
Here we used a relative URL to speed up initial development. If (we hope when) you push your module map package to a public repository you must change the above URL reference so that it is a full, qualified git URL.
Now if we type swift build
in our example app directory we will create an executable:
example$ swift build
…
example$ .build/debug/example
jpeg_common_struct(err: nil, mem: nil, progress: nil, client_data: nil, is_decompressor: 0, global_state: 0)
example$
Let’s expand our example to include JasPer, a JPEG-2000 library. It depends on The JPEG Library. First create a directory called CJasPer
parallel to CJPEG
and our example app, and initialize it as a package that builds a system module:
CJPEG$ cd ..
$ mkdir CJasPer
$ cd CJasPer
CJasPer$ swift package init --type system-module
JasPer depends on JPEG, and thus any package that consumes CJasPer
must know to also import CJPEG
. We accomplish this by specifying the dependency in CJasPer’s Package.swift
:
import PackageDescription
let package = Package(
dependencies: [
.Package(url: "../CJPEG", majorVersion: 1)
])
The module map for CJasPer is similar to that of CJPEG:
module CJasPer [system] {
header "/usr/local/include/jasper/jasper.h"
link "jasper"
export *
}
Take care; the module map must specify all the headers that a system package uses, BUT you must not specify headers that are included from the headers you have already specified. For example with JasPer there are many headers but all the others are included from the umbrella header jasper.h
. If you get the includes wrong you will get intermittent and hard to debug compile issues.
A package is a Git repository with semantically versioned tags and a Package.swift
file, so we must create the Git repository:
CJasPer$ git init
CJasPer$ git add .
CJasPer$ git commit -m "Initial Commit"
CJasPer$ git tag 1.0.0
PLEASE NOTE The package manager clones the tag. If you edit the
module.modulemap
and don’tgit tag -f 1.0.0
you will not build against your local changes.
Back in our example app’s Package.swift
we can change our dependency to CJasPer
:
import PackageDescription
let package = Package(
dependencies: [
.Package(url: "../CJasPer", majorVersion: 1)
])
CJasPer depends on CJPEG, so we do not need to specify our dependency on CJPEG in our example app’s Package.swift.
To test our JasPer support let’s amend our example’s main.swift
:
import CJasPer
guard let version = String.fromCString(jas_getversion()) else {
fatalError("Could not get JasPer version")
}
print("JasPer \(version)")
And run it:
example$ swift build
…
example$ .build/debug/example
JasPer 1.900.1
example$
Note that we do not call the module
CLibjasper
. In general, avoid the lib prefix unless the authors of the package typically always refer to it that way. A good rule of thumb is to look at the header files, here we can see the header is called simply "jasper.h". In the event of non-typical headers (egjpeglib.h
) refer to the project homepage, the authors of the JPEG library refer to it as “The JPEG library” and not “libjpeg” or “jpeglib”. Pay attention to capitalization; it isCJPEG
and notCJpeg
, because JPEG is an acronym and is typically spelled all-caps. It isCJasPer
and notCJasper
because the project itself refers to the library as “JasPer” in all their documentation.
On some platforms, the above steps fail with:
<module-includes>:1:10: note: in file included from <module-includes>:1:
#include "/usr/include/jpeglib.h"
^
/usr/include/jpeglib.h:792:3: error: unknown type name 'size_t'
size_t free_in_buffer; /* # of byte spaces remaining in buffer */
^
This is because jpeglib.h
is not a correct module. To fix this you need to add #include <stdio.h>
to the top of jpeglib.h.
JPEG lib itself needs to be patched, but since this situation will be common we intend to add a workaround system in module packages.
Some system packages provide multiple libraries (.so
and .dylib
files). In such cases you should add all the libraries to that Swift modulemap package’s .modulemap
file:
module CFoo [system] {
header "/usr/local/include/foo/foo.h"
link "foo"
export *
}
module CFooBar [system] {
header "/usr/include/foo/bar.h"
link "foobar"
export *
}
module CFooBaz [system] {
header "/usr/include/foo/baz.h"
link "foobaz"
export *
}
foobar
and foobaz
link to foo
; we don’t need to specify this information in the module-map because the headers foo/bar.h
and foo/baz.h
both include foo/foo.h
. It is very important however that those headers do include their dependent headers, otherwise when the modules are imported into Swift the dependent modules will not get imported automatically and link errors will happen. If these link errors occur to consumers of a package that consumes your package the link errors can be especially difficult to debug.
Module maps must contain absolute paths, thus they are not cross-platform. We intend to provide a solution for this in the package manager. Long term we hope that system libraries and system packagers will provide module maps and thus this component of the package manager will become redundant.
Notably the above steps will not work if you installed JPEG and JasPer with Homebrew since the files will be installed to /usr/local
for now adapt the paths, but as said, we plan to support basic relocations like these.
Version the module maps semantically. The meaning of semantic version is less clear here, so use your best judgement. Do not follow the version of the system library the module map represents, version the module map(s) independently.
Follow the conventions of system packagers; for example, the debian package for python3 is called python3, as there is not a single package for python and python is designed to be installed side-by-side. Were you to make a module map for python3 you should name it CPython3
.
At this time you will need to make another module map package to represent system packages that are built with optional dependencies.
For example, libarchive
optionally depends on xz
, which means it can be compiled with xz
support, but it is not required. To provide a package that uses libarchive with xz you must make a CArchive+CXz
package that depends on CXz
and provides CArchive
.
Content to come.
Simply put: a package is a git repository with semantically versioned tags, that contains Swift sources and a Package.swift
manifest file at its root.
If you are building an app with several modules, at some point you may decide to make that module into an external package. Doing this makes that code available as a dependable library that others may use.
Doing so with the package manager is relatively simple:
- Create a new repository on GitHub
- In a terminal, step into the module directory
git init
git remote add origin [github-URL]
git add .
git commit --message="…"
git tag 1.0.0
git push origin master --tags
Now delete the subdirectory, and amend your Package.swift
so that its package
declaration includes:
let package = Package(
dependencies: [
.Package(url: "…", versions: Version(1,0,0)..<Version(2,0,0)),
]
)
Now type swift build
.
If you are developing an app that consumes a package and you need to work on that package simultaneously then you have several options:
-
Edit the sources that the package manager clones.
The sources are cloned visibly into
./Packages
to facilitate this. -
Alter your
Package.swift
so it refers to a local clone of the package.This can be tedious however as you will need to force an update every time you make a change, including updating the version tag. Both options are currently non-ideal since it is easy to commit code that will break for other members of your team, for example, if you change the sources for
Foo
and then commit a change to your app that uses those new changes but you have not committed those changes toFoo
then you have caused dependency hell for your co-workers.It is our intention to provide tooling to prevent such situations, but for now please be aware of the caveats.
You may be working with code that builds both as a package and not. For example, you may be packaging a project that also builds with Xcode.
In these cases, you can use the build configuration SWIFT_PACKAGE
to conditionally compile code for Swift packages.
#if SWIFT_PACKAGE
import Foundation
#endif
Content to come.
The package manager is designed to support packages which work with a variety of Swift project versions, including both the language and the package manager version.
In most cases, if you want to support multiple Swift versions in a package you should do so by using the language-specific version checks available in the source code itself. However, in some circumstances this may become unmanageable; in particular, when the package manifest itself cannot be written to be Swift version agnostic (for example, because it optionally adopts new package manager features not present in older versions).
The package manager has support for a mechanism to allow Swift version-specific customizations for the both package manifest and the package versions which will be considered.
The tags which define the versions of the package available for clients to use
can optionally be suffixed with a marker in the form of @swift-3
. When the
package manager is determining the available tags for a repository, if a
version-specific marker is available which matches the current tool version,
then it will only consider the versions which have the version-specific
marker. Conversely, version-specific tags will be ignored by any non-matching
tool version.
For example, suppose the package Foo
has the tags
[1.0.0, 1.2.0@swift-3, 1.3.0]
. If version 3.0 of the package manager is
evaluating the available versions for this repository, it will only ever
consider version 1.2.0
. However, version 4.0 would consider only 1.0.0
and
1.3.0
.
This feature is intended for use in the following scenarios:
-
A package wishes to maintain support for Swift 3.0 in older versions, but newer versions of the package require Swift 4.0 for the manifest to be readable. Since Swift 3.0 will not know to ignore those versions, it would fail when performing dependency resolution on the package if no action is taken. In this case, the author can re-tag the last versions which supported Swift 3.0 appropriately.
-
A package wishes to maintain dual support for Swift 3.0 and Swift 4.0 at the same version numbers, but this requires substantial differences in the code. In this case, the author can maintain parallel tag sets for both versions.
It is not expected the packages would ever use this feature unless absolutely necessary to support existing clients. In particular, packages should not adopt this syntax for tagging versions supporting the latest GM Swift version.
The package manager supports looking for any of the following marked tags, in order of preference:
MAJOR.MINOR.PATCH
(e.g.,[email protected]
)MAJOR.MINOR
(e.g.,[email protected]
)MAJOR
(e.g.,1.2.0@swift-3
)
The package manager will additionally look for a version-specific marked
manifest version when loading the particular version of a package, by searching
for a manifest in the form of [email protected]
. The set of markers looked
for is the same as for version-specific tag selection.
This feature is intended for use in cases where a package wishes to maintain compatibility with multiple Swift project versions, but requires a substantively different manifest file for this to be viable (e.g., due to changes in the manifest API).
It is not expected the packages would ever use this feature unless absolutely necessary to support existing clients. In particular, packages should not adopt this syntax for tagging versions supporting the latest GM Swift version.