diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md new file mode 100644 index 0000000..6c520e4 --- /dev/null +++ b/ARCHITECTURE.md @@ -0,0 +1,26 @@ +## Architecture + +![architecture](architecture.png) + +## Terminology + +
+
Package
+
A locally available version of a dub package, consisting of sources, binaries, and described by it's dub.sdl/json file.
+
PackageSupplier
+
A source to search and fetch package versions (zip bundles) from.
+
PackageManager
+
Responsible to manage packages (fetched or add-local packages), and overrides.
+
PackageRecipe
+
Abstract description of package sources, targets, configurations, and build settings.
+
Generator
+
Responsible for generating a build recipe (e.g. CMakeLists.txt, VS .sln) for a package, config, and build type. Direct builds (dmd, rdmd) are also implemented as generators. +
PackageDependency
+
Unresolved, abstract specification of a dependency, e.g. dependency "vibe-d" version="~>0.8.1".
+
DependencyResolver
+
Algorithm to resolve package dependencies to specific package versions (dub.selections.json), searching available package versions in package suppliers.
+
Target
+
A build output like a static library or executable.
+
BuildCache
+
Caches targets for a specific build id.
+
diff --git a/architecture.graphmlz b/architecture.graphmlz new file mode 100644 index 0000000..73716a1 --- /dev/null +++ b/architecture.graphmlz Binary files differ diff --git a/architecture.png b/architecture.png new file mode 100644 index 0000000..a66bff5 --- /dev/null +++ b/architecture.png Binary files differ