tayloraswift/swift-biome
**Swift Biome has been superseded by [Swift Unidoc](https://github.com/tayloraswift/swift-unidoc)!**
Overview
Biome is built atop many of the same components as DocC. Its primary input source is the symbolgraph format generated by lib/SymbolGraphGen. It also reads Package.resolved, and Package.catalog, which is generated by the swift-package-catalog plugin.
Since v0.3.1, Biome compiles raw symbolgraphs ahead-of-time into the ss file format, which is a more performant, compact, and compression algorithm-friendly symbolgraph representation.
Biome includes a tool, swift-symbolgraphc, which can be used to convert raw symbolgraphs into ss files.
The swift-biome-resources submodule holds precompiled ss files for recent versions of the standard library, and various sources and webpacks for its default frontend.
The ecosystem repository is not tracked by this repository, but it contains historical symbolgraphs, Package.resolved files, and Package.catalog files for select ecosystem packages.
The swift-biome package includes an executable swift-nio-based target called preview which can be used to build and browse docs locally. This server does not have security features, and is not intended to be used in production.
Consumers of swift-biome with more sophisticated use-cases are expected to implement their own web server interfacing with Biome via WebSemantics.
The frontend is written in Sass and Typescript.
Building
Building Biome requires the DEVELOPMENT-SNAPSHOT-2022-08-09-a toolchain. The toolchain requirement is exact due to the way that swift-syntax and swift-markdown link to the swift runtime.
Currently, Biome can only be built on linux. Ubuntu and Amazon Linux 2 are officially supported. The only technical limitations preventing Biome from building on macOS are a handful of file system APIs used by the PackageLoader target, and we hope to port Biome to macOS soon.
Constituents
Subpackages
Provides a red-black forest implementation, used by Biome’s in-memory database. (Biome uses a red-black forest, and not a collection of B-trees because it versions symbols individually.)
Library products
Implements a URI parser and basic URI operations.
Implements semantic versions.
Decodes raw symbolgraph fragments emitted by the swift compiler, performs module-local post-processing, and encodes them into symbolgraph files. Also provides type definitions for various source code constructs.
Implements the documentation compiler, renderer, and in-memory database.
Decodes the Package.resolved file format.
Decodes the Package.catalog file format, and handles loading and discovery of symbolgraphs, DocC archives, and SPM snippets from the file system. Can also invoke SymbolGraphs to compile raw symbolgraph fragments on-the-fly.
Invokes PackageCatalogs and Biome, and provides convenience APIs for adding symbolgraphs from the former to the latter.
Executable products
Preview(preview)
A basic, unsecured swift-nio-based server suitable for browsing Biome docs locally.
SymbolGraphConvert(swift-symbolgraphc)
A command-line interface for invoking SymbolGraphs. Supports multithreading.
External dependencies
swift-grammarswift-jsonswift-highlightswift-resourceswift-domapple/swift-markdownapple/swift-syntax
The swiftinit.org deployment also depends on @Joannis ’s mongokitten, although swift-biome itself does not depend on it.
Package Metadata
Repository: tayloraswift/swift-biome
Default branch: master
README: README.md