X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=store.h;h=656659db62762e4639d5eee1d7b13a4806b1a6b3;hb=51fabdfbff5dcccfee4df5dd691257c8c19d2962;hp=580881cff4b1d77ea596a8b4330d54539796b745;hpb=dfb3bcd8cbcc6aa8737deddd332884e23d0e4b22;p=cumulus.git diff --git a/store.h b/store.h index 580881c..656659d 100644 --- a/store.h +++ b/store.h @@ -1,7 +1,24 @@ -/* LBS: An LFS-inspired filesystem backup system - * Copyright (C) 2006 Michael Vrable +/* Cumulus: Smart Filesystem Backup to Dumb Servers * - * Backup data is stored in a collection of objects, which are grouped together + * Copyright (C) 2006-2008 The Regents of the University of California + * Written by Michael Vrable + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +/* Backup data is stored in a collection of objects, which are grouped together * into segments for storage purposes. This implementation of the object store * represents segments as TAR files and objects as files within them. */ @@ -116,6 +133,7 @@ public: private: struct segment_info { Tarfile *file; + std::string group; std::string name; // UUID int count; // Objects written to this segment int size; // Combined size of objects written