Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move data part of dub.platform to dub.data #2744

Merged
merged 1 commit into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build-files.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ source/dub/compilers/dmd.d
source/dub/compilers/gdc.d
source/dub/compilers/ldc.d
source/dub/compilers/utils.d
source/dub/data/platform.d
source/dub/data/settings.d
source/dub/dependency.d
source/dub/dependencyresolver.d
Expand Down
2 changes: 1 addition & 1 deletion source/dub/compilers/compiler.d
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module dub.compilers.compiler;

public import dub.compilers.buildsettings;
deprecated("Please `import dub.dependency : Dependency` instead") public import dub.dependency : Dependency;
public import dub.platform : BuildPlatform, matchesSpecification;
public import dub.data.platform : BuildPlatform, matchesSpecification;

import dub.internal.vibecompat.inet.path;
import dub.internal.vibecompat.core.file;
Expand Down
128 changes: 128 additions & 0 deletions source/dub/data/platform.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
/*******************************************************************************
Represent a target platform
Platform informations can be embedded in recipe, such that some settings
only target a certain platform (e.g. sourceFiles, lflags, etc...).
The struct in this module represent that information, structured.
*******************************************************************************/

module dub.data.platform;

/// Represents a platform a package can be build upon.
struct BuildPlatform {
/// Special constant used to denote matching any build platform.
enum any = BuildPlatform(null, null, null, null, -1);

/// Platform identifiers, e.g. ["posix", "windows"]
string[] platform;
/// CPU architecture identifiers, e.g. ["x86", "x86_64"]
string[] architecture;
/// Canonical compiler name e.g. "dmd"
string compiler;
/// Compiler binary name e.g. "ldmd2"
string compilerBinary;
/// Compiled frontend version (e.g. `2067` for frontend versions 2.067.x)
int frontendVersion;
/// Compiler version e.g. "1.11.0"
string compilerVersion;
/// Frontend version string from frontendVersion
/// e.g: 2067 => "2.067"
string frontendVersionString() const
{
import std.format : format;

const maj = frontendVersion / 1000;
const min = frontendVersion % 1000;
return format("%d.%03d", maj, min);
}
///
unittest
{
BuildPlatform bp;
bp.frontendVersion = 2067;
assert(bp.frontendVersionString == "2.067");
}

/// Checks to see if platform field contains windows
bool isWindows() const {
import std.algorithm : canFind;
return this.platform.canFind("windows");
}
///
unittest {
BuildPlatform bp;
bp.platform = ["windows"];
assert(bp.isWindows);
bp.platform = ["posix"];
assert(!bp.isWindows);
}
}

/** Matches a platform specification string against a build platform.
Specifications are build upon the following scheme, where each component
is optional (indicated by []), but the order is obligatory:
"[-platform][-architecture][-compiler]"
So the following strings are valid specifications: `"-windows-x86-dmd"`,
`"-dmd"`, `"-arm"`, `"-arm-dmd"`, `"-windows-dmd"`
Params:
platform = The build platform to match against the platform specification
specification = The specification being matched. It must either be an
empty string or start with a dash.
Returns:
`true` if the given specification matches the build platform, `false`
otherwise. Using an empty string as the platform specification will
always result in a match.
*/
bool matchesSpecification(in BuildPlatform platform, const(char)[] specification)
{
import std.range : empty;
import std.string : chompPrefix, format;
import std.algorithm : canFind, splitter;
import std.exception : enforce;

if (specification.empty) return true;
if (platform == BuildPlatform.any) return true;

auto splitted = specification.chompPrefix("-").splitter('-');
enforce(!splitted.empty, format("Platform specification, if present, must not be empty: \"%s\"", specification));

if (platform.platform.canFind(splitted.front)) {
splitted.popFront();
if (splitted.empty)
return true;
}
if (platform.architecture.canFind(splitted.front)) {
splitted.popFront();
if (splitted.empty)
return true;
}
if (platform.compiler == splitted.front) {
splitted.popFront();
enforce(splitted.empty, "No valid specification! The compiler has to be the last element: " ~ specification);
return true;
}
return false;
}

