Add a new object-oriented wrapper for building object references.
[cumulus.git] / ref.cc
1 /* LBS: An LFS-inspired filesystem backup system
2  * Copyright (C) 2007  Michael Vrable
3  *
4  * Backups are structured as a collection of objects, which may refer to other
5  * objects.  Object references are used to name other objects or parts of them.
6  * This file defines the class for representing object references and the
7  * textual representation of these references. */
8
9 #include <assert.h>
10 #include <stdio.h>
11 #include <uuid/uuid.h>
12
13 #include <string>
14
15 #include "ref.h"
16
17 using std::string;
18
19 /* Generate a new UUID, and return the text representation of it.  This is
20  * suitable for generating the name for a new segment. */
21 string generate_uuid()
22 {
23     uint8_t uuid[16];
24     char buf[40];
25
26     uuid_generate(uuid);
27     uuid_unparse_lower(uuid, buf);
28     return string(buf);
29 }
30
31
32 ObjectReference::ObjectReference(const std::string& segment, int sequence)
33     : segment(segment)
34 {
35     char seq_buf[64];
36     sprintf(seq_buf, "%08x", sequence);
37     object = seq_buf;
38
39     clear_checksum();
40     clear_range();
41 }
42
43 string ObjectReference::to_string() const
44 {
45     string result = segment + "/" + object;
46
47     if (checksum_valid)
48         result += "(" + checksum + ")";
49
50     if (range_valid) {
51         char buf[64];
52         sprintf(buf, "[%zu+%zu]", range_start, range_length);
53         result += buf;
54     }
55
56     return result;
57 }