mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 00:37:15 +01:00
9298065cef
CPR has features disabled and PCRE is fully disabled until updated to new code.
46 lines
1.8 KiB
C++
46 lines
1.8 KiB
C++
#ifndef CPR_UTIL_H
|
|
#define CPR_UTIL_H
|
|
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "cpr/callback.h"
|
|
#include "cpr/cookies.h"
|
|
#include "cpr/cprtypes.h"
|
|
#include "cpr/curlholder.h"
|
|
|
|
namespace cpr::util {
|
|
|
|
Header parseHeader(const std::string& headers, std::string* status_line = nullptr, std::string* reason = nullptr);
|
|
Cookies parseCookies(curl_slist* raw_cookies);
|
|
size_t readUserFunction(char* ptr, size_t size, size_t nitems, const ReadCallback* read);
|
|
size_t headerUserFunction(char* ptr, size_t size, size_t nmemb, const HeaderCallback* header);
|
|
size_t writeFunction(char* ptr, size_t size, size_t nmemb, std::string* data);
|
|
size_t writeFileFunction(char* ptr, size_t size, size_t nmemb, std::ofstream* file);
|
|
size_t writeUserFunction(char* ptr, size_t size, size_t nmemb, const WriteCallback* write);
|
|
|
|
template <typename T = ProgressCallback>
|
|
int progressUserFunction(const T* progress, cpr_pf_arg_t dltotal, cpr_pf_arg_t dlnow, cpr_pf_arg_t ultotal, cpr_pf_arg_t ulnow) {
|
|
const int cancel_retval{1};
|
|
static_assert(cancel_retval != CURL_PROGRESSFUNC_CONTINUE);
|
|
return (*progress)(dltotal, dlnow, ultotal, ulnow) ? 0 : cancel_retval;
|
|
}
|
|
int debugUserFunction(CURL* handle, curl_infotype type, char* data, size_t size, const DebugCallback* debug);
|
|
std::vector<std::string> split(const std::string& to_split, char delimiter);
|
|
std::string urlEncode(const std::string& s);
|
|
std::string urlDecode(const std::string& s);
|
|
|
|
/**
|
|
* Override the content of the provided string to hide sensitive data. The
|
|
* string content after invocation is undefined. The string size is reset to zero.
|
|
* impl. based on:
|
|
* https://github.com/ojeda/secure_clear/blob/master/example-implementation/secure_clear.h
|
|
**/
|
|
void secureStringClear(std::string& s);
|
|
bool isTrue(const std::string& s);
|
|
|
|
} // namespace cpr::util
|
|
|
|
#endif
|