sapling/ctreemanifest/manifest_fetcher.h
Durham Goode 50d6b599f4 Move ctreemanifest and cdatapack out of remotefilelog
These don't really have any dependencies on remotefilelog, so let's move them
out.
2016-09-21 13:55:12 -07:00

40 lines
917 B
C++

// manifest_fetcher.h - c++ declarations for a fetcher for manifests
//
// Copyright 2016 Facebook, Inc.
//
// This software may be used and distributed according to the terms of the
// GNU General Public License version 2 or any later version.
//
// no-check-code
#ifndef REMOTEFILELOG_MANIFEST_FETCHER_H
#define REMOTEFILELOG_MANIFEST_FETCHER_H
#include "pythonutil.h"
#include <string>
class ManifestFetcher;
#include "manifest.h"
/**
* Class used to obtain Manifests, given a path and node.
*/
class ManifestFetcher {
private:
PythonObj _get;
public:
ManifestFetcher(PythonObj &store);
/**
* Fetches the Manifest from the store for the provided manifest key.
* Returns the manifest if found, or throws an exception if not found.
*/
Manifest *get(
const char *path, size_t pathlen,
std::string &node) const;
};
#endif //REMOTEFILELOG_MANIFEST_FETCHER_H