X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=scandir.cc;h=9727133235a7054dc05cdfe5023376d4f5f98c61;hb=722040937d7709a7b976bf57b045dac6d703c893;hp=cf66ea63ab2fa41d2bfc242278ce1ecc39717086;hpb=1b39ce3ff11a0c7cc742dc3f1aae2161df7cc6ab;p=cumulus.git diff --git a/scandir.cc b/scandir.cc index cf66ea6..9727133 100644 --- a/scandir.cc +++ b/scandir.cc @@ -57,6 +57,11 @@ LocalDb *db; /* Keep track of all segments which are needed to reconstruct the snapshot. */ std::set segment_list; +/* Snapshot intent: 1=daily, 7=weekly, etc. This is not used directly, but is + * stored in the local database and can help guide segment cleaning and + * snapshot expiration policies. */ +double snapshot_intent = 1.0; + /* Selection of files to include/exclude in the snapshot. */ std::list includes; // Paths in which files should be saved std::list excludes; // Paths which will not be saved @@ -223,6 +228,7 @@ int64_t dumpfile(int fd, dictionary &file_info, const string &path, o->write(tss); ref = o->get_ref(); db->StoreObject(ref, block_csum, bytes, block_age); + ref.set_range(0, bytes); delete o; } @@ -557,7 +563,9 @@ void usage(const char *program) " (defaults to \".bz2\")\n" " --signature-filter=COMMAND\n" " program though which to filter descriptor\n" - " --scheme=NAME optional name for this snapshot\n", + " --scheme=NAME optional name for this snapshot\n" + " --intent=FLOAT intended backup type: 1=daily, 7=weekly, ...\n" + " (defaults to \"1\")\n", lbs_version, program ); } @@ -578,6 +586,7 @@ int main(int argc, char *argv[]) {"dest", 1, 0, 0}, // 4 {"scheme", 1, 0, 0}, // 5 {"signature-filter", 1, 0, 0}, // 6 + {"intent", 1, 0, 0}, // 7 {NULL, 0, 0, 0}, }; @@ -613,6 +622,11 @@ int main(int argc, char *argv[]) case 6: // --signature-filter signature_filter = optarg; break; + case 7: // --intent + snapshot_intent = atof(optarg); + if (snapshot_intent <= 0) + snapshot_intent = 1; + break; default: fprintf(stderr, "Unhandled long option!\n"); return 1; @@ -683,7 +697,8 @@ int main(int argc, char *argv[]) string database_path = localdb_dir + "/localdb.sqlite"; db = new LocalDb; db->Open(database_path.c_str(), desc_buf, - backup_scheme.size() ? backup_scheme.c_str() : NULL); + backup_scheme.size() ? backup_scheme.c_str() : NULL, + snapshot_intent); tss = new TarSegmentStore(backup_dest, db);