OSDN Git Service

import source-tree based svn r84.
[bluegriffon/BlueGriffon.git] / app / nsEditorApp.cpp
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is mozilla.org code.
16  *
17  * The Initial Developer of the Original Code is
18  * Netscape Communications Corporation.
19  * Portions created by the Initial Developer are Copyright (C) 2002
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *  Brian Ryner <bryner@brianryner.com>
24  *
25  * Alternatively, the contents of this file may be used under the terms of
26  * either the GNU General Public License Version 2 or later (the "GPL"), or
27  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28  * in which case the provisions of the GPL or the LGPL are applicable instead
29  * of those above. If you wish to allow use of your version of this file only
30  * under the terms of either the GPL or the LGPL, and not to allow others to
31  * use your version of this file under the terms of the MPL, indicate your
32  * decision by deleting the provisions above and replace them with the notice
33  * and other provisions required by the GPL or the LGPL. If you do not delete
34  * the provisions above, a recipient may use your version of this file under
35  * the terms of any one of the MPL, the GPL or the LGPL.
36  *
37  * ***** END LICENSE BLOCK ***** */
38
39 #include "nsXULAppAPI.h"
40 #ifdef XP_WIN
41 #include <windows.h>
42 #include <stdlib.h>
43 #endif
44
45 #include <stdio.h>
46 #include <stdarg.h>
47
48 #include "nsCOMPtr.h"
49 #include "nsILocalFile.h"
50 #include "nsStringGlue.h"
51
52 #ifdef XP_WIN
53 // we want a wmain entry point
54 #include "nsWindowsWMain.cpp"
55 #endif
56
57 static void Output(const char *fmt, ... )
58 {
59   va_list ap;
60   va_start(ap, fmt);
61
62 #if defined(XP_WIN) && !MOZ_WINCONSOLE
63   PRUnichar msg[2048];
64   _vsnwprintf(msg, sizeof(msg)/sizeof(msg[0]), NS_ConvertUTF8toUTF16(fmt).get(), ap);
65   MessageBoxW(NULL, msg, L"XULRunner", MB_OK | MB_ICONERROR);
66 #else
67   vfprintf(stderr, fmt, ap);
68 #endif
69
70   va_end(ap);
71 }
72
73
74 /**
75  * A helper class which calls NS_LogInit/NS_LogTerm in its scope.
76  */
77 class ScopedLogging
78 {
79 public:
80   ScopedLogging() { NS_LogInit(); }
81   ~ScopedLogging() { NS_LogTerm(); }
82 };
83
84 int main(int argc, char* argv[])
85 {
86   ScopedLogging log;
87
88   nsCOMPtr<nsILocalFile> appini;
89   nsresult rv = XRE_GetBinaryPath(argv[0], getter_AddRefs(appini));
90   if (NS_FAILED(rv)) {
91     Output("Couldn't calculate the application directory.");
92     return 255;
93   }
94   appini->SetNativeLeafName(NS_LITERAL_CSTRING("application.ini"));
95
96   nsXREAppData *appData;
97   rv = XRE_CreateAppData(appini, &appData);
98   if (NS_FAILED(rv)) {
99     Output("Couldn't read application.ini");
100     return 255;
101   }
102
103   int result = XRE_main(argc, argv, appData);
104   XRE_FreeAppData(appData);
105   return result;
106 }