summaryrefslogtreecommitdiff
path: root/httpup.h
diff options
context:
space:
mode:
authorJohannes Winkelmann <jw@smts.ch>2005-11-09 21:44:34 +0000
committerJohannes Winkelmann <jw@smts.ch>2005-11-09 21:44:34 +0000
commit18c22c5a414a8beeac0d958ab39589c883ab06d4 (patch)
treef535c447c8c53775ad0b501dec83d8e1a33f8b79 /httpup.h
downloadhttpup-18c22c5a414a8beeac0d958ab39589c883ab06d4.tar.gz
httpup-18c22c5a414a8beeac0d958ab39589c883ab06d4.tar.xz
import httpup 0.4.0f
Diffstat (limited to 'httpup.h')
-rw-r--r--httpup.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/httpup.h b/httpup.h
new file mode 100644
index 0000000..b4805ee
--- /dev/null
+++ b/httpup.h
@@ -0,0 +1,82 @@
+////////////////////////////////////////////////////////////////////////
+// FILE: httpup.h
+// AUTHOR: Johannes Winkelmann, jw@tks6.net
+// 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;
+
+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_ */

Generated by cgit