aboutsummaryrefslogtreecommitdiff
path: root/src/common/windows/http_upload.cc
diff options
context:
space:
mode:
authorerikwright@chromium.org <erikwright@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-09-15 17:38:03 +0000
committererikwright@chromium.org <erikwright@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-09-15 17:38:03 +0000
commit7fde9a879dbf38aa6adcf7691139dc32cd567089 (patch)
tree68c3286ee84c812c9bd625eaed3629944c4c453a /src/common/windows/http_upload.cc
parentFix include paths in breakpad_client.gyp to make the build work (diff)
downloadbreakpad-7fde9a879dbf38aa6adcf7691139dc32cd567089.tar.xz
Revert revision 658 ('Add glog style logging to symupload').
R=nealsid at http://breakpad.appspot.com/190001 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@685 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/windows/http_upload.cc')
-rw-r--r--src/common/windows/http_upload.cc61
1 files changed, 3 insertions, 58 deletions
diff --git a/src/common/windows/http_upload.cc b/src/common/windows/http_upload.cc
index 14f46ddf..a6879799 100644
--- a/src/common/windows/http_upload.cc
+++ b/src/common/windows/http_upload.cc
@@ -35,15 +35,9 @@
#include <fstream>
#include "common/windows/string_utils-inl.h"
-#include "common/windows/wchar_logging.h"
#include "common/windows/http_upload.h"
-// See comment in symupload.cc about #undef ERROR. Unfortunately this has to
-// violate style guide and come after http_upload.h.
-#undef ERROR
-#include "third_party/glog/glog/src/windows/glog/logging.h"
-
namespace google_breakpad {
using std::ifstream;
@@ -51,28 +45,6 @@ using std::ios;
static const wchar_t kUserAgent[] = L"Breakpad/1.0 (Windows)";
-wchar_t lastErrorMessageBuffer[1024];
-
-// Helper method to convert Last Error into a text message. Uses a static
-// buffer, so don't save the message across Win32 calls that might change
-// the last error.
-//
-// This function saves/restores the last error and it isn't thread safe.
-const wchar_t* FormatLastError() {
- DWORD oldLastError = GetLastError();
- wchar_t lastErrorTempBuffer[1024];
- if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(), 0,
- lastErrorTempBuffer, 1024, NULL) == 0) {
- wsprintf(lastErrorMessageBuffer, L"%d: (format message failed: %d)",
- oldLastError, GetLastError());
- } else {
- wsprintf(lastErrorMessageBuffer, L"%d: %s", oldLastError,
- lastErrorTempBuffer);
- }
- SetLastError(oldLastError);
- return lastErrorMessageBuffer;
-}
-
// Helper class which closes an internet handle when it goes away
class HTTPUpload::AutoInternetHandle {
public:
@@ -100,19 +72,7 @@ bool HTTPUpload::SendRequest(const wstring &url,
if (response_code) {
*response_code = 0;
}
- VLOG(1) << "HTTPUpload::SendRequest";
- VLOG(1) << "\tURL: " << url;
- VLOG(1) << "\tUpload_File: " << upload_file;
- VLOG(1) << "\tFile_part_name: " << file_part_name;
- VLOG(1) << "\tParameters: ";
- string s;
- if (VLOG_IS_ON(1)) {
- for (std::map<wstring, wstring>::const_iterator it = parameters.begin();
- it != parameters.end(); ++it) {
- VLOG(1) << "\t\t" << it->first << " = " << it->second;
- }
- }
-
+
// TODO(bryner): support non-ASCII parameter names
if (!CheckParameters(parameters)) {
return false;
@@ -130,9 +90,7 @@ bool HTTPUpload::SendRequest(const wstring &url,
components.lpszUrlPath = path;
components.dwUrlPathLength = sizeof(path) / sizeof(path[0]);
if (!InternetCrackUrl(url.c_str(), static_cast<DWORD>(url.size()),
- 0, &components)) {
- LOG(ERROR) << "InternetCrackUrl failed: " << FormatLastError();
- LOG(ERROR) << "This indicates a malformed upload server name";
+ 0, &components)) {
return false;
}
bool secure = false;
@@ -148,7 +106,6 @@ bool HTTPUpload::SendRequest(const wstring &url,
NULL, // proxy bypass
0)); // flags
if (!internet.get()) {
- LOG(ERROR) << "InternetOpen returned NULL: " << FormatLastError();
return false;
}
@@ -161,7 +118,6 @@ bool HTTPUpload::SendRequest(const wstring &url,
0, // flags
NULL)); // context
if (!connection.get()) {
- LOG(ERROR) << "InternetConnect returned NULL: " << FormatLastError();
return false;
}
@@ -176,7 +132,6 @@ bool HTTPUpload::SendRequest(const wstring &url,
http_open_flags,
NULL)); // context
if (!request.get()) {
- LOG(ERROR) << "HttpOpenRequest returned NULL: " << FormatLastError();
return false;
}
@@ -198,17 +153,13 @@ bool HTTPUpload::SendRequest(const wstring &url,
INTERNET_OPTION_SEND_TIMEOUT,
timeout,
sizeof(timeout))) {
- LOG(ERROR) << "InternetSetOption on send timeout returned NULL: "
- << FormatLastError();
- fwprintf(stderr, L"Could not unset send timeout, continuing...\n");
+ fwprintf(stderr, L"Could not unset send timeout, continuing...\n");
}
if (!InternetSetOption(request.get(),
INTERNET_OPTION_RECEIVE_TIMEOUT,
timeout,
sizeof(timeout))) {
- LOG(ERROR) << "InternetSetOption on receive timeout returned NULL: "
- << FormatLastError();
fwprintf(stderr, L"Could not unset receive timeout, continuing...\n");
}
}
@@ -216,7 +167,6 @@ bool HTTPUpload::SendRequest(const wstring &url,
if (!HttpSendRequest(request.get(), NULL, 0,
const_cast<char *>(request_body.data()),
static_cast<DWORD>(request_body.size()))) {
- LOG(ERROR) << "HttpSendRequest on send returned NULL: " << FormatLastError();
return false;
}
@@ -226,7 +176,6 @@ bool HTTPUpload::SendRequest(const wstring &url,
if (!HttpQueryInfo(request.get(), HTTP_QUERY_STATUS_CODE,
static_cast<LPVOID>(&http_status), &http_status_size,
0)) {
- LOG(ERROR) << "HttpQueryInfo after send returned NULL: " << FormatLastError();
return false;
}
@@ -239,8 +188,6 @@ bool HTTPUpload::SendRequest(const wstring &url,
if (result) {
result = ReadResponse(request.get(), response_body);
- } else {
- LOG(ERROR) << "Http send request returned: " << result;
}
return result;
@@ -451,13 +398,11 @@ bool HTTPUpload::CheckParameters(const map<wstring, wstring> &parameters) {
pos != parameters.end(); ++pos) {
const wstring &str = pos->first;
if (str.size() == 0) {
- LOG(ERROR) << "Parameter " << str << " had non ascii characters";
return false; // disallow empty parameter names
}
for (unsigned int i = 0; i < str.size(); ++i) {
wchar_t c = str[i];
if (c < 32 || c == '"' || c > 127) {
- LOG(ERROR) << "Parameter " << str << " had non ascii characters";
return false;
}
}