2007-07-24 18:06:00 -07:00
|
|
|
/* -*- 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
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Dave Camp <dcamp@mozilla.com>
|
2008-01-28 14:52:42 -08:00
|
|
|
* Ted Mielczarek <ted.mielczarek@gmail.com>
|
2007-07-24 18:06:00 -07:00
|
|
|
*
|
|
|
|
* 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 ***** */
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2007-07-24 18:06:03 -07:00
|
|
|
#import <CoreFoundation/CoreFoundation.h>
|
|
|
|
#include "crashreporter.h"
|
2007-07-24 18:06:00 -07:00
|
|
|
#include "crashreporter_osx.h"
|
2007-07-24 18:06:03 -07:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
2007-11-09 08:46:34 -08:00
|
|
|
#include <sstream>
|
2007-07-24 18:06:00 -07:00
|
|
|
|
|
|
|
using std::string;
|
2007-07-24 18:06:05 -07:00
|
|
|
using std::vector;
|
2007-11-09 08:46:34 -08:00
|
|
|
using std::ostringstream;
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:08 -07:00
|
|
|
using namespace CrashReporter;
|
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
static NSAutoreleasePool* gMainPool;
|
|
|
|
static CrashReporterUI* gUI = 0;
|
|
|
|
static string gDumpFile;
|
|
|
|
static StringTable gQueryParameters;
|
2007-11-28 16:53:57 -08:00
|
|
|
static string gURLParameter;
|
2007-07-24 18:06:03 -07:00
|
|
|
static string gSendURL;
|
2007-07-24 18:06:05 -07:00
|
|
|
static vector<string> gRestartArgs;
|
2008-01-25 03:24:02 -08:00
|
|
|
static bool gDidTrySend = false;
|
2008-07-02 12:14:57 -07:00
|
|
|
static bool gRTLlayout = false;
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
#define NSSTR(s) [NSString stringWithUTF8String:(s).c_str()]
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:05 -07:00
|
|
|
static NSString* Str(const char* aName)
|
2007-07-24 18:06:00 -07:00
|
|
|
{
|
2007-07-24 18:06:03 -07:00
|
|
|
string str = gStrings[aName];
|
2007-07-24 18:06:00 -07:00
|
|
|
if (str.empty()) str = "?";
|
2007-07-24 18:06:03 -07:00
|
|
|
return NSSTR(str);
|
2007-07-24 18:06:00 -07:00
|
|
|
}
|
|
|
|
|
2007-07-24 18:06:05 -07:00
|
|
|
static bool RestartApplication()
|
|
|
|
{
|
|
|
|
char** argv = reinterpret_cast<char**>(
|
|
|
|
malloc(sizeof(char*) * (gRestartArgs.size() + 1)));
|
|
|
|
|
|
|
|
if (!argv) return false;
|
|
|
|
|
|
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < gRestartArgs.size(); i++) {
|
|
|
|
argv[i] = (char*)gRestartArgs[i].c_str();
|
|
|
|
}
|
|
|
|
argv[i] = 0;
|
|
|
|
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid == -1)
|
|
|
|
return false;
|
|
|
|
else if (pid == 0) {
|
|
|
|
(void)execv(argv[0], argv);
|
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(argv);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
@implementation CrashReporterUI
|
|
|
|
|
|
|
|
-(void)awakeFromNib
|
2007-07-24 18:06:00 -07:00
|
|
|
{
|
2007-07-24 18:06:03 -07:00
|
|
|
gUI = self;
|
2008-01-28 14:52:42 -08:00
|
|
|
[mWindow center];
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
[mWindow setTitle:[[NSBundle mainBundle]
|
2007-07-24 18:06:05 -07:00
|
|
|
objectForInfoDictionaryKey:@"CFBundleName"]];
|
2007-07-24 18:06:03 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
-(void)showCrashUI:(const string&)dumpfile
|
|
|
|
queryParameters:(const StringTable&)queryParameters
|
|
|
|
sendURL:(const string&)sendURL
|
2007-07-24 18:06:00 -07:00
|
|
|
{
|
2007-07-24 18:06:03 -07:00
|
|
|
gDumpFile = dumpfile;
|
|
|
|
gQueryParameters = queryParameters;
|
|
|
|
gSendURL = sendURL;
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
[mWindow setTitle:Str(ST_CRASHREPORTERTITLE)];
|
|
|
|
[mHeaderLabel setStringValue:Str(ST_CRASHREPORTERHEADER)];
|
2007-07-24 18:06:05 -07:00
|
|
|
|
2008-07-02 12:14:57 -07:00
|
|
|
NSRect viewReportFrame = [mViewReportButton frame];
|
2008-01-28 14:52:42 -08:00
|
|
|
[mViewReportButton setTitle:Str(ST_VIEWREPORT)];
|
|
|
|
[mViewReportButton sizeToFit];
|
2008-07-02 12:14:57 -07:00
|
|
|
if (gRTLlayout) {
|
|
|
|
// sizeToFit will keep the left side fixed, so realign
|
|
|
|
float oldWidth = viewReportFrame.size.width;
|
|
|
|
viewReportFrame = [mViewReportButton frame];
|
|
|
|
viewReportFrame.origin.x += oldWidth - viewReportFrame.size.width;
|
|
|
|
[mViewReportButton setFrame: viewReportFrame];
|
|
|
|
}
|
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
[mSubmitReportButton setTitle:Str(ST_CHECKSUBMIT)];
|
|
|
|
[mIncludeURLButton setTitle:Str(ST_CHECKURL)];
|
|
|
|
[mEmailMeButton setTitle:Str(ST_CHECKEMAIL)];
|
|
|
|
[mViewReportOkButton setTitle:Str(ST_OK)];
|
2007-07-24 18:06:05 -07:00
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
[mCommentText setPlaceholder:Str(ST_COMMENTGRAYTEXT)];
|
2008-07-02 12:14:57 -07:00
|
|
|
if (gRTLlayout)
|
|
|
|
[mCommentText toggleBaseWritingDirection:self];
|
2008-01-28 14:52:42 -08:00
|
|
|
[[mEmailText cell] setPlaceholderString:Str(ST_EMAILGRAYTEXT)];
|
2007-07-24 18:06:05 -07:00
|
|
|
|
2007-11-28 16:53:57 -08:00
|
|
|
if (gQueryParameters.find("URL") != gQueryParameters.end()) {
|
2007-11-28 16:55:15 -08:00
|
|
|
// save the URL value in case the checkbox gets unchecked
|
2007-11-28 16:53:57 -08:00
|
|
|
gURLParameter = gQueryParameters["URL"];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// no URL specified, hide checkbox
|
2008-01-28 14:52:42 -08:00
|
|
|
[mIncludeURLButton removeFromSuperview];
|
2007-11-28 16:53:57 -08:00
|
|
|
// shrink window to fit
|
2008-01-28 14:52:42 -08:00
|
|
|
NSRect frame = [mWindow frame];
|
|
|
|
NSRect includeURLFrame = [mIncludeURLButton frame];
|
|
|
|
NSRect emailFrame = [mEmailMeButton frame];
|
|
|
|
int buttonMask = [mViewReportButton autoresizingMask];
|
|
|
|
int checkMask = [mSubmitReportButton autoresizingMask];
|
|
|
|
int commentScrollMask = [mCommentScrollView autoresizingMask];
|
|
|
|
|
|
|
|
[mViewReportButton setAutoresizingMask:NSViewMinYMargin];
|
|
|
|
[mSubmitReportButton setAutoresizingMask:NSViewMinYMargin];
|
|
|
|
[mCommentScrollView setAutoresizingMask:NSViewMinYMargin];
|
2007-11-28 16:53:57 -08:00
|
|
|
|
|
|
|
// remove all the space in between
|
|
|
|
frame.size.height -= includeURLFrame.origin.y - emailFrame.origin.y;
|
2008-01-28 14:52:42 -08:00
|
|
|
[mWindow setFrame:frame display: true animate:NO];
|
2007-11-28 16:53:57 -08:00
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
[mViewReportButton setAutoresizingMask:buttonMask];
|
|
|
|
[mSubmitReportButton setAutoresizingMask:checkMask];
|
|
|
|
[mCommentScrollView setAutoresizingMask:commentScrollMask];
|
2007-11-28 16:53:57 -08:00
|
|
|
}
|
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
// resize some buttons horizontally and possibly some controls vertically
|
|
|
|
[self doInitialResizing];
|
2007-07-24 18:06:05 -07:00
|
|
|
|
2008-04-07 14:18:06 -07:00
|
|
|
// load default state of submit checkbox
|
|
|
|
// we don't just do this via IB because we want the default to be
|
|
|
|
// off a certain percentage of the time
|
|
|
|
BOOL submitChecked = NO;
|
|
|
|
NSUserDefaults* userDefaults = [NSUserDefaults standardUserDefaults];
|
|
|
|
if (nil != [userDefaults objectForKey:@"submitReport"]) {
|
|
|
|
submitChecked = [userDefaults boolForKey:@"submitReport"];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// use compile-time specified enable percentage
|
|
|
|
submitChecked = ShouldEnableSending();
|
|
|
|
[userDefaults setBool:submitChecked forKey:@"submitReport"];
|
|
|
|
}
|
|
|
|
[mSubmitReportButton setState:(submitChecked ? NSOnState : NSOffState)];
|
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
[self updateSubmit];
|
2007-11-28 16:53:57 -08:00
|
|
|
[self updateURL];
|
2007-07-24 18:06:05 -07:00
|
|
|
[self updateEmail];
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
[mWindow makeKeyAndOrderFront:nil];
|
2007-07-24 18:06:03 -07:00
|
|
|
}
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
-(void)showErrorUI:(const string&)message
|
|
|
|
{
|
2008-01-28 14:52:42 -08:00
|
|
|
[self setView: mErrorView animate: NO];
|
2007-07-24 18:06:05 -07:00
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
[mErrorHeaderLabel setStringValue:Str(ST_CRASHREPORTERHEADER)];
|
|
|
|
[self setStringFitVertically:mErrorLabel
|
2007-07-24 18:06:05 -07:00
|
|
|
string:NSSTR(message)
|
|
|
|
resizeWindow:YES];
|
2008-01-28 14:52:42 -08:00
|
|
|
[mErrorCloseButton setTitle:Str(ST_OK)];
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
[mErrorCloseButton setKeyEquivalent:@"\r"];
|
|
|
|
[mWindow makeFirstResponder:mErrorCloseButton];
|
|
|
|
[mWindow makeKeyAndOrderFront:nil];
|
2007-07-24 18:06:00 -07:00
|
|
|
}
|
|
|
|
|
2007-07-24 18:06:05 -07:00
|
|
|
-(void)showReportInfo
|
|
|
|
{
|
|
|
|
NSDictionary* boldAttr = [NSDictionary
|
2008-01-28 14:52:42 -08:00
|
|
|
dictionaryWithObject:
|
|
|
|
[NSFont boldSystemFontOfSize:
|
|
|
|
[NSFont smallSystemFontSize]]
|
2007-07-24 18:06:05 -07:00
|
|
|
forKey:NSFontAttributeName];
|
|
|
|
NSDictionary* normalAttr = [NSDictionary
|
2008-01-28 14:52:42 -08:00
|
|
|
dictionaryWithObject:
|
|
|
|
[NSFont systemFontOfSize:
|
|
|
|
[NSFont smallSystemFontSize]]
|
2007-07-24 18:06:05 -07:00
|
|
|
forKey:NSFontAttributeName];
|
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
[mViewReportTextView setString:@""];
|
2007-07-24 18:06:05 -07:00
|
|
|
for (StringTable::iterator iter = gQueryParameters.begin();
|
|
|
|
iter != gQueryParameters.end();
|
|
|
|
iter++) {
|
2008-01-28 14:52:42 -08:00
|
|
|
NSAttributedString* key = [[NSAttributedString alloc]
|
|
|
|
initWithString:NSSTR(iter->first + ": ")
|
|
|
|
attributes:boldAttr];
|
|
|
|
NSAttributedString* value = [[NSAttributedString alloc]
|
|
|
|
initWithString:NSSTR(iter->second + "\n")
|
|
|
|
attributes:normalAttr];
|
|
|
|
[[mViewReportTextView textStorage] appendAttributedString: key];
|
|
|
|
[[mViewReportTextView textStorage] appendAttributedString: value];
|
|
|
|
[key release];
|
|
|
|
[value release];
|
2007-07-24 18:06:05 -07:00
|
|
|
}
|
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
NSAttributedString* extra = [[NSAttributedString alloc]
|
|
|
|
initWithString:NSSTR("\n" + gStrings[ST_EXTRAREPORTINFO])
|
|
|
|
attributes:normalAttr];
|
|
|
|
[[mViewReportTextView textStorage] appendAttributedString: extra];
|
|
|
|
[extra release];
|
2007-07-24 18:06:05 -07:00
|
|
|
}
|
|
|
|
|
2008-03-07 14:17:17 -08:00
|
|
|
- (void)maybeSubmitReport
|
|
|
|
{
|
|
|
|
if ([mSubmitReportButton state] == NSOnState) {
|
|
|
|
[self setStringFitVertically:mProgressText
|
|
|
|
string:Str(ST_REPORTDURINGSUBMIT)
|
|
|
|
resizeWindow:YES];
|
|
|
|
// disable all the controls
|
|
|
|
[self enableControls:NO];
|
|
|
|
[mSubmitReportButton setEnabled:NO];
|
|
|
|
[mRestartButton setEnabled:NO];
|
|
|
|
[mCloseButton setEnabled:NO];
|
|
|
|
[mProgressIndicator startAnimation:self];
|
|
|
|
gDidTrySend = true;
|
|
|
|
[self sendReport];
|
|
|
|
} else {
|
|
|
|
[NSApp terminate:self];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-11 16:39:34 -07:00
|
|
|
- (void)closeMeDown:(id)unused
|
2008-03-10 11:59:59 -07:00
|
|
|
{
|
|
|
|
[NSApp terminate:self];
|
|
|
|
}
|
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
-(IBAction)submitReportClicked:(id)sender
|
2007-07-24 18:06:05 -07:00
|
|
|
{
|
2008-01-28 14:52:42 -08:00
|
|
|
[self updateSubmit];
|
2008-04-07 14:18:06 -07:00
|
|
|
NSUserDefaults* userDefaults = [NSUserDefaults standardUserDefaults];
|
|
|
|
[userDefaults setBool:[mSubmitReportButton state] == NSOnState
|
|
|
|
forKey:@"submitReport"];
|
2008-01-28 14:52:42 -08:00
|
|
|
}
|
2007-07-24 18:06:05 -07:00
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
-(IBAction)viewReportClicked:(id)sender
|
|
|
|
{
|
|
|
|
[self showReportInfo];
|
|
|
|
[NSApp beginSheet:mViewReportWindow modalForWindow:mWindow
|
|
|
|
modalDelegate:nil didEndSelector:nil contextInfo:nil];
|
2007-07-24 18:06:05 -07:00
|
|
|
}
|
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
- (IBAction)viewReportOkClicked:(id)sender;
|
2007-07-24 18:06:00 -07:00
|
|
|
{
|
2008-01-28 14:52:42 -08:00
|
|
|
[mViewReportWindow orderOut:nil];
|
|
|
|
[NSApp endSheet:mViewReportWindow];
|
2007-07-24 18:06:00 -07:00
|
|
|
}
|
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
-(IBAction)closeClicked:(id)sender
|
2007-07-24 18:06:00 -07:00
|
|
|
{
|
2008-03-07 14:17:17 -08:00
|
|
|
[self maybeSubmitReport];
|
2007-07-24 18:06:05 -07:00
|
|
|
}
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:05 -07:00
|
|
|
-(IBAction)restartClicked:(id)sender
|
|
|
|
{
|
|
|
|
RestartApplication();
|
2008-03-07 14:17:17 -08:00
|
|
|
[self maybeSubmitReport];
|
2007-07-24 18:06:05 -07:00
|
|
|
}
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-11-28 16:53:57 -08:00
|
|
|
- (IBAction)includeURLClicked:(id)sender
|
|
|
|
{
|
|
|
|
[self updateURL];
|
|
|
|
}
|
|
|
|
|
2007-07-24 18:06:05 -07:00
|
|
|
-(IBAction)emailMeClicked:(id)sender
|
|
|
|
{
|
|
|
|
[self updateEmail];
|
2007-07-24 18:06:00 -07:00
|
|
|
}
|
|
|
|
|
2007-07-24 18:06:05 -07:00
|
|
|
-(void)controlTextDidChange:(NSNotification *)note
|
2007-07-24 18:06:00 -07:00
|
|
|
{
|
2008-01-28 14:52:42 -08:00
|
|
|
[self updateEmail];
|
|
|
|
}
|
|
|
|
|
2008-01-31 21:20:57 -08:00
|
|
|
- (void)textDidChange:(NSNotification *)aNotification
|
2008-01-28 14:52:42 -08:00
|
|
|
{
|
|
|
|
// update comment parameter
|
|
|
|
if ([[[mCommentText textStorage] mutableString] length] > 0)
|
|
|
|
gQueryParameters["Comments"] = [[[mCommentText textStorage] mutableString]
|
|
|
|
UTF8String];
|
2007-07-24 18:06:05 -07:00
|
|
|
else
|
2008-01-28 14:52:42 -08:00
|
|
|
gQueryParameters.erase("Comments");
|
|
|
|
}
|
2007-07-24 18:06:05 -07:00
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
// Limit the comment field to 500 bytes in UTF-8
|
|
|
|
- (BOOL)textView:(NSTextView *)aTextView shouldChangeTextInRange:(NSRange)affectedCharRange replacementString:(NSString *)replacementString
|
|
|
|
{
|
|
|
|
// current string length + replacement text length - replaced range length
|
|
|
|
if (([[aTextView string]
|
|
|
|
lengthOfBytesUsingEncoding:NSUTF8StringEncoding]
|
|
|
|
+ [replacementString lengthOfBytesUsingEncoding:NSUTF8StringEncoding]
|
|
|
|
- [[[aTextView string] substringWithRange:affectedCharRange]
|
|
|
|
lengthOfBytesUsingEncoding:NSUTF8StringEncoding])
|
|
|
|
> MAX_COMMENT_LENGTH) {
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)doInitialResizing
|
|
|
|
{
|
|
|
|
NSRect windowFrame = [mWindow frame];
|
|
|
|
NSRect restartFrame = [mRestartButton frame];
|
|
|
|
NSRect closeFrame = [mCloseButton frame];
|
|
|
|
// resize close button to fit text
|
|
|
|
float oldCloseWidth = closeFrame.size.width;
|
|
|
|
[mCloseButton setTitle:Str(ST_QUIT)];
|
|
|
|
[mCloseButton sizeToFit];
|
|
|
|
closeFrame = [mCloseButton frame];
|
|
|
|
// move close button left if it grew
|
2008-07-02 12:14:57 -07:00
|
|
|
if (!gRTLlayout) {
|
|
|
|
closeFrame.origin.x -= closeFrame.size.width - oldCloseWidth;
|
|
|
|
}
|
2008-01-28 14:52:42 -08:00
|
|
|
|
|
|
|
if (gRestartArgs.size() == 0) {
|
|
|
|
[mRestartButton removeFromSuperview];
|
2008-07-02 12:14:57 -07:00
|
|
|
if (!gRTLlayout) {
|
|
|
|
closeFrame.origin.x = restartFrame.origin.x +
|
|
|
|
(restartFrame.size.width - closeFrame.size.width);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
closeFrame.origin.x = restartFrame.origin.x;
|
|
|
|
}
|
2008-01-28 14:52:42 -08:00
|
|
|
[mCloseButton setFrame: closeFrame];
|
|
|
|
[mCloseButton setKeyEquivalent:@"\r"];
|
|
|
|
} else {
|
|
|
|
[mRestartButton setTitle:Str(ST_RESTART)];
|
|
|
|
// resize "restart" button
|
|
|
|
float oldRestartWidth = restartFrame.size.width;
|
|
|
|
[mRestartButton sizeToFit];
|
|
|
|
restartFrame = [mRestartButton frame];
|
2008-07-02 12:14:57 -07:00
|
|
|
if (!gRTLlayout) {
|
|
|
|
// move left by the amount that the button grew
|
|
|
|
restartFrame.origin.x -= restartFrame.size.width - oldRestartWidth;
|
|
|
|
closeFrame.origin.x -= restartFrame.size.width - oldRestartWidth;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// shift the close button right in RTL
|
|
|
|
closeFrame.origin.x += restartFrame.size.width - oldRestartWidth;
|
|
|
|
}
|
2008-01-28 14:52:42 -08:00
|
|
|
[mRestartButton setFrame: restartFrame];
|
|
|
|
[mCloseButton setFrame: closeFrame];
|
|
|
|
// possibly resize window if both buttons no longer fit
|
|
|
|
// leave 20 px from either side of the window, and 12 px
|
|
|
|
// between the buttons
|
|
|
|
float neededWidth = closeFrame.size.width + restartFrame.size.width +
|
|
|
|
2*20 + 12;
|
|
|
|
|
|
|
|
if (neededWidth > windowFrame.size.width) {
|
|
|
|
windowFrame.size.width = neededWidth;
|
|
|
|
[mWindow setFrame:windowFrame display: true animate: NO];
|
|
|
|
}
|
|
|
|
[mRestartButton setKeyEquivalent:@"\r"];
|
|
|
|
}
|
|
|
|
|
|
|
|
NSButton *checkboxes[] = {
|
|
|
|
mSubmitReportButton,
|
|
|
|
mIncludeURLButton,
|
|
|
|
mEmailMeButton
|
|
|
|
};
|
|
|
|
|
|
|
|
for (int i=0; i<3; i++) {
|
2008-07-02 12:14:57 -07:00
|
|
|
NSRect frame = [checkboxes[i] frame];
|
2008-01-28 14:52:42 -08:00
|
|
|
[checkboxes[i] sizeToFit];
|
2008-07-02 12:14:57 -07:00
|
|
|
if (gRTLlayout) {
|
|
|
|
// sizeToFit will keep the left side fixed, so realign
|
|
|
|
float oldWidth = frame.size.width;
|
|
|
|
frame = [checkboxes[i] frame];
|
|
|
|
frame.origin.x += oldWidth - frame.size.width;
|
|
|
|
[checkboxes[i] setFrame: frame];
|
|
|
|
}
|
2008-01-28 14:52:42 -08:00
|
|
|
// keep existing spacing on left side, + 20 px spare on right
|
|
|
|
float neededWidth = frame.origin.x + frame.size.width + 20;
|
|
|
|
if (neededWidth > windowFrame.size.width) {
|
|
|
|
windowFrame.size.width = neededWidth;
|
|
|
|
[mWindow setFrame:windowFrame display: true animate: NO];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// do this down here because we may have made the window wider
|
|
|
|
// up above
|
|
|
|
[self setStringFitVertically:mDescriptionLabel
|
|
|
|
string:Str(ST_CRASHREPORTERDESCRIPTION)
|
|
|
|
resizeWindow:YES];
|
|
|
|
|
|
|
|
// now pin all the controls (except quit/submit) in place,
|
|
|
|
// if we lengthen the window after this, it's just to lengthen
|
|
|
|
// the progress text, so nothing above that text should move.
|
|
|
|
NSView* views[] = {
|
|
|
|
mSubmitReportButton,
|
|
|
|
mViewReportButton,
|
|
|
|
mCommentScrollView,
|
|
|
|
mIncludeURLButton,
|
|
|
|
mEmailMeButton,
|
|
|
|
mEmailText,
|
|
|
|
mProgressIndicator,
|
|
|
|
mProgressText
|
|
|
|
};
|
|
|
|
for (unsigned int i=0; i<sizeof(views)/sizeof(views[0]); i++) {
|
|
|
|
[views[i] setAutoresizingMask:NSViewMinYMargin];
|
|
|
|
}
|
2007-07-24 18:06:05 -07:00
|
|
|
}
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:05 -07:00
|
|
|
-(float)setStringFitVertically:(NSControl*)control
|
|
|
|
string:(NSString*)str
|
|
|
|
resizeWindow:(BOOL)resizeWindow
|
|
|
|
{
|
|
|
|
// hack to make the text field grow vertically
|
|
|
|
NSRect frame = [control frame];
|
|
|
|
float oldHeight = frame.size.height;
|
|
|
|
|
|
|
|
frame.size.height = 10000;
|
|
|
|
NSSize oldCellSize = [[control cell] cellSizeForBounds: frame];
|
|
|
|
[control setStringValue: str];
|
|
|
|
NSSize newCellSize = [[control cell] cellSizeForBounds: frame];
|
|
|
|
|
|
|
|
float delta = newCellSize.height - oldCellSize.height;
|
|
|
|
frame.origin.y -= delta;
|
|
|
|
frame.size.height = oldHeight + delta;
|
|
|
|
[control setFrame: frame];
|
|
|
|
|
|
|
|
if (resizeWindow) {
|
2008-01-28 14:52:42 -08:00
|
|
|
NSRect frame = [mWindow frame];
|
2007-07-24 18:06:05 -07:00
|
|
|
frame.origin.y -= delta;
|
|
|
|
frame.size.height += delta;
|
2008-01-28 14:52:42 -08:00
|
|
|
[mWindow setFrame:frame display: true animate: NO];
|
2007-07-24 18:06:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return delta;
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void)setView: (NSView*)v animate: (BOOL)animate
|
|
|
|
{
|
2008-01-28 14:52:42 -08:00
|
|
|
NSRect frame = [mWindow frame];
|
2007-07-24 18:06:05 -07:00
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
NSRect oldViewFrame = [[mWindow contentView] frame];
|
2007-07-24 18:06:03 -07:00
|
|
|
NSRect newViewFrame = [v frame];
|
2007-07-24 18:06:00 -07:00
|
|
|
|
|
|
|
frame.origin.y += oldViewFrame.size.height - newViewFrame.size.height;
|
|
|
|
frame.size.height -= oldViewFrame.size.height - newViewFrame.size.height;
|
|
|
|
|
|
|
|
frame.origin.x += oldViewFrame.size.width - newViewFrame.size.width;
|
|
|
|
frame.size.width -= oldViewFrame.size.width - newViewFrame.size.width;
|
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
[mWindow setContentView:v];
|
|
|
|
[mWindow setFrame:frame display:true animate:animate];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)enableControls:(BOOL)enabled
|
|
|
|
{
|
|
|
|
[mViewReportButton setEnabled:enabled];
|
|
|
|
[mIncludeURLButton setEnabled:enabled];
|
|
|
|
[mEmailMeButton setEnabled:enabled];
|
|
|
|
[mCommentText setEnabled:enabled];
|
|
|
|
[mCommentScrollView setHasVerticalScroller:enabled];
|
|
|
|
[self updateEmail];
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void)updateSubmit
|
|
|
|
{
|
|
|
|
if ([mSubmitReportButton state] == NSOnState) {
|
|
|
|
[self setStringFitVertically:mProgressText
|
|
|
|
string:Str(ST_REPORTPRESUBMIT)
|
|
|
|
resizeWindow:YES];
|
|
|
|
[mProgressText setHidden:NO];
|
|
|
|
// enable all the controls
|
|
|
|
[self enableControls:YES];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// not submitting, disable all the controls under
|
|
|
|
// the submit checkbox, and hide the status text
|
|
|
|
[mProgressText setHidden:YES];
|
|
|
|
[self enableControls:NO];
|
|
|
|
}
|
2007-07-24 18:06:05 -07:00
|
|
|
}
|
|
|
|
|
2007-11-28 16:53:57 -08:00
|
|
|
-(void)updateURL
|
|
|
|
{
|
2008-01-28 14:52:42 -08:00
|
|
|
if ([mIncludeURLButton state] == NSOnState && !gURLParameter.empty()) {
|
2007-11-28 16:53:57 -08:00
|
|
|
gQueryParameters["URL"] = gURLParameter;
|
|
|
|
} else {
|
|
|
|
gQueryParameters.erase("URL");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-24 18:06:05 -07:00
|
|
|
-(void)updateEmail
|
|
|
|
{
|
2008-01-28 14:52:42 -08:00
|
|
|
if ([mEmailMeButton state] == NSOnState &&
|
|
|
|
[mSubmitReportButton state] == NSOnState) {
|
|
|
|
NSString* email = [mEmailText stringValue];
|
2007-07-24 18:06:05 -07:00
|
|
|
gQueryParameters["Email"] = [email UTF8String];
|
2008-01-28 14:52:42 -08:00
|
|
|
[mEmailText setEnabled:YES];
|
2007-07-24 18:06:05 -07:00
|
|
|
} else {
|
|
|
|
gQueryParameters.erase("Email");
|
2008-01-28 14:52:42 -08:00
|
|
|
[mEmailText setEnabled:NO];
|
2007-07-24 18:06:05 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void)sendReport
|
|
|
|
{
|
2008-01-28 14:52:42 -08:00
|
|
|
if (![self setupPost]) {
|
|
|
|
LogMessage("Crash report submission failed: could not set up POST data");
|
|
|
|
[self setStringFitVertically:mProgressText
|
|
|
|
string:Str(ST_SUBMITFAILED)
|
|
|
|
resizeWindow:YES];
|
|
|
|
// quit after 5 seconds
|
2008-03-10 11:59:59 -07:00
|
|
|
[self performSelector:@selector(closeMeDown:) withObject:nil
|
2008-01-28 14:52:42 -08:00
|
|
|
afterDelay:5.0];
|
|
|
|
}
|
2007-07-24 18:06:05 -07:00
|
|
|
|
|
|
|
[NSThread detachNewThreadSelector:@selector(uploadThread:)
|
|
|
|
toTarget:self
|
|
|
|
withObject:mPost];
|
2007-07-24 18:06:00 -07:00
|
|
|
}
|
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
-(bool)setupPost
|
2007-07-24 18:06:00 -07:00
|
|
|
{
|
2007-07-24 18:06:03 -07:00
|
|
|
NSURL* url = [NSURL URLWithString:NSSTR(gSendURL)];
|
|
|
|
if (!url) return false;
|
2007-07-24 18:06:00 -07:00
|
|
|
|
|
|
|
mPost = [[HTTPMultipartUpload alloc] initWithURL: url];
|
2007-07-24 18:06:03 -07:00
|
|
|
if (!mPost) return false;
|
|
|
|
|
|
|
|
NSMutableDictionary* parameters =
|
|
|
|
[[NSMutableDictionary alloc] initWithCapacity: gQueryParameters.size()];
|
|
|
|
if (!parameters) return false;
|
|
|
|
|
|
|
|
StringTable::const_iterator end = gQueryParameters.end();
|
|
|
|
for (StringTable::const_iterator i = gQueryParameters.begin();
|
|
|
|
i != end;
|
|
|
|
i++) {
|
|
|
|
NSString* key = NSSTR(i->first);
|
|
|
|
NSString* value = NSSTR(i->second);
|
2007-07-24 18:06:00 -07:00
|
|
|
[parameters setObject: value forKey: key];
|
|
|
|
}
|
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
[mPost addFileAtPath: NSSTR(gDumpFile) name: @"upload_file_minidump"];
|
2007-07-24 18:06:00 -07:00
|
|
|
[mPost setParameters: parameters];
|
2008-01-28 14:52:42 -08:00
|
|
|
[parameters release];
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
return true;
|
2007-07-24 18:06:00 -07:00
|
|
|
}
|
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
-(void)uploadComplete:(NSData*)data
|
2007-07-24 18:06:00 -07:00
|
|
|
{
|
2007-07-24 18:06:03 -07:00
|
|
|
NSHTTPURLResponse* response = [mPost response];
|
2008-01-28 14:52:42 -08:00
|
|
|
[mPost release];
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
bool success;
|
|
|
|
string reply;
|
|
|
|
if (!data || !response || [response statusCode] != 200) {
|
|
|
|
success = false;
|
|
|
|
reply = "";
|
2007-11-09 08:46:34 -08:00
|
|
|
|
|
|
|
// if data is nil, we probably logged an error in uploadThread
|
|
|
|
if (data != nil && response != nil) {
|
|
|
|
ostringstream message;
|
|
|
|
message << "Crash report submission failed: server returned status "
|
|
|
|
<< [response statusCode];
|
|
|
|
LogMessage(message.str());
|
|
|
|
}
|
2007-07-24 18:06:03 -07:00
|
|
|
} else {
|
|
|
|
success = true;
|
2007-11-09 08:46:34 -08:00
|
|
|
LogMessage("Crash report submitted successfully");
|
2007-07-24 18:06:03 -07:00
|
|
|
|
|
|
|
NSString* encodingName = [response textEncodingName];
|
|
|
|
NSStringEncoding encoding;
|
|
|
|
if (encodingName) {
|
|
|
|
encoding = CFStringConvertEncodingToNSStringEncoding(
|
|
|
|
CFStringConvertIANACharSetNameToEncoding((CFStringRef)encodingName));
|
|
|
|
} else {
|
|
|
|
encoding = NSISOLatin1StringEncoding;
|
|
|
|
}
|
|
|
|
NSString* r = [[NSString alloc] initWithData: data encoding: encoding];
|
|
|
|
reply = [r UTF8String];
|
2008-01-28 14:52:42 -08:00
|
|
|
[r release];
|
2007-07-24 18:06:03 -07:00
|
|
|
}
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:08 -07:00
|
|
|
SendCompleted(success, reply);
|
2007-07-24 18:06:05 -07:00
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
[mProgressIndicator stopAnimation:self];
|
2007-07-24 18:06:05 -07:00
|
|
|
if (success) {
|
2008-01-28 14:52:42 -08:00
|
|
|
[self setStringFitVertically:mProgressText
|
|
|
|
string:Str(ST_REPORTSUBMITSUCCESS)
|
|
|
|
resizeWindow:YES];
|
2007-07-24 18:06:05 -07:00
|
|
|
} else {
|
2008-01-28 14:52:42 -08:00
|
|
|
[self setStringFitVertically:mProgressText
|
|
|
|
string:Str(ST_SUBMITFAILED)
|
|
|
|
resizeWindow:YES];
|
2007-07-24 18:06:05 -07:00
|
|
|
}
|
2008-01-28 14:52:42 -08:00
|
|
|
// quit after 5 seconds
|
2008-03-10 11:59:59 -07:00
|
|
|
[self performSelector:@selector(closeMeDown:) withObject:nil
|
2008-01-28 14:52:42 -08:00
|
|
|
afterDelay:5.0];
|
2007-07-24 18:06:00 -07:00
|
|
|
}
|
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
-(void)uploadThread:(HTTPMultipartUpload*)post
|
2007-07-24 18:06:00 -07:00
|
|
|
{
|
2007-07-24 18:06:03 -07:00
|
|
|
NSAutoreleasePool* autoreleasepool = [[NSAutoreleasePool alloc] init];
|
|
|
|
NSError* error = nil;
|
|
|
|
NSData* data = [post send: &error];
|
2007-11-09 08:46:34 -08:00
|
|
|
if (error) {
|
2007-07-24 18:06:03 -07:00
|
|
|
data = nil;
|
2007-11-09 08:46:34 -08:00
|
|
|
NSString* errorDesc = [error localizedDescription];
|
|
|
|
string message = [errorDesc UTF8String];
|
|
|
|
LogMessage("Crash report submission failed: " + message);
|
|
|
|
}
|
2007-07-24 18:06:00 -07:00
|
|
|
|
|
|
|
[self performSelectorOnMainThread: @selector(uploadComplete:)
|
2007-07-24 18:06:03 -07:00
|
|
|
withObject: data
|
|
|
|
waitUntilDone: YES];
|
2007-07-24 18:06:00 -07:00
|
|
|
|
|
|
|
[autoreleasepool release];
|
|
|
|
}
|
|
|
|
|
2007-11-19 18:15:03 -08:00
|
|
|
// to get auto-quit when we close the window
|
|
|
|
-(BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication*)theApplication
|
|
|
|
{
|
2008-01-28 14:52:42 -08:00
|
|
|
return YES;
|
2007-11-19 18:15:03 -08:00
|
|
|
}
|
|
|
|
|
2008-01-25 03:24:02 -08:00
|
|
|
-(void)applicationWillTerminate:(NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
// since we use [NSApp terminate:] we never return to main,
|
|
|
|
// so do our cleanup here
|
|
|
|
if (!gDidTrySend)
|
|
|
|
DeleteDump();
|
|
|
|
}
|
|
|
|
|
2007-07-24 18:06:00 -07:00
|
|
|
@end
|
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
@implementation TextViewWithPlaceHolder
|
|
|
|
|
|
|
|
- (BOOL)becomeFirstResponder
|
|
|
|
{
|
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
return [super becomeFirstResponder];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)drawRect:(NSRect)rect
|
|
|
|
{
|
|
|
|
[super drawRect:rect];
|
|
|
|
if (mPlaceHolderString && [[self string] isEqualToString:@""] &&
|
|
|
|
self != [[self window] firstResponder])
|
2008-07-02 12:14:57 -07:00
|
|
|
[mPlaceHolderString drawInRect:[self frame]];
|
2008-01-28 14:52:42 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)resignFirstResponder
|
|
|
|
{
|
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
return [super resignFirstResponder];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setPlaceholder:(NSString*)placeholder
|
|
|
|
{
|
|
|
|
NSColor* txtColor = [NSColor disabledControlTextColor];
|
|
|
|
NSDictionary* txtDict = [NSDictionary
|
|
|
|
dictionaryWithObjectsAndKeys:txtColor,
|
|
|
|
NSForegroundColorAttributeName, nil];
|
2008-07-02 12:14:57 -07:00
|
|
|
mPlaceHolderString = [[NSMutableAttributedString alloc]
|
2008-01-28 14:52:42 -08:00
|
|
|
initWithString:placeholder attributes:txtDict];
|
2008-07-02 12:14:57 -07:00
|
|
|
if (gRTLlayout)
|
|
|
|
[mPlaceHolderString setAlignment:NSRightTextAlignment
|
|
|
|
range:NSMakeRange(0, [placeholder length])];
|
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)insertTab:(id)sender
|
|
|
|
{
|
|
|
|
// don't actually want to insert tabs, just tab to next control
|
|
|
|
[[self window] selectNextKeyView:sender];
|
|
|
|
}
|
|
|
|
|
2008-06-24 12:58:19 -07:00
|
|
|
- (void)insertBacktab:(id)sender
|
|
|
|
{
|
|
|
|
[[self window] selectPreviousKeyView:sender];
|
|
|
|
}
|
|
|
|
|
2008-01-28 14:52:42 -08:00
|
|
|
- (void)setEnabled:(BOOL)enabled
|
|
|
|
{
|
|
|
|
[self setSelectable:enabled];
|
|
|
|
[self setEditable:enabled];
|
|
|
|
if (![[self string] isEqualToString:@""]) {
|
|
|
|
NSAttributedString* colorString;
|
|
|
|
NSColor* txtColor;
|
|
|
|
if (enabled)
|
|
|
|
txtColor = [NSColor textColor];
|
|
|
|
else
|
|
|
|
txtColor = [NSColor disabledControlTextColor];
|
|
|
|
NSDictionary *txtDict = [NSDictionary
|
|
|
|
dictionaryWithObjectsAndKeys:txtColor,
|
|
|
|
NSForegroundColorAttributeName, nil];
|
|
|
|
colorString = [[NSAttributedString alloc]
|
|
|
|
initWithString:[self string]
|
|
|
|
attributes:txtDict];
|
|
|
|
[[self textStorage] setAttributedString: colorString];
|
|
|
|
[self setInsertionPointColor:txtColor];
|
|
|
|
[colorString release];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)dealloc
|
|
|
|
{
|
|
|
|
[mPlaceHolderString release];
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
/* === Crashreporter UI Functions === */
|
|
|
|
|
|
|
|
bool UIInit()
|
2007-07-24 18:06:00 -07:00
|
|
|
{
|
2007-07-24 18:06:03 -07:00
|
|
|
gMainPool = [[NSAutoreleasePool alloc] init];
|
|
|
|
[NSApplication sharedApplication];
|
2008-07-02 12:14:57 -07:00
|
|
|
|
|
|
|
if (gStrings.find("isRTL") != gStrings.end() &&
|
|
|
|
gStrings["isRTL"] == "yes")
|
|
|
|
gRTLlayout = true;
|
|
|
|
|
|
|
|
[NSBundle loadNibNamed:(gRTLlayout ? @"MainMenuRTL" : @"MainMenu")
|
|
|
|
owner:NSApp];
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
return true;
|
2007-07-24 18:06:00 -07:00
|
|
|
}
|
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
void UIShutdown()
|
2007-07-24 18:06:00 -07:00
|
|
|
{
|
2007-07-24 18:06:03 -07:00
|
|
|
[gMainPool release];
|
|
|
|
}
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
void UIShowDefaultUI()
|
|
|
|
{
|
2007-07-24 18:06:09 -07:00
|
|
|
[gUI showErrorUI: gStrings[ST_CRASHREPORTERDEFAULT]];
|
|
|
|
[NSApp run];
|
2007-07-24 18:06:03 -07:00
|
|
|
}
|
|
|
|
|
2008-01-25 03:24:02 -08:00
|
|
|
bool UIShowCrashUI(const string& dumpfile,
|
2007-07-24 18:06:03 -07:00
|
|
|
const StringTable& queryParameters,
|
2007-07-24 18:06:05 -07:00
|
|
|
const string& sendURL,
|
|
|
|
const vector<string>& restartArgs)
|
2007-07-24 18:06:03 -07:00
|
|
|
{
|
2007-07-24 18:06:05 -07:00
|
|
|
gRestartArgs = restartArgs;
|
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
[gUI showCrashUI: dumpfile
|
|
|
|
queryParameters: queryParameters
|
|
|
|
sendURL: sendURL];
|
|
|
|
[NSApp run];
|
2008-01-25 03:24:02 -08:00
|
|
|
|
|
|
|
return gDidTrySend;
|
2007-07-24 18:06:03 -07:00
|
|
|
}
|
|
|
|
|
2007-07-24 18:06:09 -07:00
|
|
|
void UIError_impl(const string& message)
|
2007-07-24 18:06:03 -07:00
|
|
|
{
|
|
|
|
if (!gUI) {
|
|
|
|
// UI failed to initialize, printing is the best we can do
|
|
|
|
printf("Error: %s\n", message.c_str());
|
|
|
|
return;
|
2007-07-24 18:06:00 -07:00
|
|
|
}
|
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
[gUI showErrorUI: message];
|
|
|
|
[NSApp run];
|
|
|
|
}
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
bool UIGetIniPath(string& path)
|
|
|
|
{
|
|
|
|
path = gArgv[0];
|
|
|
|
path.append(".ini");
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
return true;
|
|
|
|
}
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
bool UIGetSettingsPath(const string& vendor,
|
|
|
|
const string& product,
|
|
|
|
string& settingsPath)
|
|
|
|
{
|
2007-07-24 18:06:11 -07:00
|
|
|
FSRef foundRef;
|
|
|
|
OSErr err = FSFindFolder(kUserDomain, kApplicationSupportFolderType,
|
|
|
|
kCreateFolder, &foundRef);
|
|
|
|
if (err != noErr)
|
2007-07-24 18:06:03 -07:00
|
|
|
return false;
|
2007-07-24 18:06:00 -07:00
|
|
|
|
2007-07-24 18:06:11 -07:00
|
|
|
unsigned char path[PATH_MAX];
|
|
|
|
FSRefMakePath(&foundRef, path, sizeof(path));
|
|
|
|
NSString* destPath = [NSString stringWithUTF8String:reinterpret_cast<char*>(path)];
|
2007-07-24 18:06:03 -07:00
|
|
|
|
|
|
|
// Note that MacOS ignores the vendor when creating the profile hierarchy -
|
|
|
|
// all application preferences directories live alongside one another in
|
|
|
|
// ~/Library/Application Support/
|
|
|
|
destPath = [destPath stringByAppendingPathComponent: NSSTR(product)];
|
2007-09-04 08:28:06 -07:00
|
|
|
// Thunderbird stores its profile in ~/Library/Thunderbird,
|
|
|
|
// but we're going to put stuff in ~/Library/Application Support/Thunderbird
|
|
|
|
// anyway, so we have to ensure that path exists.
|
|
|
|
string tempPath = [destPath UTF8String];
|
|
|
|
if (!UIEnsurePathExists(tempPath))
|
|
|
|
return false;
|
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
destPath = [destPath stringByAppendingPathComponent: @"Crash Reports"];
|
|
|
|
|
|
|
|
settingsPath = [destPath UTF8String];
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UIEnsurePathExists(const string& path)
|
|
|
|
{
|
|
|
|
int ret = mkdir(path.c_str(), S_IRWXU);
|
|
|
|
int e = errno;
|
|
|
|
if (ret == -1 && e != EEXIST)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-07-24 18:06:09 -07:00
|
|
|
bool UIFileExists(const string& path)
|
|
|
|
{
|
|
|
|
struct stat sb;
|
|
|
|
int ret = stat(path.c_str(), &sb);
|
|
|
|
if (ret == -1 || !(sb.st_mode & S_IFREG))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-07-24 18:06:03 -07:00
|
|
|
bool UIMoveFile(const string& file, const string& newfile)
|
|
|
|
{
|
2009-08-18 09:04:53 -07:00
|
|
|
if (!rename(file.c_str(), newfile.c_str()))
|
|
|
|
return true;
|
|
|
|
if (errno != EXDEV)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
NSFileManager *fileManager = [NSFileManager defaultManager];
|
|
|
|
NSString *source = [fileManager stringWithFileSystemRepresentation:file.c_str() length:file.length()];
|
|
|
|
NSString *dest = [fileManager stringWithFileSystemRepresentation:newfile.c_str() length:newfile.length()];
|
|
|
|
if (!source || !dest)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
[fileManager movePath:source toPath:dest handler:nil];
|
|
|
|
return UIFileExists(newfile);
|
2007-07-24 18:06:03 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool UIDeleteFile(const string& file)
|
|
|
|
{
|
|
|
|
return (unlink(file.c_str()) != -1);
|
2007-07-24 18:06:00 -07:00
|
|
|
}
|
2007-07-24 18:06:10 -07:00
|
|
|
|
|
|
|
std::ifstream* UIOpenRead(const string& filename)
|
|
|
|
{
|
|
|
|
return new std::ifstream(filename.c_str(), std::ios::in);
|
|
|
|
}
|
|
|
|
|
2007-11-09 08:46:34 -08:00
|
|
|
std::ofstream* UIOpenWrite(const string& filename, bool append) // append=false
|
2007-07-24 18:06:10 -07:00
|
|
|
{
|
2007-11-09 08:46:34 -08:00
|
|
|
return new std::ofstream(filename.c_str(),
|
|
|
|
append ? std::ios::out | std::ios::app
|
|
|
|
: std::ios::out);
|
2007-07-24 18:06:10 -07:00
|
|
|
}
|