2012-07-18 21:59:03 +03:00
|
|
|
|
#pragma once
|
2004-02-06 16:57:10 +02:00
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
|
#include "types.hh"
|
2010-04-21 18:08:58 +03:00
|
|
|
|
#include "pathlocks.hh"
|
2004-02-06 16:57:10 +02:00
|
|
|
|
|
2006-09-05 13:32:47 +03:00
|
|
|
|
#include <time.h>
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
|
|
|
|
|
|
namespace nix {
|
2004-02-06 16:57:10 +02:00
|
|
|
|
|
2020-09-03 12:06:56 +03:00
|
|
|
|
class StorePath;
|
|
|
|
|
|
2004-02-06 16:57:10 +02:00
|
|
|
|
|
2021-09-14 20:05:28 +03:00
|
|
|
|
typedef uint64_t GenerationNumber;
|
2020-07-16 16:14:22 +03:00
|
|
|
|
|
2004-02-06 18:03:27 +02:00
|
|
|
|
struct Generation
|
|
|
|
|
{
|
2020-07-16 16:14:22 +03:00
|
|
|
|
GenerationNumber number;
|
2004-02-06 18:03:27 +02:00
|
|
|
|
Path path;
|
|
|
|
|
time_t creationTime;
|
|
|
|
|
};
|
|
|
|
|
|
2020-07-16 16:14:22 +03:00
|
|
|
|
typedef std::list<Generation> Generations;
|
2004-02-06 18:03:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Returns the list of currently present generations for the specified
|
2020-07-16 16:14:22 +03:00
|
|
|
|
profile, sorted by generation number. Also returns the number of
|
|
|
|
|
the current generation. */
|
|
|
|
|
std::pair<Generations, std::optional<GenerationNumber>> findGenerations(Path profile);
|
2015-05-21 17:26:03 +03:00
|
|
|
|
|
2016-06-02 14:33:49 +03:00
|
|
|
|
class LocalFSStore;
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 15:28:26 +02:00
|
|
|
|
|
2020-09-03 12:06:56 +03:00
|
|
|
|
Path createGeneration(ref<LocalFSStore> store, Path profile, StorePath outPath);
|
2004-02-06 16:57:10 +02:00
|
|
|
|
|
2020-07-16 16:14:22 +03:00
|
|
|
|
void deleteGeneration(const Path & profile, GenerationNumber gen);
|
2004-09-10 16:32:08 +03:00
|
|
|
|
|
2020-07-16 16:14:22 +03:00
|
|
|
|
void deleteGenerations(const Path & profile, const std::set<GenerationNumber> & gensToDelete, bool dryRun);
|
2015-05-21 17:26:03 +03:00
|
|
|
|
|
2020-07-16 16:14:22 +03:00
|
|
|
|
void deleteGenerationsGreaterThan(const Path & profile, GenerationNumber max, bool dryRun);
|
2016-01-07 03:15:19 +02:00
|
|
|
|
|
2015-05-21 17:26:03 +03:00
|
|
|
|
void deleteOldGenerations(const Path & profile, bool dryRun);
|
|
|
|
|
|
|
|
|
|
void deleteGenerationsOlderThan(const Path & profile, time_t t, bool dryRun);
|
|
|
|
|
|
2022-02-25 17:00:00 +02:00
|
|
|
|
void deleteGenerationsOlderThan(const Path & profile, std::string_view timeSpec, bool dryRun);
|
2015-05-21 17:26:03 +03:00
|
|
|
|
|
2004-02-06 16:57:10 +02:00
|
|
|
|
void switchLink(Path link, Path target);
|
|
|
|
|
|
2021-09-14 20:05:28 +03:00
|
|
|
|
/* Roll back a profile to the specified generation, or to the most
|
|
|
|
|
recent one older than the current. */
|
|
|
|
|
void switchGeneration(
|
|
|
|
|
const Path & profile,
|
|
|
|
|
std::optional<GenerationNumber> dstGen,
|
|
|
|
|
bool dryRun);
|
|
|
|
|
|
2010-04-21 18:08:58 +03:00
|
|
|
|
/* Ensure exclusive access to a profile. Any command that modifies
|
|
|
|
|
the profile first acquires this lock. */
|
|
|
|
|
void lockProfile(PathLocks & lock, const Path & profile);
|
|
|
|
|
|
|
|
|
|
/* Optimistic locking is used by long-running operations like `nix-env
|
|
|
|
|
-i'. Instead of acquiring the exclusive lock for the entire
|
|
|
|
|
duration of the operation, we just perform the operation
|
|
|
|
|
optimistically (without an exclusive lock), and check at the end
|
|
|
|
|
whether the profile changed while we were busy (i.e., the symlink
|
|
|
|
|
target changed). If so, the operation is restarted. Restarting is
|
|
|
|
|
generally cheap, since the build results are still in the Nix
|
|
|
|
|
store. Most of the time, only the user environment has to be
|
|
|
|
|
rebuilt. */
|
2022-02-25 17:00:00 +02:00
|
|
|
|
std::string optimisticLockProfile(const Path & profile);
|
2004-02-06 16:57:10 +02:00
|
|
|
|
|
2022-04-13 11:26:50 +03:00
|
|
|
|
/* Creates and returns the path to a directory suitable for storing the user’s
|
|
|
|
|
profiles. */
|
|
|
|
|
Path profilesDir();
|
|
|
|
|
|
2021-11-17 22:35:21 +02:00
|
|
|
|
/* Resolve the default profile (~/.nix-profile by default, $XDG_STATE_HOME/
|
|
|
|
|
nix/profile if XDG Base Directory Support is enabled), and create if doesn't
|
|
|
|
|
exist */
|
2020-03-24 15:26:13 +02:00
|
|
|
|
Path getDefaultProfile();
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
|
}
|