///
unittest {
auto platform = BuildPlatform(["posix", "linux"], ["x86_64"], "dmd");
assert(platform.matchesSpecification(""));
assert(platform.matchesSpecification("posix"));
assert(platform.matchesSpecification("linux"));
assert(platform.matchesSpecification("linux-dmd"));
assert(platform.matchesSpecification("linux-x86_64-dmd"));
assert(platform.matchesSpecification("x86_64"));
assert(!platform.matchesSpecification("windows"));
assert(!platform.matchesSpecification("ldc"));
assert(!platform.matchesSpecification("windows-dmd"));

// Before PR#2279, a leading '-' was required
assert(platform.matchesSpecification("-x86_64"));
}
117 changes: 1 addition & 116 deletions source/dub/platform.d
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
module dub.platform;

import std.array;
public import dub.data.platform;

// archCheck, compilerCheck, and platformCheck are used below and in
// generatePlatformProbeFile, so they've been extracted into these strings
Expand Down Expand Up @@ -166,119 +167,3 @@ string determineCompiler()
{
mixin(compilerCheck);
}

/** Matches a platform specification string against a build platform.
Specifications are build upon the following scheme, where each component
is optional (indicated by []), but the order is obligatory:
"[-platform][-architecture][-compiler]"
So the following strings are valid specifications: `"-windows-x86-dmd"`,
`"-dmd"`, `"-arm"`, `"-arm-dmd"`, `"-windows-dmd"`
Params:
platform = The build platform to match against the platform specification
specification = The specification being matched. It must either be an
empty string or start with a dash.
Returns:
`true` if the given specification matches the build platform, `false`
otherwise. Using an empty string as the platform specification will
always result in a match.
*/
bool matchesSpecification(in BuildPlatform platform, const(char)[] specification)
{
import std.string : chompPrefix, format;
import std.algorithm : canFind, splitter;
import std.exception : enforce;

if (specification.empty) return true;
if (platform == BuildPlatform.any) return true;

auto splitted = specification.chompPrefix("-").splitter('-');
enforce(!splitted.empty, format("Platform specification, if present, must not be empty: \"%s\"", specification));

if (platform.platform.canFind(splitted.front)) {
splitted.popFront();
if (splitted.empty)
return true;
}
if (platform.architecture.canFind(splitted.front)) {
splitted.popFront();
if (splitted.empty)
return true;
}
if (platform.compiler == splitted.front) {
splitted.popFront();
enforce(splitted.empty, "No valid specification! The compiler has to be the last element: " ~ specification);
return true;
}
return false;
}

///
unittest {
auto platform = BuildPlatform(["posix", "linux"], ["x86_64"], "dmd");
assert(platform.matchesSpecification(""));
assert(platform.matchesSpecification("posix"));
assert(platform.matchesSpecification("linux"));
assert(platform.matchesSpecification("linux-dmd"));
assert(platform.matchesSpecification("linux-x86_64-dmd"));
assert(platform.matchesSpecification("x86_64"));
assert(!platform.matchesSpecification("windows"));
assert(!platform.matchesSpecification("ldc"));
assert(!platform.matchesSpecification("windows-dmd"));

// Before PR#2279, a leading '-' was required
assert(platform.matchesSpecification("-x86_64"));
}

/// Represents a platform a package can be build upon.
struct BuildPlatform {
/// Special constant used to denote matching any build platform.
enum any = BuildPlatform(null, null, null, null, -1);

/// Platform identifiers, e.g. ["posix", "windows"]
string[] platform;
/// CPU architecture identifiers, e.g. ["x86", "x86_64"]
string[] architecture;
/// Canonical compiler name e.g. "dmd"
string compiler;
/// Compiler binary name e.g. "ldmd2"
string compilerBinary;
/// Compiled frontend version (e.g. `2067` for frontend versions 2.067.x)
int frontendVersion;
/// Compiler version e.g. "1.11.0"
string compilerVersion;
/// Frontend version string from frontendVersion
/// e.g: 2067 => "2.067"
string frontendVersionString() const
{
import std.format : format;

const maj = frontendVersion / 1000;
const min = frontendVersion % 1000;
return format("%d.%03d", maj, min);
}
///
unittest
{
BuildPlatform bp;
bp.frontendVersion = 2067;
assert(bp.frontendVersionString == "2.067");
}

/// Checks to see if platform field contains windows
bool isWindows() const {
import std.algorithm : canFind;
return this.platform.canFind("windows");
}
///
unittest {
BuildPlatform bp;
bp.platform = ["windows"];
assert(bp.isWindows);
bp.platform = ["posix"];
assert(!bp.isWindows);
}
}
Loading