Commit ddd7eb95 authored by captainwong's avatar captainwong

refactor

parent 10517a13
This diff is collapsed.
#ifndef __CURL_CURLVER_H
#define __CURL_CURLVER_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at https://curl.haxx.se/docs/copyright.html.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
***************************************************************************/
/* This header file contains nothing but libcurl version info, generated by
a script at release-time. This was made its own header file in 7.11.2 */
/* This is the global package copyright */
#define LIBCURL_COPYRIGHT "1996 - 2017 Daniel Stenberg, <daniel@haxx.se>."
/* This is the version number of the libcurl package from which this header
file origins: */
#define LIBCURL_VERSION "7.55.1"
/* The numeric version number is also available "in parts" by using these
defines: */
#define LIBCURL_VERSION_MAJOR 7
#define LIBCURL_VERSION_MINOR 55
#define LIBCURL_VERSION_PATCH 1
/* This is the numeric version of the libcurl version number, meant for easier
parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
always follow this syntax:
0xXXYYZZ
Where XX, YY and ZZ are the main version, release and patch numbers in
hexadecimal (using 8 bits each). All three numbers are always represented
using two digits. 1.2 would appear as "0x010200" while version 9.11.7
appears as "0x090b07".
This 6-digit (24 bits) hexadecimal number does not show pre-release number,
and it is always a greater number in a more recent release. It makes
comparisons with greater than and less than work.
Note: This define is the full hex number and _does not_ use the
CURL_VERSION_BITS() macro since curl's own configure script greps for it
and needs it to contain the full number.
*/
#define LIBCURL_VERSION_NUM 0x073701
/*
* This is the date and time when the full source package was created. The
* timestamp is not stored in git, as the timestamp is properly set in the
* tarballs by the maketgz script.
*
* The format of the date follows this template:
*
* "2007-11-23"
*/
#define LIBCURL_TIMESTAMP "2017-08-14"
#define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|z)
#define CURL_AT_LEAST_VERSION(x,y,z) \
(LIBCURL_VERSION_NUM >= CURL_VERSION_BITS(x, y, z))
#endif /* __CURL_CURLVER_H */
#ifndef __CURL_EASY_H
#define __CURL_EASY_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at https://curl.haxx.se/docs/copyright.html.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
***************************************************************************/
#ifdef __cplusplus
extern "C" {
#endif
CURL_EXTERN CURL *curl_easy_init(void);
CURL_EXTERN CURLcode curl_easy_setopt(CURL *curl, CURLoption option, ...);
CURL_EXTERN CURLcode curl_easy_perform(CURL *curl);
CURL_EXTERN void curl_easy_cleanup(CURL *curl);
/*
* NAME curl_easy_getinfo()
*
* DESCRIPTION
*
* Request internal information from the curl session with this function. The
* third argument MUST be a pointer to a long, a pointer to a char * or a
* pointer to a double (as the documentation describes elsewhere). The data
* pointed to will be filled in accordingly and can be relied upon only if the
* function returns CURLE_OK. This function is intended to get used *AFTER* a
* performed transfer, all results from this function are undefined until the
* transfer is completed.
*/
CURL_EXTERN CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ...);
/*
* NAME curl_easy_duphandle()
*
* DESCRIPTION
*
* Creates a new curl session handle with the same options set for the handle
* passed in. Duplicating a handle could only be a matter of cloning data and
* options, internal state info and things like persistent connections cannot
* be transferred. It is useful in multithreaded applications when you can run
* curl_easy_duphandle() for each new thread to avoid a series of identical
* curl_easy_setopt() invokes in every thread.
*/
CURL_EXTERN CURL *curl_easy_duphandle(CURL *curl);
/*
* NAME curl_easy_reset()
*
* DESCRIPTION
*
* Re-initializes a CURL handle to the default values. This puts back the
* handle to the same state as it was in when it was just created.
*
* It does keep: live connections, the Session ID cache, the DNS cache and the
* cookies.
*/
CURL_EXTERN void curl_easy_reset(CURL *curl);
/*
* NAME curl_easy_recv()
*
* DESCRIPTION
*
* Receives data from the connected socket. Use after successful
* curl_easy_perform() with CURLOPT_CONNECT_ONLY option.
*/
CURL_EXTERN CURLcode curl_easy_recv(CURL *curl, void *buffer, size_t buflen,
size_t *n);
/*
* NAME curl_easy_send()
*
* DESCRIPTION
*
* Sends data over the connected socket. Use after successful
* curl_easy_perform() with CURLOPT_CONNECT_ONLY option.
*/
CURL_EXTERN CURLcode curl_easy_send(CURL *curl, const void *buffer,
size_t buflen, size_t *n);
#ifdef __cplusplus
}
#endif
#endif
#ifndef __CURL_MPRINTF_H
#define __CURL_MPRINTF_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at https://curl.haxx.se/docs/copyright.html.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
***************************************************************************/
#include <stdarg.h>
#include <stdio.h> /* needed for FILE */
#include "curl.h" /* for CURL_EXTERN */
#ifdef __cplusplus
extern "C" {
#endif
CURL_EXTERN int curl_mprintf(const char *format, ...);
CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...);
CURL_EXTERN int curl_msprintf(char *buffer, const char *format, ...);
CURL_EXTERN int curl_msnprintf(char *buffer, size_t maxlength,
const char *format, ...);
CURL_EXTERN int curl_mvprintf(const char *format, va_list args);
CURL_EXTERN int curl_mvfprintf(FILE *fd, const char *format, va_list args);
CURL_EXTERN int curl_mvsprintf(char *buffer, const char *format, va_list args);
CURL_EXTERN int curl_mvsnprintf(char *buffer, size_t maxlength,
const char *format, va_list args);
CURL_EXTERN char *curl_maprintf(const char *format, ...);
CURL_EXTERN char *curl_mvaprintf(const char *format, va_list args);
#ifdef __cplusplus
}
#endif
#endif /* __CURL_MPRINTF_H */
This diff is collapsed.
#ifndef __STDC_HEADERS_H
#define __STDC_HEADERS_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at https://curl.haxx.se/docs/copyright.html.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
***************************************************************************/
#include <sys/types.h>
size_t fread(void *, size_t, size_t, FILE *);
size_t fwrite(const void *, size_t, size_t, FILE *);
int strcasecmp(const char *, const char *);
int strncasecmp(const char *, const char *, size_t);
#endif /* __STDC_HEADERS_H */
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -126,6 +126,4 @@ inline std::wstring now_to_wstring(bool with_milliseconds = false)
return time_point_to_wstring(std::chrono::system_clock::now(), with_milliseconds);
}
};
#pragma once
#include "../3rdparty/curl/curl.h"
#include <string>
#include "mem_tool.h"
namespace jlib
{
class Curl
{
public:
Curl() { static CurlHelper helper = {}; }
~Curl() {
curl_easy_cleanup(curl_);
}
bool init() {
curl_ = curl_easy_init();
curl_easy_setopt(curl_, CURLOPT_FOLLOWLOCATION, 1);
curl_easy_setopt(curl_, CURLOPT_WRITEFUNCTION, Curl::write_data);
curl_easy_setopt(curl_, CURLOPT_WRITEDATA, this);
curl_easy_setopt(curl_, CURLOPT_HEADER, 1);
curl_easy_setopt(curl_, CURLOPT_NOSIGNAL, 1);
curl_easy_setopt(curl_, CURLOPT_SSL_VERIFYPEER, 0);
curl_easy_setopt(curl_, CURLOPT_SSL_VERIFYHOST, 0);
return curl_ != nullptr;
}
operator CURL* () {
return curl_;
}
CURLcode lastError() const { return lastErorrCode_; }
std::string lastErrorMsg() const { return lastErrorMsg_; }
long lastHttpCode() const { return lastHttpCode_; }
std::string lastHttpContent() const { return lastHttpContent_; }
bool get(const std::string& url, int timeout = 10) {
curl_easy_setopt(curl_, CURLOPT_URL, url.data());
curl_easy_setopt(curl_, CURLOPT_TIMEOUT, timeout);
return perform();
}
bool post(const std::string& url, const std::string& data, int timeout = 10) {
curl_easy_setopt(curl_, CURLOPT_URL, url.data());
curl_easy_setopt(curl_, CURLOPT_TIMEOUT, timeout);
curl_easy_setopt(curl_, CURLOPT_POST, 1);
curl_easy_setopt(curl_, CURLOPT_POSTFIELDS, data.data());
return perform();
}
bool postJson(const std::string& url, const std::string& json, int timeout = 10) {
curl_easy_setopt(curl_, CURLOPT_URL, url.data());
curl_easy_setopt(curl_, CURLOPT_TIMEOUT, timeout);
curl_easy_setopt(curl_, CURLOPT_POST, 1);
curl_easy_setopt(curl_, CURLOPT_POSTFIELDS, json.data());
curl_slist* headers = nullptr;
headers = curl_slist_append(headers, "application/json");
curl_easy_setopt(curl_, CURLOPT_HTTPHEADER, headers);
auto_free<curl_slist> auto_free_headers(headers, [](curl_slist* p) { curl_slist_free_all(p); });
#ifdef JLIB_LOG2_ENABLED
dump_slist(headers);
#endif // JLIB_LOG2_ENABLED
return perform();
}
#ifdef JLIB_LOG2_ENABLED
static void dump_slist(curl_slist* list) {
LOG_INFO("dumping curl_slist:");
while (list) {
LOG_INFO(" {:X}", list->data);
list = list->next;
}
}
#endif // JLIB_LOG2_ENABLED
private:
struct CurlHelper {
CurlHelper() {
curl_global_init(CURL_GLOBAL_ALL);
}
~CurlHelper() {
curl_global_cleanup();
}
};
CURL* curl_ = nullptr;
std::string buffer_ = {};
CURLcode lastErorrCode_ = CURLcode::CURLE_OK;
std::string lastErrorMsg_ = {};
long lastHttpCode_ = 0;
std::string lastHttpContent_ = {};
static size_t write_data(void* buffer, size_t size, size_t nmemb, void* user) {
auto curl = reinterpret_cast<Curl*>(user);
curl->buffer_.append(reinterpret_cast<const char*>(buffer), size * nmemb);
return size * nmemb;
}
bool parse_centent() {
long header_size = 0;
curl_easy_getinfo(curl_, CURLINFO_RESPONSE_CODE, &lastHttpCode_);
curl_easy_getinfo(curl_, CURLINFO_HEADER_SIZE, &header_size);
if (header_size < 0) {
#ifdef JLIB_LOG2_ENABLED
JLOG_ERRO("get responce headers error");
ec = HBVideoPlatform::CurlErrorCode::GET_RESPONCE_HEADERS_ERROR;
#endif // JLIB_LOG2_ENABLED
return false;
}
auto sheaders = buffer_.substr(0, header_size);
auto shttp_code = std::to_string(lastHttpCode_);
auto code_pos = sheaders.find(shttp_code);
auto end_pos = sheaders.find("\r\n");
auto content_length = buffer_.size() - sheaders.size();
lastHttpContent_ = (buffer_.substr(sheaders.size()));
#ifdef JLIB_LOG2_ENABLED
LOG_INFO("responce status: {}", lastHttpCode_);
LOG_INFO("responce body:\n{}", lastHttpContent_);
#endif // JLIB_LOG2_ENABLED
return true;
}
bool perform() {
auto ret = curl_easy_perform(curl_);
if (ret != CURLE_OK) {
lastErorrCode_ = ret;
lastErrorMsg_ = curl_easy_strerror(ret);
return false;
}
return parse_centent();
}
};
}
......@@ -5,10 +5,6 @@
namespace jlib {
//template <typename T>
//struct deleter : public std::default_delete<T>
//{};
template <typename T>
class auto_free
{
......
#pragma once
#include <random>
#include <string>
#include <assert.h>
namespace jlib
{
template <class T = std::mt19937, std::size_t N = T::state_size>
inline auto seeded_random_engine() -> typename std::enable_if<!!N, T>::type {
typename T::result_type random_data[N];
std::random_device source;
std::generate(std::begin(random_data), std::end(random_data), std::ref(source));
std::seed_seq seeds(std::begin(random_data), std::end(random_data));
T seed_engine(seeds);
return seed_engine;
};
static constexpr const char default_rand_source[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"; // 63
static constexpr size_t default_rand_source_size = sizeof(default_rand_source) - 1; // 62
inline std::string nonce(const char* source = default_rand_source,
size_t source_size = default_rand_source_size,
size_t dst_size = default_rand_source_size)
{
assert(dst_size <= source_size);
auto rgn = seeded_random_engine();
std::string nonce;
std::uniform_int_distribution<size_t> dist(0, source_size);
for (size_t i = 0; i < dst_size; i++) {
nonce += source[dist(rgn)];
}
return nonce;
}
} // namespace jlib
#pragma once
#pragma once
#include <algorithm>
#include <iterator>
namespace jlib {
/**
* @brief check if container c contains t
* @note C must be a container of type T
*/
template <class C, class T>
inline bool is_contain(const C& c, const T& t) {
for (const auto& i : c) {
......@@ -13,7 +16,10 @@ inline bool is_contain(const C& c, const T& t) {
return false;
}
/**
* @brief Sub 是 All 的子集,返回 All 内 Sub 的补集
* @note All 和 Sub 必须为同样类型的容器
*/
template <class C>
inline typename C get_other(const C & All, const C& Sub) {
typename C res, tmp;
......@@ -34,6 +40,10 @@ inline typename C get_other(const C & All, const C& Sub) {
return res;
}
/**
* @brief Sub 是 All 的子集,返回 All 内 Sub 的补集
* @note All 和 Sub 必须为同样类型的容器
*/
template <class V>
std::vector<std::wstring> get_other(const V& v, const std::wstring& t) {
std::vector<std::wstring> ret = {};
......
......@@ -81,5 +81,4 @@ inline bool get_version_no_from_file(version_no& ver, const std::string& file_pa
return false;
}
}
#pragma once
#pragma once
#include <boost/noncopyable.hpp>
#include <windows.h>
......@@ -177,7 +177,7 @@ inline void InflateRect(::LPRECT rc, int l, int t, int r, int b) {
}
// 将矩形平均分割成n份,间距2*gap, n is x^2, x={1,2,3...}
// 将矩形平均分割成n份,间距2*gap, n is x^2, x={1,2,3...}
inline std::vector<::RECT> split_rect(::LPCRECT rc, int n, int gap = 50) {
using namespace rc_detail;
......@@ -203,7 +203,7 @@ inline std::vector<::RECT> split_rect(::LPCRECT rc, int n, int gap = 50) {
return v;
};
// 将矩形水平平均分割为n份矩形, 当hgap==-1时,分割出的矩形与源矩形保持比例
// 将矩形水平平均分割为n份矩形, 当hgap==-1时,分割出的矩形与源矩形保持比例
inline std::vector<::RECT> split_rect_horizontal(::LPCRECT rc, int n, int wgap = 50, int hgap = -1) {
using namespace rc_detail;
std::vector<::RECT> v;
......
#pragma once
inline bool get_file_open_dialog_result(std::wstring& path, HWND hWnd = nullptr) {
bool ok = false;
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED |
COINIT_DISABLE_OLE1DDE);
if (SUCCEEDED(hr)) {
IFileOpenDialog *pFileOpen;
// Create the FileOpenDialog object.
hr = CoCreateInstance(CLSID_FileOpenDialog, NULL, CLSCTX_ALL,
IID_IFileOpenDialog, reinterpret_cast<void**>(&pFileOpen));
if (SUCCEEDED(hr)) {
// Show the Open dialog box.
hr = pFileOpen->Show(hWnd);
// Get the file name from the dialog box.
if (SUCCEEDED(hr)) {
IShellItem *pItem;
hr = pFileOpen->GetResult(&pItem);
if (SUCCEEDED(hr)) {
PWSTR pszFilePath;
hr = pItem->GetDisplayName(SIGDN_FILESYSPATH, &pszFilePath);
// Display the file name to the user.
if (SUCCEEDED(hr)) {
//MessageBox(hWnd, pszFilePath, L"File Path", MB_OK);
path = pszFilePath;
ok = true;
CoTaskMemFree(pszFilePath);
}
pItem->Release();
}
}
pFileOpen->Release();
}
CoUninitialize();
}
return ok;
}
inline bool get_save_as_dialog_path(std::wstring& path, HWND hWnd = nullptr) {
bool ok = false;
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED |
COINIT_DISABLE_OLE1DDE);
if (SUCCEEDED(hr)) {
IFileSaveDialog *pFileSave;
// Create the FileOpenDialog object.
hr = CoCreateInstance(CLSID_FileSaveDialog, NULL, CLSCTX_ALL,
IID_IFileSaveDialog, reinterpret_cast<void**>(&pFileSave));
if (SUCCEEDED(hr)) {
// Show the Open dialog box.
hr = pFileSave->Show(hWnd);
// Get the file name from the dialog box.
if (SUCCEEDED(hr)) {
IShellItem *pItem;
hr = pFileSave->GetResult(&pItem);
if (SUCCEEDED(hr)) {
PWSTR pszFilePath;
hr = pItem->GetDisplayName(SIGDN_FILESYSPATH, &pszFilePath);
// Display the file name to the user.
if (SUCCEEDED(hr)) {
//MessageBox(hWnd, pszFilePath, L"File Path", MB_OK);
path = pszFilePath;
ok = true;
CoTaskMemFree(pszFilePath);
}
pItem->Release();
}
}
pFileSave->Release();
}
CoUninitialize();
}
return ok;
}
#pragma once
/////////*********************自定义宏********************////////////////////////
//安全删除普通堆内存
// 安全删除普通堆内存
#define SAFEDELETEP(p) {if(p){delete (p); (p)=NULL;}}
#define SAFEDELETEARR(pArr) {if((pArr)){delete[] (pArr); (pArr)=NULL;}}
//安全删除对话框类堆内存
// 安全删除对话框类堆内存
#define SAFEDELETEDLG(pDlg) {\
if ((pDlg)) {\
if (::IsWindow(pDlg->m_hWnd)) { \
......@@ -17,7 +17,7 @@
}\
}
//关闭核心对象句柄
// 关闭核心对象句柄
#define CLOSEHANDLE(h){\
if (h != INVALID_HANDLE_VALUE && h != NULL) {\
::CloseHandle(h); \
......
This diff is collapsed.
#include "../../jlib/util/curl_wrapper.h"
#include <stdio.h>
#ifdef _WIN32
#pragma comment(lib, "../../jlib/3rdparty/curl/libcurldll.a")
#endif
using namespace jlib;
int main()
{
Curl curl;
curl.init();
curl.get("qq.com");
printf("HTTP %ld\n", curl.lastHttpCode());
printf("%s\n", curl.lastHttpContent().data());
}
This diff is collapsed.
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="Source Files">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="Header Files">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;hm;inl;inc;ipp;xsd</Extensions>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="test_curl_wrapper.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
</Project>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment