Bug 452317 - FeedConverter.js: QueryInterface should throw NS_ERROR_NO_INTERFACE...
[wine-gecko.git] / xpcom / base / nsSystemInfo.cpp
blob821370457e7edc04cb37fd741028926cbb5a1330
1 /* -*- Mode: C++; tab-width: 50; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
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/
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.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * mozilla.org
19 * Portions created by the Initial Developer are Copyright (C) 2005
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
23 * Seth Spitzer <sspitzer@mozilla.org> (original author)
25 * Alternatively, the contents of this file may be used under the terms of
26 * either of the GNU General Public License Version 2 or later (the "GPL"),
27 * or 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.
37 * ***** END LICENSE BLOCK ***** */
39 #include "nsSystemInfo.h"
40 #include "prsystem.h"
41 #include "nsString.h"
42 #include "prprf.h"
44 #ifdef MOZ_WIDGET_GTK2
45 #include <gtk/gtk.h>
46 #endif
48 nsSystemInfo::nsSystemInfo()
52 nsSystemInfo::~nsSystemInfo()
56 nsresult
57 nsSystemInfo::Init()
59 nsresult rv = nsHashPropertyBag::Init();
60 NS_ENSURE_SUCCESS(rv, rv);
62 static const struct {
63 PRSysInfo cmd;
64 const char *name;
65 } items[] = {
66 { PR_SI_SYSNAME, "name" },
67 { PR_SI_HOSTNAME, "host" },
68 { PR_SI_ARCHITECTURE, "arch" },
69 { PR_SI_RELEASE, "version" }
72 for (PRUint32 i = 0; i < (sizeof(items) / sizeof(items[0])); i++) {
73 char buf[SYS_INFO_BUFFER_LENGTH];
74 if (PR_GetSystemInfo(items[i].cmd, buf, sizeof(buf)) == PR_SUCCESS) {
75 rv = SetPropertyAsACString(NS_ConvertASCIItoUTF16(items[i].name),
76 nsDependentCString(buf));
77 NS_ENSURE_SUCCESS(rv,rv);
79 else
80 NS_WARNING("PR_GetSystemInfo failed");
83 #ifdef MOZ_WIDGET_GTK2
84 // This must be done here because NSPR can only separate OS's when compiled, not libraries.
85 char* gtkver = PR_smprintf("GTK %u.%u.%u", gtk_major_version, gtk_minor_version, gtk_micro_version);
86 if (gtkver) {
87 rv = SetPropertyAsACString(NS_ConvertASCIItoUTF16("secondaryLibrary"),
88 nsDependentCString(gtkver));
89 PR_smprintf_free(gtkver);
90 NS_ENSURE_SUCCESS(rv, rv);
92 #endif
94 return NS_OK;