2004-02-06 15:57:10 +01:00
|
|
|
#ifndef __PROFILES_H
|
|
|
|
#define __PROFILES_H
|
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
#include "types.hh"
|
2010-04-21 17:08:58 +02:00
|
|
|
#include "pathlocks.hh"
|
2004-02-06 15:57:10 +01:00
|
|
|
|
2006-09-05 12:32:47 +02:00
|
|
|
#include <time.h>
|
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
|
|
|
|
namespace nix {
|
2004-02-06 15:57:10 +01:00
|
|
|
|
|
|
|
|
2004-02-06 17:03:27 +01:00
|
|
|
struct Generation
|
|
|
|
{
|
|
|
|
int number;
|
|
|
|
Path path;
|
|
|
|
time_t creationTime;
|
2004-02-08 15:07:43 +01:00
|
|
|
Generation()
|
|
|
|
{
|
|
|
|
number = -1;
|
|
|
|
}
|
|
|
|
operator bool() const
|
|
|
|
{
|
|
|
|
return number != -1;
|
|
|
|
}
|
2004-02-06 17:03:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef list<Generation> Generations;
|
|
|
|
|
|
|
|
|
|
|
|
/* Returns the list of currently present generations for the specified
|
|
|
|
profile, sorted by generation number. */
|
2004-02-06 17:16:55 +01:00
|
|
|
Generations findGenerations(Path profile, int & curGen);
|
2004-02-06 17:03:27 +01:00
|
|
|
|
2005-02-14 17:16:02 +01:00
|
|
|
Path createGeneration(Path profile, Path outPath);
|
2004-02-06 15:57:10 +01:00
|
|
|
|
2004-09-10 15:32:08 +02:00
|
|
|
void deleteGeneration(const Path & profile, unsigned int gen);
|
|
|
|
|
2004-02-06 15:57:10 +01:00
|
|
|
void switchLink(Path link, Path target);
|
|
|
|
|
2010-04-21 17:08:58 +02: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. */
|
|
|
|
string optimisticLockProfile(const Path & profile);
|
2004-02-06 15:57:10 +01:00
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-06 15:57:10 +01:00
|
|
|
#endif /* !__PROFILES_H */
|