CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Core/FileLoaders/RetryingFileLoader.cpp
Views: 1401
1
// Copyright (c) 2012- PPSSPP Project.
2
3
// This program is free software: you can redistribute it and/or modify
4
// it under the terms of the GNU General Public License as published by
5
// the Free Software Foundation, version 2.0 or later versions.
6
7
// This program is distributed in the hope that it will be useful,
8
// but WITHOUT ANY WARRANTY; without even the implied warranty of
9
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
// GNU General Public License 2.0 for more details.
11
12
// A copy of the GPL 2.0 should have been included with the program.
13
// If not, see http://www.gnu.org/licenses/
14
15
// Official git repository and contact information can be found at
16
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
17
18
#include "Core/FileLoaders/RetryingFileLoader.h"
19
20
// Takes ownership of backend.
21
RetryingFileLoader::RetryingFileLoader(FileLoader *backend)
22
: ProxiedFileLoader(backend) {
23
}
24
25
bool RetryingFileLoader::Exists() {
26
if (!ProxiedFileLoader::Exists()) {
27
// Retry once, immediately.
28
return ProxiedFileLoader::Exists();
29
}
30
return true;
31
}
32
33
bool RetryingFileLoader::ExistsFast() {
34
if (!ProxiedFileLoader::ExistsFast()) {
35
// Retry once, immediately.
36
return ProxiedFileLoader::ExistsFast();
37
}
38
return true;
39
}
40
41
bool RetryingFileLoader::IsDirectory() {
42
// Can't tell if it's an error either way.
43
return ProxiedFileLoader::IsDirectory();
44
}
45
46
s64 RetryingFileLoader::FileSize() {
47
s64 filesize = ProxiedFileLoader::FileSize();
48
if (filesize == 0) {
49
return ProxiedFileLoader::FileSize();
50
}
51
return filesize;
52
}
53
54
size_t RetryingFileLoader::ReadAt(s64 absolutePos, size_t bytes, void *data, Flags flags) {
55
size_t readSize = backend_->ReadAt(absolutePos, bytes, data, flags);
56
57
int retries = 0;
58
while (readSize < bytes && retries < MAX_RETRIES) {
59
u8 *p = (u8 *)data;
60
readSize += backend_->ReadAt(absolutePos + readSize, bytes - readSize, p + readSize, flags);
61
++retries;
62
}
63
64
return readSize;
65
}
66
67