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