Skip to content

Commit 3e32cef

Browse files
committed
Add much more detail to the README
1 parent 0c0e1d9 commit 3e32cef

File tree

2 files changed

+43
-8
lines changed

2 files changed

+43
-8
lines changed

Docs/Design.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11

2-
# Roadmap and Design Principles
3-
4-
## Part of Swift 3.0
5-
6-
Our primary goal is to achieve implementation parity with Foundation on Apple platforms. This will help to enable the overall Swift 3 roadmap goal of **portability**.
7-
82
# Design Principles
93

104
## Portability
@@ -129,4 +123,4 @@ There are some additional considerations when working on the CoreFoundation part
129123

130124
* Surround Swift-runtime-specific code with the standard macro `#if DEPLOYMENT_RUNTIME_SWIFT`.
131125
* Surround platform-specific code with our standard macros `DEPLOYMENT_TARGET_MACOSX`, `DEPLOYMENT_TARGET_EMBEDDED` (all iOS platforms and derivatives), `DEPLOYMENT_TARGET_LINUX`.
132-
* Follow the code style of the .c file that you are working in.
126+
* Follow the coding style of the .c file that you are working in.

README.md

+42-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ There is more information on the Foundation framework [here](https://developer.a
1414
1515
This project provides an implementation of the Foundation API for platforms where there is no Objective-C runtime. On OS X, iOS, and other Apple platforms, apps should use the Foundation that comes with the operating system. Our goal is to abstract away the exact underlying platform as much as possible.
1616

17+
## Goals
18+
19+
### Part of Swift 3.0
20+
21+
Our primary goal is to achieve implementation parity with Foundation on Apple platforms. This will help to enable the overall Swift 3 goal of **portability**.
22+
23+
In our first year, we are not looking to make major API changes to the library. We feel that this will hamper the primary goal. There are some areas where API changes are unavoidable, however. For more information on those APIs and the overall design of Foundation, please see [our design document](Docs/Design.md).
24+
1725
## Using Foundation
1826

1927
Here is a simple `main.swift` file which uses Foundation. This guide assumes you have already installed a version of the latest [Swift binary distribution](https://swift.org/downloads#latest).
@@ -22,14 +30,47 @@ Here is a simple `main.swift` file which uses Foundation. This guide assumes you
2230
import Foundation
2331
2432
// Make an URLComponents instance
25-
let swifty = NSURLComponents(string: "http://swift.org")!
33+
let swifty = NSURLComponents(string: "https://swift.org")!
2634
2735
// Print something useful about the URL
2836
print("\(swifty.host!)")
2937
3038
// Output: "swift.org"
3139
```
3240

41+
You will want to use the [Swift Package Manager](https://swift.org/package-manager/) to build your Swift apps.
42+
3343
## Working on Foundation
3444

3545
Please see [Getting Started](Docs/GettingStarted.md).
46+
47+
## FAQ
48+
49+
##### Why include Foundation on Linux?
50+
51+
We believe that the Swift standard library should remain small and laser-focused on providing support for language primitives. The Foundation framework has the flexibility to include higher-level concepts and to build on top of the standard library, much in the same way that it builds upon the C standard library and Objective-C runtime on Darwin platforms.
52+
53+
##### Why include NSString, NSDictionary, NSArray, and NSSet? Aren't those already provided by the standard library?
54+
55+
There are several reasons why these types are useful in Swift as distinct types from the ones in the standard library:
56+
57+
* They provide reference semantics instead of value semantics, which is a useful tool to have in the toolbox.
58+
* They can be subclassed to specialize behavior while maintaining the same interface for the client.
59+
* They exist in archives, and we wish to maintain as much forward and backward compatibility with persistence formats as is possible.
60+
* They are the backing for almost all Swift Array, Dictionary, and Set objects that you receive from frameworks implemented in Objective-C on Darwin platforms. This may be considered an implementation detail, but it leaks into client code in many ways. We want to provide them here so that your code will remain portable.
61+
62+
##### How do we decide if something belongs in the standard library or Foundation?
63+
64+
In general, the dividing line should be drawn in overlapping area of what people consider the language and what people consider to be a library feature.
65+
66+
For example, Optional is a type provided by the standard library. However, the compiler understands the concept to provide support for things like optional-chaining syntax. The compiler also has syntax for creating Arrays and Dictionaries.
67+
68+
On the other hand, the compiler has no built-in support for types like NSURL. NSURL also has ties into more complex functionality like basic networking support. Therefore this type is more appropriate for Foundation.
69+
70+
##### Why not make the existing Objective-C implementation of Foundation open source?
71+
72+
The Objective-C runtime is not part of the Swift open source project. We can, however, use the open source CoreFoundation implementation. CF is written in C and does not require Objective-C.
73+
74+
##### How do I contribute?
75+
76+
We welcome contributions to Foundation! Please see the [Known Issues](Docs/Issues.md) page if you are looking for an area where we need help. We are also standing by on the [Mailing Lists](https://swift.org/community/#communication) to answer questions about what is most important to do and what we will accept into the project.

0 commit comments

Comments
 (0)