mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
288 lines
7.4 KiB
C++
288 lines
7.4 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is Mozilla Toolkit Crash Reporter
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Mozilla Corporation
|
|
* Portions created by the Initial Developer are Copyright (C) 2006-2007
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Ted Mielczarek <ted.mielczarek@gmail.com>
|
|
* Dave Camp <dcamp@mozilla.com>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#include "crashreporter.h"
|
|
|
|
// Disable exception handler warnings.
|
|
#pragma warning( disable : 4530 )
|
|
#include <fstream>
|
|
#include <sstream>
|
|
|
|
using std::string;
|
|
using std::istream;
|
|
using std::ifstream;
|
|
using std::istringstream;
|
|
using std::ostream;
|
|
using std::ofstream;
|
|
|
|
StringTable gStrings;
|
|
int gArgc;
|
|
const char** gArgv;
|
|
|
|
static string gDumpFile;
|
|
static string gExtraFile;
|
|
static string gSettingsPath;
|
|
|
|
static string kExtraDataExtension = ".extra";
|
|
|
|
static bool ReadStrings(istream &in, StringTable &strings)
|
|
{
|
|
string currentSection;
|
|
while (!in.eof()) {
|
|
string line;
|
|
std::getline(in, line);
|
|
int sep = line.find('=');
|
|
if (sep >= 0) {
|
|
string key, value;
|
|
key = line.substr(0, sep);
|
|
value = line.substr(sep + 1);
|
|
strings[key] = value;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool ReadStringsFromFile(const string& path,
|
|
StringTable& strings)
|
|
{
|
|
ifstream f(path.c_str(), std::ios::in);
|
|
if (!f.is_open()) return false;
|
|
|
|
return ReadStrings(f, strings);
|
|
}
|
|
|
|
static bool ReadConfig()
|
|
{
|
|
string iniPath;
|
|
if (!UIGetIniPath(iniPath))
|
|
return false;
|
|
|
|
if (!ReadStringsFromFile(iniPath, gStrings))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
static string GetExtraDataFilename(const string& dumpfile)
|
|
{
|
|
string filename(dumpfile);
|
|
int dot = filename.rfind('.');
|
|
if (dot < 0)
|
|
return "";
|
|
|
|
filename.replace(dot, filename.length() - dot, kExtraDataExtension);
|
|
return filename;
|
|
}
|
|
|
|
static string Basename(const string& file)
|
|
{
|
|
int slashIndex = file.rfind(UI_DIR_SEPARATOR);
|
|
if (slashIndex >= 0)
|
|
return file.substr(slashIndex + 1);
|
|
else
|
|
return file;
|
|
}
|
|
|
|
static bool MoveCrashData(const string& toDir,
|
|
string& dumpfile,
|
|
string& extrafile)
|
|
{
|
|
if (!UIEnsurePathExists(toDir)) {
|
|
UIError(toDir.c_str());
|
|
return false;
|
|
}
|
|
|
|
string newDump = toDir + UI_DIR_SEPARATOR + Basename(dumpfile);
|
|
string newExtra = toDir + UI_DIR_SEPARATOR + Basename(extrafile);
|
|
|
|
if (!UIMoveFile(dumpfile, newDump) ||
|
|
!UIMoveFile(extrafile, newExtra)) {
|
|
UIError(dumpfile.c_str());
|
|
UIError(newDump.c_str());
|
|
return false;
|
|
}
|
|
|
|
dumpfile = newDump;
|
|
extrafile = newExtra;
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool AddSubmittedReport(const string& serverResponse)
|
|
{
|
|
StringTable responseItems;
|
|
istringstream in(serverResponse);
|
|
ReadStrings(in, responseItems);
|
|
|
|
if (responseItems.find("CrashID") == responseItems.end())
|
|
return false;
|
|
|
|
string submittedDir =
|
|
gSettingsPath + UI_DIR_SEPARATOR + "submitted";
|
|
if (!UIEnsurePathExists(submittedDir)) {
|
|
return false;
|
|
}
|
|
|
|
string path = submittedDir + UI_DIR_SEPARATOR +
|
|
responseItems["CrashID"] + ".txt";
|
|
|
|
ofstream file(path.c_str());
|
|
if (!file.is_open())
|
|
return false;
|
|
|
|
char buf[1024];
|
|
UI_SNPRINTF(buf, 1024,
|
|
gStrings["CrashID"].c_str(),
|
|
responseItems["CrashID"].c_str());
|
|
file << buf << "\n";
|
|
|
|
if (responseItems.find("ViewURL") != responseItems.end()) {
|
|
UI_SNPRINTF(buf, 1024,
|
|
gStrings["ViewURL"].c_str(),
|
|
responseItems["ViewURL"].c_str());
|
|
file << buf << "\n";
|
|
}
|
|
|
|
file.close();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
bool CrashReporterSendCompleted(bool success,
|
|
const string& serverResponse)
|
|
{
|
|
if (success) {
|
|
if (!gDumpFile.empty())
|
|
UIDeleteFile(gDumpFile);
|
|
if (!gExtraFile.empty())
|
|
UIDeleteFile(gExtraFile);
|
|
|
|
return AddSubmittedReport(serverResponse);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
gArgc = argc;
|
|
gArgv = argv;
|
|
|
|
if (!ReadConfig()) {
|
|
UIError("Couldn't read configuration");
|
|
return 0;
|
|
}
|
|
|
|
if (!UIInit())
|
|
return 0;
|
|
|
|
if (argc > 1) {
|
|
gDumpFile = argv[1];
|
|
}
|
|
|
|
if (gDumpFile.empty()) {
|
|
// no dump file specified, run the default UI
|
|
UIShowDefaultUI();
|
|
} else {
|
|
gExtraFile = GetExtraDataFilename(gDumpFile);
|
|
if (gExtraFile.empty()) {
|
|
UIError("Couldn't get extra data filename");
|
|
return 0;
|
|
}
|
|
|
|
StringTable queryParameters;
|
|
if (!ReadStringsFromFile(gExtraFile, queryParameters)) {
|
|
UIError("Couldn't read extra data");
|
|
return 0;
|
|
}
|
|
|
|
if (queryParameters.find("ProductName") == queryParameters.end()) {
|
|
UIError("No product name specified");
|
|
return 0;
|
|
}
|
|
|
|
if (queryParameters.find("ServerURL") == queryParameters.end()) {
|
|
UIError("No server URL specified");
|
|
return 0;
|
|
}
|
|
|
|
string product = queryParameters["ProductName"];
|
|
string vendor = queryParameters["Vendor"];
|
|
if (!UIGetSettingsPath(vendor, product, gSettingsPath)) {
|
|
UIError("Couldn't get settings path");
|
|
return 0;
|
|
}
|
|
|
|
string pendingDir = gSettingsPath + UI_DIR_SEPARATOR + "pending";
|
|
if (!MoveCrashData(pendingDir, gDumpFile, gExtraFile)) {
|
|
UIError("Couldn't move crash data");
|
|
return 0;
|
|
}
|
|
|
|
string sendURL = queryParameters["ServerURL"];
|
|
// we don't need to actually send this
|
|
queryParameters.erase("ServerURL");
|
|
|
|
// allow override of the server url via environment variable
|
|
//XXX: remove this in the far future when our robot
|
|
// masters force everyone to use XULRunner
|
|
char* urlEnv = getenv("MOZ_CRASHREPORTER_URL");
|
|
if (urlEnv && *urlEnv) {
|
|
sendURL = urlEnv;
|
|
}
|
|
|
|
UIShowCrashUI(gDumpFile, queryParameters, sendURL);
|
|
}
|
|
|
|
UIShutdown();
|
|
|
|
return 0;
|
|
}
|
|
|
|
#if defined(XP_WIN) && !defined(__GNUC__)
|
|
// We need WinMain in order to not be a console app. This function is unused
|
|
// if we are a console application.
|
|
int WINAPI WinMain( HINSTANCE, HINSTANCE, LPSTR args, int )
|
|
{
|
|
// Do the real work.
|
|
return main(__argc, (const char**)__argv);
|
|
}
|
|
#endif
|