2016-02-25 16:43:19 +00:00
|
|
|
#pragma once
|
2023-04-01 03:18:41 +00:00
|
|
|
///@file
|
2016-02-25 16:43:19 +00:00
|
|
|
|
2017-12-15 23:48:09 +00:00
|
|
|
#include <functional>
|
|
|
|
|
2022-11-16 15:49:49 +00:00
|
|
|
#include <nlohmann/json_fwd.hpp>
|
2016-02-25 16:43:19 +00:00
|
|
|
#include "fs-accessor.hh"
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2020-07-13 15:30:42 +00:00
|
|
|
struct Source;
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* Return an object that provides access to the contents of a NAR
|
|
|
|
* file.
|
|
|
|
*/
|
2022-01-17 21:20:05 +00:00
|
|
|
ref<FSAccessor> makeNarAccessor(std::string && nar);
|
2016-02-25 16:43:19 +00:00
|
|
|
|
2020-07-13 15:30:42 +00:00
|
|
|
ref<FSAccessor> makeNarAccessor(Source & source);
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* Create a NAR accessor from a NAR listing (in the format produced by
|
|
|
|
* listNar()). The callback getNarBytes(offset, length) is used by the
|
|
|
|
* readFile() method of the accessor to get the contents of files
|
|
|
|
* inside the NAR.
|
|
|
|
*/
|
2017-12-06 23:50:46 +00:00
|
|
|
typedef std::function<std::string(uint64_t, uint64_t)> GetNarBytes;
|
|
|
|
|
|
|
|
ref<FSAccessor> makeLazyNarAccessor(
|
|
|
|
const std::string & listing,
|
|
|
|
GetNarBytes getNarBytes);
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* Write a JSON representation of the contents of a NAR (except file
|
|
|
|
* contents).
|
|
|
|
*/
|
2022-11-16 15:49:49 +00:00
|
|
|
nlohmann::json listNar(ref<FSAccessor> accessor, const Path & path, bool recurse);
|
2017-11-14 13:23:53 +00:00
|
|
|
|
2016-02-25 16:43:19 +00:00
|
|
|
}
|