Przeglądaj źródła

pkg_info -> pkg_listing

default_compile_flags
vector-of-bool 3 lat temu
rodzic
commit
0be0a2f39a
11 zmienionych plików z 38 dodań i 36 usunięć
  1. +4
    -4
      src/dds/cli/cmd/repoman_add.cpp
  2. +9
    -7
      src/dds/pkg/db.cpp
  3. +3
    -3
      src/dds/pkg/db.hpp
  4. +3
    -3
      src/dds/pkg/db.test.cpp
  5. +4
    -4
      src/dds/pkg/get/get.cpp
  6. +2
    -2
      src/dds/pkg/get/get.hpp
  7. +1
    -1
      src/dds/pkg/listing.cpp
  8. +1
    -1
      src/dds/pkg/listing.hpp
  9. +7
    -7
      src/dds/repoman/repoman.cpp
  10. +2
    -2
      src/dds/repoman/repoman.hpp
  11. +2
    -2
      src/dds/repoman/repoman.test.cpp

+ 4
- 4
src/dds/cli/cmd/repoman_add.cpp Wyświetl plik

@@ -2,7 +2,7 @@

#include <dds/error/errors.hpp>
#include <dds/pkg/get/get.hpp>
#include <dds/pkg/info.hpp>
#include <dds/pkg/listing.hpp>
#include <dds/repoman/repoman.hpp>
#include <dds/util/http/pool.hpp>
#include <dds/util/result.hpp>
@@ -14,9 +14,9 @@
namespace dds::cli::cmd {

static int _repoman_add(const options& opts) {
auto pkg_id = dds::pkg_id::parse(opts.repoman.add.pkg_id_str);
auto listing = parse_remote_url(opts.repoman.add.url_str);
dds::pkg_info add_info{
auto pkg_id = dds::pkg_id::parse(opts.repoman.add.pkg_id_str);
auto listing = parse_remote_url(opts.repoman.add.url_str);
dds::pkg_listing add_info{
.ident = pkg_id,
.deps = {},
.description = opts.repoman.add.description,

+ 9
- 7
src/dds/pkg/db.cpp Wyświetl plik

@@ -134,7 +134,9 @@ void migrate_repodb_3(nsql::database& db) {
)");
}

void store_with_remote(const neo::sqlite3::statement_cache&, const pkg_info& pkg, std::monostate) {
void store_with_remote(const neo::sqlite3::statement_cache&,
const pkg_listing& pkg,
std::monostate) {
neo_assert_always(
invariant,
false,
@@ -144,7 +146,7 @@ void store_with_remote(const neo::sqlite3::statement_cache&, const pkg_info& pkg
}

void store_with_remote(neo::sqlite3::statement_cache& stmts,
const pkg_info& pkg,
const pkg_listing& pkg,
const http_remote_listing& http) {
nsql::exec( //
stmts(R"(
@@ -162,7 +164,7 @@ void store_with_remote(neo::sqlite3::statement_cache& stmts,
}

void store_with_remote(neo::sqlite3::statement_cache& stmts,
const pkg_info& pkg,
const pkg_listing& pkg,
const git_remote_listing& git) {
std::string url = git.url;
if (url.starts_with("https://") || url.starts_with("http://")) {
@@ -195,7 +197,7 @@ void store_with_remote(neo::sqlite3::statement_cache& stmts,

void do_store_pkg(neo::sqlite3::database& db,
neo::sqlite3::statement_cache& st_cache,
const pkg_info& pkg) {
const pkg_listing& pkg) {
dds_log(debug, "Recording package {}@{}", pkg.ident.name, pkg.ident.version.to_string());
std::visit([&](auto&& remote) { store_with_remote(st_cache, pkg, remote); }, pkg.remote);
auto db_pkg_id = db.last_insert_rowid();
@@ -302,12 +304,12 @@ pkg_db pkg_db::open(const std::string& db_path) {
pkg_db::pkg_db(nsql::database db)
: _db(std::move(db)) {}

void pkg_db::store(const pkg_info& pkg) {
void pkg_db::store(const pkg_listing& pkg) {
nsql::transaction_guard tr{_db};
do_store_pkg(_db, _stmt_cache, pkg);
}

std::optional<pkg_info> pkg_db::get(const pkg_id& pk_id) const noexcept {
std::optional<pkg_listing> pkg_db::get(const pkg_id& pk_id) const noexcept {
auto ver_str = pk_id.version.to_string();
dds_log(trace, "Lookup package {}@{}", pk_id.name, ver_str);
auto& st = _stmt_cache(R"(
@@ -360,7 +362,7 @@ std::optional<pkg_info> pkg_db::get(const pkg_id& pk_id) const noexcept {

auto deps = dependencies_of(pk_id);

auto info = pkg_info{
auto info = pkg_listing{
pk_id,
std::move(deps),
std::move(description),

+ 3
- 3
src/dds/pkg/db.hpp Wyświetl plik

@@ -1,6 +1,6 @@
#pragma once

#include "./info.hpp"
#include "./listing.hpp"

#include <dds/util/fs.hpp>

@@ -32,8 +32,8 @@ public:

static fs::path default_path() noexcept;

void store(const pkg_info& info);
std::optional<pkg_info> get(const pkg_id& id) const noexcept;
void store(const pkg_listing& info);
std::optional<pkg_listing> get(const pkg_id& id) const noexcept;

std::vector<pkg_id> all() const noexcept;
std::vector<pkg_id> by_name(std::string_view sv) const noexcept;

+ 3
- 3
src/dds/pkg/db.test.cpp Wyświetl plik

@@ -26,7 +26,7 @@ public:
};

TEST_CASE_METHOD(catalog_test_case, "Store a simple package") {
db.store(dds::pkg_info{
db.store(dds::pkg_listing{
dds::pkg_id("foo", semver::version::parse("1.2.3")),
{},
"example",
@@ -45,7 +45,7 @@ TEST_CASE_METHOD(catalog_test_case, "Store a simple package") {
CHECK(std::get<dds::git_remote_listing>(info->remote).ref == "master");

// Update the entry with a new git remote ref
CHECK_NOTHROW(db.store(dds::pkg_info{
CHECK_NOTHROW(db.store(dds::pkg_listing{
dds::pkg_id("foo", semver::version::parse("1.2.3")),
{},
"example",
@@ -58,7 +58,7 @@ TEST_CASE_METHOD(catalog_test_case, "Store a simple package") {
}

TEST_CASE_METHOD(catalog_test_case, "Package requirements") {
db.store(dds::pkg_info{
db.store(dds::pkg_listing{
dds::pkg_id{"foo", semver::version::parse("1.2.3")},
{
{"bar", {semver::version::parse("1.2.3"), semver::version::parse("1.4.0")}},

+ 4
- 4
src/dds/pkg/get/get.cpp Wyświetl plik

@@ -14,7 +14,7 @@ using namespace dds;

namespace {

temporary_sdist do_pull_sdist(const pkg_info& listing, std::monostate) {
temporary_sdist do_pull_sdist(const pkg_listing& listing, std::monostate) {
neo_assert_always(
invariant,
false,
@@ -25,7 +25,7 @@ temporary_sdist do_pull_sdist(const pkg_info& listing, std::monostate) {
}

template <remote_listing R>
temporary_sdist do_pull_sdist(const pkg_info& listing, const R& remote) {
temporary_sdist do_pull_sdist(const pkg_listing& listing, const R& remote) {
auto tmpdir = dds::temporary_dir::create();

remote.pull_source(tmpdir.path());
@@ -43,7 +43,7 @@ temporary_sdist do_pull_sdist(const pkg_info& listing, const R& remote) {

} // namespace

temporary_sdist dds::get_package_sdist(const pkg_info& pkg) {
temporary_sdist dds::get_package_sdist(const pkg_listing& pkg) {
auto tsd = std::visit([&](auto&& remote) { return do_pull_sdist(pkg, remote); }, pkg.remote);
if (!(tsd.sdist.manifest.id == pkg.ident)) {
throw_external_error<errc::sdist_ident_mismatch>(
@@ -72,7 +72,7 @@ void dds::get_all(const std::vector<pkg_id>& pkgs, pkg_cache& repo, const pkg_db
return *info;
});

auto okay = parallel_run(absent_pkg_infos, 8, [&](pkg_info inf) {
auto okay = parallel_run(absent_pkg_infos, 8, [&](pkg_listing inf) {
dds_log(info, "Download package: {}", inf.ident.to_string());
auto tsd = get_package_sdist(inf);
std::scoped_lock lk{repo_mut};

+ 2
- 2
src/dds/pkg/get/get.hpp Wyświetl plik

@@ -7,9 +7,9 @@ namespace dds {

class pkg_cache;
class pkg_db;
struct pkg_info;
struct pkg_listing;

temporary_sdist get_package_sdist(const pkg_info&);
temporary_sdist get_package_sdist(const pkg_listing&);

void get_all(const std::vector<pkg_id>& pkgs, dds::pkg_cache& repo, const pkg_db& cat);


src/dds/pkg/info.cpp → src/dds/pkg/listing.cpp Wyświetl plik

@@ -1,4 +1,4 @@
#include "./info.hpp"
#include "./listing.hpp"

#include <dds/error/errors.hpp>
#include <dds/util/string.hpp>

src/dds/pkg/info.hpp → src/dds/pkg/listing.hpp Wyświetl plik

@@ -18,7 +18,7 @@ using remote_listing_var = std::variant<std::monostate, git_remote_listing, http

remote_listing_var parse_remote_url(std::string_view url);

struct pkg_info {
struct pkg_listing {
pkg_id ident;
std::vector<dependency> deps;
std::string description;

+ 7
- 7
src/dds/repoman/repoman.cpp Wyświetl plik

@@ -1,6 +1,6 @@
#include "./repoman.hpp"

#include <dds/pkg/info.hpp>
#include <dds/pkg/listing.hpp>
#include <dds/sdist/package.hpp>
#include <dds/util/log.hpp>
#include <dds/util/result.hpp>
@@ -151,11 +151,11 @@ void repo_manager::import_targz(path_ref tgz_file) {
neo::sqlite3::transaction_guard tr{_db};

dds_log(debug, "Recording package {}@{}", man->id.name, man->id.version.to_string());
dds::pkg_info info{.ident = man->id,
.deps = man->dependencies,
.description = "[No description]",
.remote = {}};
auto rel_url = fmt::format("dds:{}", man->id.to_string());
dds::pkg_listing info{.ident = man->id,
.deps = man->dependencies,
.description = "[No description]",
.remote = {}};
auto rel_url = fmt::format("dds:{}", man->id.to_string());
add_pkg(info, rel_url);

auto dest_path = pkg_dir() / man->id.name / man->id.version.to_string() / "sdist.tar.gz";
@@ -201,7 +201,7 @@ void repo_manager::delete_package(pkg_id pkg_id) {
}
}

void repo_manager::add_pkg(const pkg_info& info, std::string_view url) {
void repo_manager::add_pkg(const pkg_listing& info, std::string_view url) {
dds_log(info, "Directly add an entry for {}", info.ident.to_string());
DDS_E_SCOPE(info.ident);
nsql::recursive_transaction_guard tr{_db};

+ 2
- 2
src/dds/repoman/repoman.hpp Wyświetl plik

@@ -10,7 +10,7 @@

namespace dds {

struct pkg_info;
struct pkg_listing;

struct e_init_repo {
fs::path path;
@@ -57,7 +57,7 @@ public:

void import_targz(path_ref tgz_path);
void delete_package(pkg_id id);
void add_pkg(const pkg_info& info, std::string_view url);
void add_pkg(const pkg_listing& info, std::string_view url);

auto all_packages() const noexcept {
using namespace neo::sqlite3::literals;

+ 2
- 2
src/dds/repoman/repoman.test.cpp Wyświetl plik

@@ -1,6 +1,6 @@
#include <dds/repoman/repoman.hpp>

#include <dds/pkg/info.hpp>
#include <dds/pkg/listing.hpp>
#include <dds/temp.hpp>

#include <neo/sqlite3/error.hpp>
@@ -35,7 +35,7 @@ TEST_CASE_METHOD(tmp_repo, "Open and import into a repository") {
}

TEST_CASE_METHOD(tmp_repo, "Add a package directly") {
dds::pkg_info info{
dds::pkg_listing info{
.ident = dds::pkg_id::parse("foo@1.2.3"),
.deps = {},
.description = "Something",

Ładowanie…
Anuluj
Zapisz