-
Notifications
You must be signed in to change notification settings - Fork 4
/
httpup.h
84 lines (64 loc) · 2.27 KB
/
httpup.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
////////////////////////////////////////////////////////////////////////
// FILE: httpup.h
// AUTHOR: Johannes Winkelmann, [email protected]
// COPYRIGHT: (c) 2002-2005 by Johannes Winkelmann
// ---------------------------------------------------------------------
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
////////////////////////////////////////////////////////////////////////
#ifndef _HTTPUP_H_
#define _HTTPUP_H_
#include <string>
#include <list>
#include <map>
#include <curl/curl.h>
#include "httpupargparser.h"
class HttpUp
{
public:
enum Action { NOP,
DIR_CREATE,
REPLACE_FILE_WITH_DIR,
FILE_GET,
NEW_FILE_GET,
REPLACE_DIR_WITH_FILE,
REMOVE };
enum ExecType {
TYPE_SYNC,
TYPE_COPY,
TYPE_MIRROR
};
HttpUp(const HttpupArgparser& argParser,
const std::string& url,
const std::string& target,
const std::string& fragment,
const std::string& repoFile,
bool verifyMd5);
int exec(ExecType execType);
static const std::string DEFAULT_REPOFILE;
static const std::string REPOCURRENTFILE;
static const std::string REPOCURRENTFILEOLD;
static const std::string URLINFO;
static const int DEFAULT_TIMEOUT;
private:
int syncOrReturn(CURL* curl, char* curlErrorBuffer);
int getRemoteRepoFile(CURL* curl, char* curlErrorBuffer);
int getChangedFiles(const std::string& collectionName,
CURL* curl, char* curlErrorBuffer);
void saveRepoCurrent();
int findDiff();
int parseCurrent();
static bool verifyMd5sum(const char* input, unsigned char result[16]);
std::map<std::string, Action> m_actions;
std::map<std::string, std::string> m_md5sums;
std::list<std::string> m_remoteFiles;
const std::string m_baseDirectory;
const std::string m_remoteUrl;
const std::string m_fragment;
std::string m_repoFile;
const HttpupArgparser& m_argParser;
bool m_verifyMd5;
};
#endif /* _HTTPUP_H_ */