Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

The Foundation Project, providing core utilities, internationalization, and OS independence

License

NotificationsYou must be signed in to change notification settings

CharlesJS/swift-corelibs-foundation

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Foundation framework defines a base layer of functionality that is required for almost all applications. It provides primitive classes and introduces several paradigms that define functionality not provided by either the Objective-C runtime and language or Swift standard library and language.

It is designed with these goals in mind:

  • Provide a small set of basic utility classes.
  • Make software development easier by introducing consistent conventions.
  • Support internationalization and localization, to make software accessible to users around the world.
  • Provide a level of OS independence, to enhance portability.

There is more information on the Foundation frameworkhere.

This project,swift-corelibs-foundation, provides an implementation of the Foundation API for platforms where there is no Objective-C runtime. On macOS, iOS, and other Apple platforms, apps should use the Foundation that comes with the operating system. Our goal is for the API in this project to match the OS-provided Foundation and abstract away the exact underlying platform as much as possible.

Common API

Our primary goal is to achieve implementation parity with Foundation on Apple platforms. This will help to enable the overall Swift goal ofportability.

Therefore, we are not looking to make major API changes to the library that do not correspond with changes made to Foundation on Apple platforms. However, there are some areas where API changes are unavoidable. In these cases, documentation on the method will provide additional detail of the reason for the difference.

For more information on those APIs and the overall design of Foundation, please seeour design document.

Current Status

See ourstatus page for a detailed list of what features are currently implemented.

Using Foundation

Here is a simplemain.swift file which uses Foundation. This guide assumes you have already installed a version of the latestSwift binary distribution.

import Foundation// Make a URLComponents instanceletswifty=URLComponents(string:"https://swift.org")!// Print something useful about the URLprint("\(swifty.host!)")// Output: "swift.org"

You will want to use theSwift Package Manager to build your Swift apps.

Working on Foundation

For information on how to build Foundation, please seeGetting Started. If you would like, please consult ourstatus page to see where you can make the biggest impact, and once you're ready to make changes of your own, check out ourinformation on contributing.

FAQ

Why include Foundation on Linux?

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.

Why include NSString, NSDictionary, NSArray, and NSSet? Aren't those already provided by the standard library?

There are several reasons why these types are useful in Swift as distinct types from the ones in the standard library:

  • They provide reference semantics instead of value semantics, which is a useful tool to have in the toolbox.
  • They can be subclassed to specialize behavior while maintaining the same interface for the client.
  • They exist in archives, and we wish to maintain as much forward and backward compatibility with persistence formats as is possible.
  • They are the backing for almost all SwiftArray,Dictionary, andSet 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.

How do we decide if something belongs in the standard library or Foundation?

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.

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 instances of typeArray andDictionary.

On the other hand, the compiler has no built-in support for types likeURL.URL also ties into more complex functionality like basic networking support. Therefore this type is more appropriate for Foundation.

Why not make the existing Objective-C implementation of Foundation open source?

Foundation on Darwin is written primarily in Objective-C, and the Objective-C runtime is not part of the Swift open source project. CoreFoundation, however, is a portable C library and does not require the Objective-C runtime. It contains much of the behavior that is exposed via the Foundation API. Therefore, it is used on all platforms including Linux.

How do I contribute?

We welcome contributions to Foundation! Please see theknown issues page if you are looking for an area where we need help. We are also standing by on themailing lists to answer questions about what is most important to do and what we will accept into the project.

About

The Foundation Project, providing core utilities, internationalization, and OS independence

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift43.1%
  • C41.1%
  • C++14.6%
  • Python0.5%
  • CMake0.3%
  • Objective-C0.3%
  • Other0.1%

[8]ページ先頭

©2009-2025 Movatter.jp