File: TestUtil.h

package info (click to toggle)
aria2 1.37.0%2Bdebian-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,128 kB
  • sloc: cpp: 115,006; ansic: 9,140; makefile: 1,466; ruby: 475; python: 373; sh: 260; xml: 176
file content (80 lines) | stat: -rw-r--r-- 2,428 bytes parent folder | download | duplicates (6)
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
80
#include "common.h"

#include <string>
#include <memory>

#include "Cookie.h"
#include "WrDiskCacheEntry.h"
#include "GroupId.h"

namespace aria2 {

class MessageDigest;
class RequestGroupMan;
class RequestGroup;
class Option;
struct DownloadResult;

void createFile(const std::string& filename, size_t length);

std::string readFile(const std::string& path);

class CookieSorter {
public:
  bool operator()(const Cookie* lhs, const Cookie* rhs) const
  {
    if (lhs->getDomain() == rhs->getDomain()) {
      return lhs->getName() < rhs->getName();
    }
    else {
      return lhs->getDomain() < rhs->getDomain();
    }
  }
};

std::unique_ptr<Cookie> createCookie(const std::string& name,
                                     const std::string& value,
                                     const std::string& domain, bool hostOnly,
                                     const std::string& path, bool secure);

std::unique_ptr<Cookie> createCookie(const std::string& name,
                                     const std::string& value,
                                     time_t expiryTime,
                                     const std::string& domain, bool hostOnly,
                                     const std::string& path, bool secure);

std::string fromHex(const std::string& s);

// Returns hex digest of contents of file denoted by filename.
std::string fileHexDigest(MessageDigest* ctx, const std::string& filename);

WrDiskCacheEntry::DataCell* createDataCell(int64_t goff, const char* data,
                                           size_t offset = 0);

std::shared_ptr<RequestGroup> findReservedGroup(RequestGroupMan* rgman,
                                                a2_gid_t gid);

std::shared_ptr<RequestGroup> getReservedGroup(RequestGroupMan* rgman,
                                               size_t index);

std::shared_ptr<RequestGroup>
createRequestGroup(int32_t pieceLength, int64_t totalLength,
                   const std::string& path, const std::string& uri,
                   const std::shared_ptr<Option>& opt);

std::shared_ptr<DownloadResult> createDownloadResult(error_code::Value result,
                                                     const std::string& uri);

namespace {
template <typename V, typename T> bool derefFind(const V& v, const T& t)
{
  for (auto i : v) {
    if (*i == *t) {
      return true;
    }
  }
  return false;
}
} // namespace

} // namespace aria2