summaryrefslogtreecommitdiff
path: root/src/blob.cpp
blob: 2211736363658539ae3f33f6b91de6bbac94f63e (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include "blob.h"
#include "repo.h"
#include <Ice/Current.h>
#include <Ice/ObjectAdapter.h>
#include <algorithm>
#include <cerrno>
#include <exceptions.h>
#include <file.h>
#include <memory>
#include <sys/stat.h>
#include <types.h>

GitFS::Blob::Blob(const Repo * const r, std::string && path) :
	repo(r), entry(Git::TreeEntryByPath(repo->tree, path)), blob(getBlob()), blobSize(git_blob_rawsize(blob.get())),
	blobContent(static_cast<const char *>(git_blob_rawcontent(blob.get())))
{
}

GitFS::Git::BlobPtr
GitFS::Blob::getBlob() const
{
	const auto mode = git_tree_entry_filemode(entry.get());

	if (S_ISDIR(mode)) {
		throw NetFS::SystemError(EISDIR);
	}
	if (S_ISLNK(mode)) {
		throw NetFS::SystemError(ELOOP);
	}

	return Git::BlobLookup(repo->repo, *git_tree_entry_id(entry.get()));
}

void
GitFS::Blob::close(const ::Ice::Current & current)
{
	current.adapter->remove(current.id);
}

NetFS::Attr
GitFS::Blob::fgetattr(const ::Ice::Current &)
{
	NetFS::Attr a;
	a << *blob << *entry << *repo->commit;
	a.gid = repo->gid;
	a.uid = repo->uid;
	return a;
}

NetFS::Buffer
GitFS::Blob::read(long long int o, long long int s, const ::Ice::Current &)
{
	const auto offset {static_cast<BlobSize>(o)};
	const auto size {static_cast<BlobSize>(s)};
	if (offset > blobSize) {
		return {};
	}
	auto len = std::min(blobSize - offset, size);
	return {blobContent + offset, blobContent + offset + len};
}

void
GitFS::Blob::ftruncate(long long int, const ::Ice::Current &)
{
	throw NetFS::SystemError(EROFS);
}

void
GitFS::Blob::write(
		long long int, long long int, std::pair<const Ice::Byte *, const Ice::Byte *>, const ::Ice::Current &)
{
	throw NetFS::SystemError(EROFS);
}

long long int
GitFS::Blob::copyrange(FilePrxPtr, long long int, long long int, long long int, int, const Ice::Current &)
{
	throw NetFS::SystemError(EROFS);
}