<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body><div>&nbsp; &nbsp; grep -R "import Glibc" ~/Code --include "*.swift" | wc -l<br></div>
<div>&nbsp; &nbsp; 297</div>
<div><br></div>
<div>As someone who might be characterized as suffering from the problem this proposal purports to solve, I am not convinced.<br></div>
<div><br></div>
<div>The primary problem here is that "libc" is a misnomer. &nbsp;Did you mean musl, dietlibc, or glibc? &nbsp;Did you mean "whatever libc my distro likes?" &nbsp;Swift in practice only supports one per platform, but that is a bug not a feature, and that bug should not be standardized. &nbsp;We could try to invent some syntax to specify one but now we are back with the current system again.<br></div>
<div><br></div>
<div>The other problem is that in all my usages, "import Glibc" is not a real problem I face. &nbsp;The real problems are that "the libcs <i>plural</i>" are *just different*. &nbsp;Darwin has timeval64, glibc does not, and you'd better check your arch and pick the right one, only on one platform. &nbsp;SO_REUSEADDR has one type in Brand X and another type in Brand Y. &nbsp;Don't even get me *started* on poll, EREs, or half a dozen other behavioral variations. &nbsp;<br></div>
<div><br></div>
<div>Taking two different libraries and pretending they are the same is not the solution, it's the disease. &nbsp;The way out of this swamp for most developers is to use a real Swift library, the same damn Swift library, on all platforms (sadly, Foundation today does not meet this requirement). &nbsp;The way out of this swamp for crazy people like me who must write to the metal is to actually write to the metal, to the particular libc being targeted, not to a hypothetical platonic ideal libc which does not exist. &nbsp;<br></div>
<div><br></div>
<div>I realize that four lines at the top of my files is a *visible* annoyance, but fixing it just promotes it to an invisible one.&nbsp;<br></div>
<div><br></div>
<div>Drew</div>
<div><br></div>
<div id="sig56767961"><div class="signature">--<br></div>
<div class="signature">&nbsp; Drew Crawford<br></div>
<div class="signature">&nbsp; drew@sealedabstract.com<br></div>
<div class="signature"><br></div>
</div>
<div><br></div>
<div><br></div>
<div>On Wed, Nov 9, 2016, at 12:58 PM, Alex Blewitt via swift-evolution wrote:<br></div>
<blockquote type="cite"><div>Although out of scope for phase 1, something that keeps cropping up in a variety of Linux/Darwin Swift scripts is the conditional inclusion of Darwin or GlibC per platform. The last point was an observation that creating a 'nice' wrapper for LibC or a cleaned up POSIX API is a non-goal:<br></div>
<div><br></div>
<div><a href="https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20161003/027621.html">https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20161003/027621.html</a><br></div>
<div><br></div>
<div><blockquote type="cite"><pre style="white-space:pre-wrap;background-color:rgb(255, 255, 255);">I think it makes sense to have a cross platform “libc” which is an alias for darwin, glibc, or whatever, and just leave it at that.

Other proposals for a “POSIX” module have gotten bogged down because inevitably the idea comes up to make the resultant API nicer in various ways: rename creat, handle errno more nicely, make use of multiple return values, … etc.  The problem with this approach is that we don’t *want* people using these layer of APIs, we want higher level Foundation-like APIs to be used.

...<i>
</i>
I think we should formally decide that a “nice” wrapper for libc is a non-goal.  There is too much that doesn’t make sense to wrap at this level - the only Swift code that should be using this is the implementation of higher level API, and such extremely narrow cases that we can live with them having to handle the problems of dealing with the raw APIs directly.

