#ifndef __LEGACY_HH__ #define __LEGACY_HH__ // Copyright (C) 2005 Nathaniel Smith // // This program is made available under the GNU GPL version 2.0 or // greater. See the accompanying file COPYING for details. // // This program is distributed WITHOUT ANY WARRANTY; without even the // implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. // old code needed for reading legacy data (so we can then convert it) #include #include "paths.hh" #include "vocab.hh" class app_state; namespace legacy { //////// // parser for old .mt-attrs file format typedef std::map > dot_mt_attrs_map; void read_dot_mt_attrs(data const & dat, dot_mt_attrs_map & attr); /////// // parsing old-style revisions, for 'rosterify' command // HACK: this is a special reader which picks out the new_manifest field in // a revision; it ignores all other symbols. This is because, in the // pre-roster database, we have revisions holding change_sets, not // csets. If we apply the cset reader to them, they fault. We need to // *partially* read them, however, in order to get the manifest IDs out of // the old revisions (before we delete the revs and rebuild them) typedef std::map > renames_map; void get_manifest_and_renames_for_rev(app_state & app, revision_id const & ident, manifest_id & mid, renames_map & renames); /////// // parsing old-style manifests, for 'rosterify' and 'changesetify' commands typedef std::map > manifest_map; void read_manifest_map(manifest_data const & mdat, manifest_map & man); } // Local Variables: // mode: C++ // fill-column: 76 // c-file-style: "gnu" // indent-tabs-mode: nil // End: // vim: et:sw=2:sts=2:ts=2:cino=>2s,{s,\:s,+s,t0,g0,^-2,e-2,n-2,p2s,(0,=s: #endif