You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Docs/Design.md
+1-7
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,4 @@
1
1
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
-
8
2
# Design Principles
9
3
10
4
## Portability
@@ -129,4 +123,4 @@ There are some additional considerations when working on the CoreFoundation part
129
123
130
124
* Surround Swift-runtime-specific code with the standard macro `#if DEPLOYMENT_RUNTIME_SWIFT`.
131
125
* 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.
Copy file name to clipboardexpand all lines: README.md
+42-1
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,14 @@ There is more information on the Foundation framework [here](https://developer.a
14
14
15
15
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.
16
16
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
+
17
25
## Using Foundation
18
26
19
27
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
22
30
import Foundation
23
31
24
32
// Make an URLComponents instance
25
-
let swifty = NSURLComponents(string: "http://swift.org")!
33
+
let swifty = NSURLComponents(string: "https://swift.org")!
26
34
27
35
// Print something useful about the URL
28
36
print("\(swifty.host!)")
29
37
30
38
// Output: "swift.org"
31
39
```
32
40
41
+
You will want to use the [Swift Package Manager](https://swift.org/package-manager/) to build your Swift apps.
42
+
33
43
## Working on Foundation
34
44
35
45
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