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

Add support for the package::compat_method field #110

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 2 additions & 0 deletions src/cps/loader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@ namespace cps::loader {

auto const name = CPS_TRY(get_required<std::string>(root, "package", "name"));
auto const cps_version = CPS_TRY(get_required<std::string>(root, "package", "cps_version"));
auto const compat_version = CPS_TRY(get_optional<std::string>(root, "package", "compat_version"));
auto const components = CPS_TRY(get_required<Components>(root, "package", "components"));
auto const cps_path = CPS_TRY(get_optional<std::string>(root, "package", "cps_path"));
auto const default_components =
Expand All @@ -330,6 +331,7 @@ namespace cps::loader {
.name = std::move(name),
.cps_version = std::move(cps_version),
.components = std::move(components),
.compat_version = std::move(compat_version),
.cps_path = std::move(cps_path),
.filename = filename.string(),
.default_components = std::move(default_components),
Expand Down
2 changes: 1 addition & 1 deletion src/cps/loader.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ namespace cps::loader {
std::string name;
std::string cps_version;
std::unordered_map<std::string, Component> components;
// TODO: compat-version
std::optional<std::string> compat_version;
// TODO: configuration
// TODO: configurations
std::optional<std::string> cps_path;
Expand Down
43 changes: 38 additions & 5 deletions src/cps/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "cps/version.hpp"

#include <fmt/core.h>
#include <fmt/ranges.h>
#include <tl/expected.hpp>

#include <algorithm>
Expand All @@ -27,6 +28,8 @@ namespace cps::search {

namespace {

using version::to_string;

/// @brief A CPS file, along with the components in that CPS file to
/// load
class Dependency {
Expand Down Expand Up @@ -222,17 +225,19 @@ namespace cps::search {
tl::expected<std::shared_ptr<Node>, std::string>
build_node(std::string_view name, const loader::Requirement & requirements, NodeFactory factory, Env env) {
const std::vector<fs::path> paths = CPS_TRY(find_paths(name, env));
std::vector<std::string> errors{};
for (auto && path : paths) {

auto maybe_node = factory.get(name, path);
if (!maybe_node) {
errors.emplace_back(fmt::format("No CPS file for {} in path {}", name, path.string()));
continue;
}
auto node = maybe_node.value();
const loader::Package & p = node->data.package;

// If this package doesn't meet the requirements then reject it and continue on.
// The conditions it could fail to meet are:
// The conditions it couldIf we fail to meet are:
// 1. the provided version (or Compat-Version) is < the required version
// 2. This package lacks required components
if (requirements.version) {
Expand All @@ -241,27 +246,55 @@ namespace cps::search {
//
// > If not provided, the CPS will not satisfy any request for
// > a specific version of the package.
if (!p.version) {
if (!(p.version && p.compat_version)) {
errors.emplace_back(fmt::format("Tried {}, which does not specify a version or compat_version, "
"but the user requires version {}",
path.string(), requirements.version.value()));
continue;
}
if (version::compare(p.version.value(), version::Operator::lt, requirements.version.value(),
p.version_schema)) {
// From the CPS spec, version 0.12.0, for package::compat_version
//
// > Specifies the oldest version of the package with which
// > this version is compatible. This information is used when
// > a consumer requests a specific version. If the version
// > requested is equal to or newer than the compat_version,
// > the package may be used.
//
// > If not specified, the package is not compatible with
// > previous versions (i.e. compat_version is implicitly
// > equal to version).
auto && v = version::compare(p.compat_version.value_or(p.version.value()), version::Operator::lt,
requirements.version.value(), p.version_schema);
if (!v) {
errors.emplace_back(fmt::format("{}: {}", path.string(), v.error()));
}

if (v.value()) {
errors.emplace_back(fmt::format(
"{} has a version of {}, which is less than the required {}, using the schema {}",
path.string(), p.compat_version.value_or(p.version.value()), requirements.version.value(),
to_string(p.version_schema)));
continue;
}
}

if (!std::all_of(requirements.components.begin(), requirements.components.end(),
[p](const std::string & c) { return p.components.find(c) != p.components.end(); })) {
// TODO: more fine grained error message
errors.emplace_back(fmt::format("{} does not implement all of the required components '{}'",
path.string(), fmt::join(requirements.components, ", ")));
continue;
}

std::vector<std::shared_ptr<Node>> found;
found.reserve(p.require.size());
for (auto && [n, r] : p.require) {
auto && child = build_node(n, r, factory, env);

if (child) {
found.emplace_back(child.value());
} else {
errors.emplace_back(child.error());
break;
}
}
Expand All @@ -273,7 +306,7 @@ namespace cps::search {
return node;
}

return tl::unexpected(fmt::format("Could not find a dependency to satisfy {}", name));
return tl::unexpected(fmt::format("{}:\n {}", name, fmt::join(errors, "\n ")));
}

tl::expected<std::shared_ptr<Node>, std::string> build_node(std::string_view name,
Expand Down
18 changes: 16 additions & 2 deletions src/cps/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,27 @@ namespace cps::version {

} // namespace

std::string to_string(const Schema schema) {
switch (schema) {
case Schema::simple:
return "simple";
case Schema::dpkg:
return "dpkg";
case Schema::rpm:
return "rpm";
case Schema::custom:
return "custom";
default:
abort();
};
}

tl::expected<bool, std::string> compare(std::string_view left, Operator op, std::string_view right, Schema schema) {
switch (schema) {
case Schema::simple:
return simple_compare(left, op, right);
default:
fmt::print(stderr, "Only the simple schema is implemented");
return "Only the simple schema is implemented.";
return tl::unexpected{fmt::format("The {} schema is not implemented", to_string(schema))};
}
}

Expand Down
2 changes: 2 additions & 0 deletions src/cps/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ namespace cps::version {
ge,
};

std::string to_string(const Schema);

/// @brief compare two version strings using the given operator and schema
tl::expected<bool, std::string> compare(std::string_view left, Operator op, std::string_view right, Schema schema);
} // namespace cps::version
9 changes: 8 additions & 1 deletion tests/cases/cps-config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ expected = "-I/something -I/opt/include"
name = "Requires version, but version not set"
cps = "needs-version"
args = ["flags", "--modversion", "--print-errors", "--errors-to-stdout"]
expected = "Could not find a dependency to satisfy needs-version"
expected = "Tried /.*/cps/multiple-components.cps, which does not specify a version or compat_version, but the user requires version 1.0"
re = true
returncode = 1

[[case]]
Expand Down Expand Up @@ -120,3 +121,9 @@ name = "Star components override by name"
cps = "full"
args = ["flags", "--component", "star_values_override", "--cflags", "--print-errors"]
expected = "-fvectorize -I/usr/local/include -I/opt/include -DBAR=2 -DFOO=1 -DOTHER"

[[case]]
name = "Sets compat_version"
cps = "needs-compat-version"
args = ["flags", "--libs", "--print-errors"]
expected = "-l/usr/lib/libfoo.a"
3 changes: 2 additions & 1 deletion tests/cases/pkg-config-compat.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,6 @@ expected = "-I/usr/local/include -I/opt/include"
name = "Requires version, but version not set"
cps = "needs-version"
args = ["pkg-config", "--modversion", "--print-errors", "--errors-to-stdout"]
expected = "Could not find a dependency to satisfy needs-version"
expected = "Tried /.*/cps/multiple-components.cps, which does not specify a version or compat_version, but the user requires version 1.0"
returncode = 1
re = true
15 changes: 15 additions & 0 deletions tests/cps-files/lib/cps/has-compat-version.cps
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "has-compat-version",
"cps_version": "0.12.0",
"version": "1.0.700344",
"compat_version": "1.0.0",
"components": {
"default": {
"type": "archive",
"location": "/usr/lib/libfoo.a"
}
},
"default_components": [
"default"
]
}
19 changes: 19 additions & 0 deletions tests/cps-files/lib/cps/needs-compat-version.cps
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "needs-components2",
"cps_version": "0.12.0",
"requires": {
"has-compat-version": {
"components": ["default"],
"version": "1.0.0"
}
},
"components": {
"default": {
"type": "interface",
"requires": ["has-compat-version"]
}
},
"default_components": [
"default"
]
}
20 changes: 16 additions & 4 deletions tests/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import dataclasses
import enum
import os
import re
import shutil
import sys
import tempfile
Expand All @@ -33,6 +34,7 @@ class TestCase(typing.TypedDict):
expected: str
mode: typing.NotRequired[typing.Literal['pkgconf']]
returncode: typing.NotRequired[int]
re: typing.NotRequired[bool]

class TestDescription(typing.TypedDict):

Expand Down Expand Up @@ -64,14 +66,24 @@ class Result:


def unordered_compare(out: str, expected: str) -> bool:
if out == expected:
return True

out_parts = out.split()
expected_parts = expected.split()
return sorted(out_parts) == sorted(expected_parts)


def is_success(rt: int, case_: TestCase, out: str, expected: str) -> bool:
if rt != case_.get('returncode', 0):
return False

if case_.get('re', False):
return re.search(expected, out) is not None

if out == expected:
return True

return unordered_compare(out, expected)


async def test(args: Arguments, case_: TestCase) -> Result:
prefix = args.prefix or SOURCE_DIR

Expand All @@ -93,7 +105,7 @@ async def test(args: Arguments, case_: TestCase) -> Result:
out = bout.decode().strip()
err = berr.decode().strip()

success = proc.returncode == case_.get('returncode', 0) and unordered_compare(out, expected)
success = is_success(proc.returncode, case_, out, expected)
result = Status.PASS if success else Status.FAIL
returncode = proc.returncode
except asyncio.TimeoutError:
Expand Down
Loading