diff options
author | nealsid@gmail.com <nealsid@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-08-19 21:53:35 +0000 |
---|---|---|
committer | nealsid@gmail.com <nealsid@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-08-19 21:53:35 +0000 |
commit | e167e9e61f433329e5ddd664e96696f6757df735 (patch) | |
tree | 34a8563483dfaa31085f2a5a88e0bd85a372a244 /src/tools/windows | |
parent | fix symupload / minidump_upload to match changes to HTTPUpload::SendRequest f... (diff) | |
download | breakpad-e167e9e61f433329e5ddd664e96696f6757df735.tar.xz |
Add glog style logging to symupload
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@658 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/tools/windows')
-rw-r--r-- | src/tools/windows/symupload/symupload.cc | 31 | ||||
-rw-r--r-- | src/tools/windows/symupload/symupload.vcproj | 84 |
2 files changed, 110 insertions, 5 deletions
diff --git a/src/tools/windows/symupload/symupload.cc b/src/tools/windows/symupload/symupload.cc index b858a63d..0b2f366a 100644 --- a/src/tools/windows/symupload/symupload.cc +++ b/src/tools/windows/symupload/symupload.cc @@ -51,10 +51,14 @@ #include <string> #include <vector> -#include "common/windows/string_utils-inl.h" - #include "common/windows/http_upload.h" #include "common/windows/pdb_source_line_writer.h" +#include "common/windows/string_utils-inl.h" +#include "common/windows/wchar_logging.h" +// See http://code.google.com/p/google-glog/issues/detail?id=33 for why +// this #undef is added. +#undef ERROR +#include "third_party/glog/glog/src/windows/glog/logging.h" using std::string; using std::wstring; @@ -112,12 +116,15 @@ static bool DumpSymbolsToTempFile(const wchar_t *file, wstring *temp_file_path, PDBModuleInfo *pdb_info) { google_breakpad::PDBSourceLineWriter writer; + VLOG(1) << "DumpSymbolsToTempFile opening file"; // Use EXE_FILE to get information out of the exe/dll in addition to the // pdb. The name and version number of the exe/dll are of value, and // there's no way to locate an exe/dll given a pdb. if (!writer.Open(file, PDBSourceLineWriter::EXE_FILE)) { + VLOG(1) << "Error opening input module"; return false; } + VLOG(1) << "DumpSymbolsToTempFile file opened"; wchar_t temp_path[_MAX_PATH]; if (GetTempPath(_MAX_PATH, temp_path) == 0) { @@ -128,6 +135,7 @@ static bool DumpSymbolsToTempFile(const wchar_t *file, if (GetTempFileName(temp_path, L"sym", 0, temp_filename) == 0) { return false; } + VLOG(1) << "Temporary symbol filename is: " << temp_filename; FILE *temp_file = NULL; #if _MSC_VER >= 1400 // MSVC 2005/8 @@ -145,7 +153,8 @@ static bool DumpSymbolsToTempFile(const wchar_t *file, fclose(temp_file); if (!success) { _wunlink(temp_filename); - return false; + LOG(ERROR) << "Error writing to temp file"; + return false; } *temp_file_path = temp_filename; @@ -160,11 +169,24 @@ void printUsageAndExit() { exit(0); } int wmain(int argc, wchar_t *argv[]) { + char progname[MAX_PATH]; + size_t convertedChars; + wcstombs_s(&convertedChars, progname, MAX_PATH, argv[0], _TRUNCATE); + google::InitGoogleLogging(progname); + if ((argc != 3) && (argc != 5)) { printUsageAndExit(); } + if (argc == 5) { + VLOG(1) << "Module: " << argv[3]; + VLOG(1) << "Server: " << argv[4]; + } else { + VLOG(1) << "Module: " << argv[1]; + VLOG(1) << "Server: " << argv[2]; + } + const wchar_t *module, *url; int timeout = -1; if (argc == 3) { @@ -181,12 +203,15 @@ int wmain(int argc, wchar_t *argv[]) { } } + VLOG(1) << "Beginning symbol dump"; wstring symbol_file; PDBModuleInfo pdb_info; if (!DumpSymbolsToTempFile(module, &symbol_file, &pdb_info)) { fwprintf(stderr, L"Could not get symbol data from %s\n", module); + LOG(ERROR) << "Could not get symbol data from " << module; return 1; } + VLOG(1) << "Symbol dump completed to " << symbol_file; wstring code_file = WindowsStringUtils::GetBaseName(wstring(module)); diff --git a/src/tools/windows/symupload/symupload.vcproj b/src/tools/windows/symupload/symupload.vcproj index d6d07f1e..b11389c2 100644 --- a/src/tools/windows/symupload/symupload.vcproj +++ b/src/tools/windows/symupload/symupload.vcproj @@ -39,7 +39,7 @@ <Tool Name="VCCLCompilerTool" Optimization="0" - AdditionalIncludeDirectories=""$(VSInstallDir)\DIA SDK\include";..\..\.." + AdditionalIncludeDirectories="..\..\..\third_party\glog\glog\src\windows;..\..\..;"$(VSInstallDir)\DIA SDK\include"" PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;WIN32_LEAN_AND_MEAN" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -115,7 +115,7 @@ /> <Tool Name="VCCLCompilerTool" - AdditionalIncludeDirectories=""$(VSInstallDir)\DIA SDK\include";..\..\.." + AdditionalIncludeDirectories="..\..\..\third_party\glog\glog\src\windows;..\..\..\;"$(VSInstallDir)\DIA SDK\include"" PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;WIN32_LEAN_AND_MEAN" RuntimeLibrary="2" UsePrecompiledHeader="0" @@ -192,6 +192,10 @@ RelativePath="..\..\..\common\windows\string_utils-inl.h" > </File> + <File + RelativePath="..\..\..\common\windows\wchar_logging.h" + > + </File> </Filter> <Filter Name="Resource Files" @@ -211,18 +215,94 @@ <File RelativePath="..\..\..\common\windows\http_upload.cc" > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="GOOGLE_GLOG_DLL_DECL=" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="GOOGLE_GLOG_DLL_DECL=" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\..\third_party\glog\glog\src\logging.cc" + > </File> <File RelativePath="..\..\..\common\windows\pdb_source_line_writer.cc" > </File> <File + RelativePath="..\..\..\third_party\glog\glog\src\windows\port.cc" + > + </File> + <File + RelativePath="..\..\..\third_party\glog\glog\src\raw_logging.cc" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="GOOGLE_GLOG_DLL_DECL=" + /> + </FileConfiguration> + </File> + <File RelativePath="..\..\..\common\windows\string_utils.cc" > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="GOOGLE_GLOG_DLL_DECL=" + /> + </FileConfiguration> </File> <File RelativePath=".\symupload.cc" > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="GOOGLE_GLOG_DLL_DECL=" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="GOOGLE_GLOG_DLL_DECL=" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\..\third_party\glog\glog\src\utilities.cc" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="GOOGLE_GLOG_DLL_DECL=" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\..\..\third_party\glog\glog\src\vlog_is_on.cc" + > </File> </Filter> </Files> |