-
Notifications
You must be signed in to change notification settings - Fork 2
/
RepositoryDependant.h
57 lines (43 loc) · 2.05 KB
/
RepositoryDependant.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef RepositoryDependant_H
#define RepositoryDependant_H
#include "LibGitInitializer.h"
#include <memory>
#include <map>
#include <git2.h>
#include "libgit2wrapper_global.h"
namespace Git
{
/**
* @brief A RepositoryDependant osztály ősként funkcionál az egy adott repositoryhoz köthető objektumok számára.
* Csak ezeken az osztályokon keresztül példányosítható.
*/
class LIBGIT2WRAPPERSHARED_EXPORT RepositoryDependant : public LibGitInitializer
{
private:
static std::map<std::string, std::shared_ptr<git_repository>> instances;
std::shared_ptr<git_repository> openRepository();
void setLibGitRepository();
protected:
std::string pathToRepository;
std::shared_ptr<git_repository> smartLibGitRepository;
RepositoryDependant(std::string _pathToRepo);
RepositoryDependant(const RepositoryDependant&) = default;
RepositoryDependant& operator=(const RepositoryDependant&) = default;
std::unique_ptr<git_commit, void(*)(git_commit*)> getHeadLibGitCommit() const;
std::unique_ptr<git_commit, void(*)(git_commit*)> getLibGitCommit(const std::string& sha) const;
std::string getLibGitCommitSha(const git_commit* commit) const;
git_oid shaToLibGitOid(const std::string& sha) const;
std::string libGitOidToSha(const git_oid* oid) const;
std::vector<std::string> getParentShas(const git_commit* commit) const;
std::unique_ptr<git_tree, void(*)(git_tree*)> getLibGitTreeForCommit(const git_commit* commit) const;
std::unique_ptr<git_remote, void(*)(git_remote*)> getLibGitRemote(const std::string& name) const;
public:
/**
* @brief getRepositoryPath Visszaadja az objektumot karbantartó repository elérési útját.
* @return Teljes elérési útvonal a repository work directory részéig bezárólag.
*/
const std::string& getRepositoryPath() const { return pathToRepository; }
virtual ~RepositoryDependant();
};
}
#endif // RepositoryDependant_H