Skip to content

Commit

Permalink
Merge pull request timoore#3 from coopergogo/cesium-imgui-temp
Browse files Browse the repository at this point in the history
add print http request for debug
  • Loading branch information
qwertwwwe authored Jan 24, 2024
2 parents 43dbfbc + 3a76feb commit 80d5937
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions src/vsgCs/UrlAssetAccessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class UrlAssetResponse : public CesiumAsync::IAssetResponse
{
return _statusCode;
}

std::string contentType() const override
{
return _contentType;
Expand All @@ -50,7 +50,7 @@ class UrlAssetResponse : public CesiumAsync::IAssetResponse
{
return _headers;
}

gsl::span<const std::byte> data() const override
{
return {const_cast<const std::byte*>(_result.data()), _result.size()};
Expand All @@ -72,7 +72,7 @@ class UrlAssetRequest : public CesiumAsync::IAssetRequest
CesiumAsync::HttpHeaders headers)
: _method(std::move(method)), _url(std::move(url)), _headers(std::move(headers))
{

}

UrlAssetRequest(std::string method, std::string url,
Expand All @@ -82,7 +82,7 @@ class UrlAssetRequest : public CesiumAsync::IAssetRequest
_headers.insert(headers.begin(), headers.end());
}


const std::string& method() const override
{
return this->_method;
Expand Down Expand Up @@ -234,7 +234,7 @@ curl_slist* setCommonOptions(CURL* curl, const std::string& url, const std::stri
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
return list;
}

CesiumAsync::Future<std::shared_ptr<CesiumAsync::IAssetRequest>>
UrlAssetAccessor::get(const CesiumAsync::AsyncSystem& asyncSystem,
const std::string& url,
Expand All @@ -254,6 +254,11 @@ UrlAssetAccessor::get(const CesiumAsync::AsyncSystem& asyncSystem,
request->headers());
std::unique_ptr<UrlAssetResponse> response = std::make_unique<UrlAssetResponse>();
response->setCallbacks(curl());

// Debug: print http request
std::time_t now = std::time(nullptr);
vsg::warn("request start: ",std::asctime(std::localtime(&now)), request->url());

CURLcode responseCode = curl_easy_perform(curl());
curl_slist_free_all(list);
if (responseCode == 0)
Expand Down Expand Up @@ -304,6 +309,11 @@ UrlAssetAccessor::request(const CesiumAsync::AsyncSystem& asyncSystem,

curl_slist* list = setCommonOptions(curl(), request->url(), accessor->userAgent,
request->headers());

// Debug: print http request
std::time_t now = std::time(nullptr);
vsg::warn("request start: ",std::asctime(std::localtime(&now)), request->url());

if (payloadCopy->size() > 1UL << 31)
{
curl_easy_setopt(curl(), CURLOPT_POSTFIELDSIZE_LARGE, payloadCopy->size());
Expand Down

0 comments on commit 80d5937

Please sign in to comment.