-Chris<br></pre></blockquote><div><br></div>
</div>
<div>I have created a draft for a proposal to create such a module. Comments are welcome.<br></div>
<div><br></div>
<div>Alex<br></div>
<div><br></div>
<div>---<br></div>
<div><br></div>
<div># Libc module for Swift<br></div>
<div><br></div>
<div>* Proposal: [SE-NNNN](NNNN-filename.md)<br></div>
<div>* Authors: [Alex Blewitt](<a href="https://github.com/alblue">https://github.com/alblue</a>)<br></div>
<div>* Review Manager: TBD<br></div>
<div>* Status: **Under discussion**<br></div>
<div><br></div>
<div>## Introduction<br></div>
<div><br></div>
<div>When running on Darwin, the base module is called `Darwin`. When running<br></div>
<div>on Linux or other operating systems, it's called `GlibC`.&nbsp;<br></div>
<div><br></div>
<div>This repeatedly leads to code such as:<br></div>
<div><br></div>
<div>&nbsp; &nbsp; ````<br></div>
<div>&nbsp; &nbsp; #if os(Linux)<br></div>
<div>&nbsp; &nbsp; &nbsp; import Glibc<br></div>
<div>&nbsp; &nbsp; #else<br></div>
<div>&nbsp; &nbsp; &nbsp; import Darwin<br></div>
<div>&nbsp; &nbsp; #endif<br></div>
<div>&nbsp; &nbsp; ```<br></div>
<div><br></div>
<div>As the set of operating systems evolve, one of these conditional imports<br></div>
<div>needs to be updated. Instead of repeating this, make it available via a<br></div>
<div>standard `Libc` module in the base Swift library.<br></div>
<div><br></div>
<div>Swift-evolution thread: [Discussion thread topic for that proposal](<a href="https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20161003/027621.html">https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20161003/027621.html</a>)<br></div>
<div><br></div>
<div>## Motivation<br></div>
<div><br></div>
<div>The [set of platforms](<a href="https://github.com/apple/swift/blob/fdf6ee20e4ca1fd32482f4b7b88a97ebdda52cd2/lib/Basic/LangOptions.cpp#L26-L36">https://github.com/apple/swift/blob/fdf6ee20e4ca1fd32482f4b7b88a97ebdda52cd2/lib/Basic/LangOptions.cpp#L26-L36</a>)<br></div>
<div>that Swift currently runs on can be divided into two; Darwin and XNU based systems<br></div>
<div>(macOS, iOS, watchOS, tvOS), Windows, and Unix based systems<br></div>
<div>(Linux, FreeBSD, Android, PS4).&nbsp;<br></div>
<div><br></div>
<div>The base module on Darwin is called `Darwin`, while on Linux and<br></div>
<div>other Unix systems the base module is called `Glibc`. The base<br></div>
<div>module is typically conditionally included when working at a lower layer<br></div>
<div>than Foundation (which has the same detail involved in importing the<br></div>
<div>base module).<br></div>
<div><br></div>
<div>As a result, conditionally importing the right version typically uses<br></div>
<div>a conditional test based on the operating system, and the same code is<br></div>
<div>seen in a number of different modules, both internal to Swift and external:<br></div>
<div><br></div>
<div>* [Test for mmap in stdlib](<a href="https://github.com/apple/swift/blob/07b196d2f9a5facc490b35e3649e18937796239b/test/stdlib/mmap.swift#L4-L9">https://github.com/apple/swift/blob/07b196d2f9a5facc490b35e3649e18937796239b/test/stdlib/mmap.swift#L4-L9</a>)<br></div>
<div>* [Validation test for PassIfChildCrashedDuringTestExecution](<a href="https://github.com/apple/swift/blob/c3b7709a7c4789f1ad7249d357f69509fb8be731/validation-test/StdlibUnittest/ChildProcessShutdown/PassIfChildCrashedDuringTestExecution.swift#L4-L9">https://github.com/apple/swift/blob/c3b7709a7c4789f1ad7249d357f69509fb8be731/validation-test/StdlibUnittest/ChildProcessShutdown/PassIfChildCrashedDuringTestExecution.swift#L4-L9</a>)<br></div>
<div>* [Kitura's Socket definitions](<a href="https://github.com/IBM-Swift/BlueSocket/blob/49c5af8b6953cecc8674a7fcf746fa27a72c056a/Sources/Socket.swift#L21-L25">https://github.com/IBM-Swift/BlueSocket/blob/49c5af8b6953cecc8674a7fcf746fa27a72c056a/Sources/Socket.swift#L21-L25</a>)<br></div>
<div>* [Vapor's HTTP Server](<a href="https://github.com/vapor/engine/blob/1f95094ee470408309e98dd56b2251210d6a2a3d/Sources/HTTP/Models/Server/HTTP%2BServer.swift#L1-L5">https://github.com/vapor/engine/blob/1f95094ee470408309e98dd56b2251210d6a2a3d/Sources/HTTP/Models/Server/HTTP%2BServer.swift#L1-L5</a>)<br></div>
<div><br></div>
<div>Some have already created a `Libc` module that effectively does what this<br></div>
<div>proposal suggests, such as [Vapor's Core Libc](<a href="https://github.com/vapor/core/blob/master/Sources/libc/libc.swift">https://github.com/vapor/core/blob/master/Sources/libc/libc.swift</a>)<br></div>
<div><br></div>
<div>&nbsp; &nbsp; ```<br></div>
<div>&nbsp; &nbsp; #if os(Linux)<br></div>
<div>&nbsp; &nbsp; &nbsp; @_exported import Glibc<br></div>
<div>&nbsp; &nbsp; #else<br></div>
<div>&nbsp; &nbsp; &nbsp; @_exported import Darwin.C<br></div>
<div>&nbsp; &nbsp; #endif<br></div>
<div>&nbsp; &nbsp; ```<br></div>
<div><br></div>
<div>Each of these examples has subtly different behaviour; for example,<br></div>
<div>whether or not the os tests only include Linux (and then fail over to<br></div>
<div>Darwin), or whether they contain other Unices such as FreeBSD and Android.<br></div>
<div><br></div>
<div>## Proposed solution<br></div>
<div><br></div>
<div>The solution is to formalise these patterns in the base Swift library<br></div>
<div>and present a `Libc` module that conditionally imports `Glibc` or `Darwin`<br></div>
<div>based on the correct platform. Additional operating systems can be added<br></div>
<div>and kept up to date with the list of supported operating system conditionals<br></div>
<div>and including a failure message when an unknown operating system is detected.<br></div>
<div><br></div>
<div>## Detailed design<br></div>
<div><br></div>
<div>This will add a `Libc` module for the standard library that re-exports<br></div>
<div>the correct import depending on the operating system:<br></div>
<div><br></div>
<div>&nbsp; &nbsp; ```<br></div>
<div>&nbsp; &nbsp; #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)<br></div>
<div>&nbsp; &nbsp; &nbsp; @_exported import Darwin<br></div>
<div>&nbsp; &nbsp; #elseif os(Linux) || os(FreeBSD) || os(Android) || os(PS4)<br></div>
<div>&nbsp; &nbsp; &nbsp; @_exported import Glibc<br></div>
<div>&nbsp; &nbsp; #else<br></div>
<div>&nbsp; &nbsp; &nbsp; fatalError("Libc not supported on operating system")<br></div>
<div>&nbsp; &nbsp; #endif<br></div>
<div>&nbsp; &nbsp; ```<br></div>
<div><br></div>
<div>As new operating systems are added or become supported (such as Windows)<br></div>
<div>the standard imports can be added appropriately to this module.<br></div>
<div><br></div>
<div>## Source compatibility<br></div>
<div><br></div>
<div>There is no impact to source compatibility, since this proposal is additive.<br></div>
<div>Existing source code will work regardless of if this module is used or not.<br></div>
<div>However it improves source compatibility going forwards, since as new<br></div>
<div>operating systems are added this file will be updated, instead of the change<br></div>
<div>having to be made in multiple open-source projects.<br></div>
<div><br></div>
<div>## Effect on ABI stability<br></div>
<div><br></div>
<div>There is no impact to ABI compatibility, since this proposal is additive.<br></div>
<div>Existing source code will work regardless of if this module is used or not.<br></div>
<div><br></div>
<div>## Effect on API resilience<br></div>
<div><br></div>
<div>There is no impact to ABI resilience, since this proposal is additive.<br></div>
<div>Existing source code will work regardless of if this module is used or not.<br></div>
<div><br></div>
<div>## Alternatives considered<br></div>
<div><br></div>
<div>The first alternative is to do nothing. Existing Swift projects already<br></div>
<div>conditionally import these modules, or import a higher-level module (such<br></div>
<div>as `Foundation`) that performs the conditional import.<br></div>
<div><br></div>
<div>The second alternative is to export sub-modules of the modules. Clang<br></div>
<div>permits imports of sub-modules, so it could be possible to import only<br></div>
<div>`Darwin.POSIX` and `GlibC.POSIX`. However, in Swift, importing a sub-module<br></div>
<div>makes the whole module available anyway, so the difference between importing<br></div>
<div>a whole module versus a submodule is irrelevant.<br></div>
<div><br></div>
<div>The third alternative is to explore creating standard functions (in Swift)<br></div>
<div>corresponding to POSIX functionality, but where the format of the return<br></div>
<div>results are known. This would require a per-operating system binding to<br></div>
<div>expose operating-system details such as the byte ordering of structures<br></div>
<div>as used in the various `getaddrinfo` calls. These may evolve out of future<br></div>
<div>evolution proposals and this does not conflict with those goals at this<br></div>
<div>stage. There are additional clean-ups that this could address, such as the<br></div>
<div>use of the (thread-local) `errno` which may not be reliably read from within<br></div>
<div>Swift. However, the (swift-evolution thread)[<a href="https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20161003/027602.html">https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20161003/027602.html</a>]<br></div>
<div>calls this "the perfect being the enemy of the good". Instead of trying to<br></div>
<div>solve all of these problems, they should be handled by subsequent<br></div>
<div>proposals (such as (Johannes' proposal)[<a href="https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20161031/028627.html">https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20161031/028627.html</a>]<br></div>
<div>regarding errno handling sent to swift-evolution previously).<br></div>
<div><u>_______________________________________________</u><br></div>
<div>swift-evolution mailing list<br></div>
<div><a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br></div>
<div><a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br></div>
</blockquote><div><br></div>
</body>
</html>