~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/netwerk/protocol/about/src/nsAboutBloat.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
 
2
/* ***** BEGIN LICENSE BLOCK *****
 
3
 * Version: NPL 1.1/GPL 2.0/LGPL 2.1
 
4
 *
 
5
 * The contents of this file are subject to the Netscape Public License
 
6
 * Version 1.1 (the "License"); you may not use this file except in
 
7
 * compliance with the License. You may obtain a copy of the License at
 
8
 * http://www.mozilla.org/NPL/
 
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) 1998
 
20
 * the Initial Developer. All Rights Reserved.
 
21
 *
 
22
 * Contributor(s):
 
23
 *
 
24
 * Alternatively, the contents of this file may be used under the terms of
 
25
 * either the GNU General Public License Version 2 or later (the "GPL"), or 
 
26
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
27
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
28
 * of those above. If you wish to allow use of your version of this file only
 
29
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
30
 * use your version of this file under the terms of the NPL, indicate your
 
31
 * decision by deleting the provisions above and replace them with the notice
 
32
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
33
 * the provisions above, a recipient may use your version of this file under
 
34
 * the terms of any one of the NPL, the GPL or the LGPL.
 
35
 *
 
36
 * ***** END LICENSE BLOCK ***** */
 
37
 
 
38
#include "nsAboutBloat.h"
 
39
#include "nsIIOService.h"
 
40
#include "nsIServiceManager.h"
 
41
#include "nsIStringStream.h"
 
42
#include "nsXPIDLString.h"
 
43
#include "nsIURI.h"
 
44
#include "prtime.h"
 
45
#include "nsCOMPtr.h"
 
46
#include "nsIFileStreams.h"
 
47
#include "nsNetUtil.h"
 
48
#include "nsDirectoryServiceDefs.h"
 
49
#include "nsILocalFile.h"
 
50
#include "nsTraceRefcntImpl.h"
 
51
 
 
52
#ifdef XP_MAC
 
53
extern "C" void GC_gcollect(void);
 
54
#else
 
55
static void GC_gcollect() {}
 
56
#endif
 
57
 
 
58
NS_IMPL_ISUPPORTS1(nsAboutBloat, nsIAboutModule)
 
59
 
 
60
NS_IMETHODIMP
 
61
nsAboutBloat::NewChannel(nsIURI *aURI, nsIChannel **result)
 
62
{
 
63
    nsresult rv;
 
64
    nsCAutoString path;
 
65
    rv = aURI->GetPath(path);
 
66
    if (NS_FAILED(rv)) return rv;
 
67
 
 
68
    nsTraceRefcntImpl::StatisticsType statType = nsTraceRefcntImpl::ALL_STATS;
 
69
    PRBool clear = PR_FALSE;
 
70
    PRBool leaks = PR_FALSE;
 
71
 
 
72
    PRInt32 pos = path.Find("?");
 
73
    if (pos > 0) {
 
74
        nsCAutoString param;
 
75
        (void)path.Right(param, path.Length() - (pos+1));
 
76
        if (param.Equals("new"))
 
77
            statType = nsTraceRefcntImpl::NEW_STATS;
 
78
        else if (param.Equals("clear"))
 
79
            clear = PR_TRUE;
 
80
        else if (param.Equals("leaks"))
 
81
            leaks = PR_TRUE;
 
82
    }
 
83
 
 
84
    nsCOMPtr<nsIInputStream> inStr;
 
85
    if (clear) {
 
86
        nsTraceRefcntImpl::ResetStatistics();
 
87
 
 
88
        const char* msg = "Bloat statistics cleared.";
 
89
        rv = NS_NewCStringInputStream(getter_AddRefs(inStr), nsDependentCString(msg));
 
90
        if (NS_FAILED(rv)) return rv;
 
91
    }
 
92
    else if (leaks) {
 
93
        // dump the current set of leaks.
 
94
        GC_gcollect();
 
95
        
 
96
        const char* msg = "Memory leaks dumped.";
 
97
        rv = NS_NewCStringInputStream(getter_AddRefs(inStr), nsDependentCString(msg));
 
98
        if (NS_FAILED(rv)) return rv;
 
99
    }
 
100
    else {
 
101
        nsCOMPtr<nsIFile> file;
 
102
        rv = NS_GetSpecialDirectory(NS_OS_CURRENT_PROCESS_DIR, 
 
103
                                    getter_AddRefs(file));       
 
104
        if (NS_FAILED(rv)) return rv;
 
105
 
 
106
        rv = file->AppendNative(NS_LITERAL_CSTRING("bloatlogs"));
 
107
        if (NS_FAILED(rv)) return rv;
 
108
 
 
109
        PRBool exists;
 
110
        rv = file->Exists(&exists);
 
111
        if (NS_FAILED(rv)) return rv;
 
112
 
 
113
        if (!exists) {
 
114
            // On all the platforms that I know use permissions,
 
115
            // directories need to have the executable flag set
 
116
            // if you want to do anything inside the directory.
 
117
            rv = file->Create(nsIFile::DIRECTORY_TYPE, 0755);
 
118
            if (NS_FAILED(rv)) return rv;
 
119
        }
 
120
 
 
121
        nsCAutoString dumpFileName;
 
122
        if (statType == nsTraceRefcntImpl::ALL_STATS)
 
123
            dumpFileName += "all-";
 
124
        else
 
125
            dumpFileName += "new-";
 
126
        PRExplodedTime expTime;
 
127
        PR_ExplodeTime(PR_Now(), PR_LocalTimeParameters, &expTime);
 
128
        char time[128];
 
129
        PR_FormatTimeUSEnglish(time, 128, "%Y-%m-%d-%H%M%S.txt", &expTime);
 
130
        dumpFileName += time;
 
131
        rv = file->AppendNative(dumpFileName);
 
132
        if (NS_FAILED(rv)) return rv;
 
133
 
 
134
        FILE* out;
 
135
        nsCOMPtr<nsILocalFile> lfile = do_QueryInterface(file);
 
136
        if (lfile == nsnull)
 
137
            return NS_ERROR_FAILURE;
 
138
        rv = lfile->OpenANSIFileDesc("w", &out);
 
139
        if (NS_FAILED(rv)) return rv;
 
140
 
 
141
        rv = nsTraceRefcntImpl::DumpStatistics(statType, out);
 
142
        ::fclose(out);
 
143
        if (NS_FAILED(rv)) return rv;
 
144
 
 
145
        rv = NS_NewLocalFileInputStream(getter_AddRefs(inStr), file);
 
146
        if (NS_FAILED(rv)) return rv;
 
147
    }
 
148
 
 
149
    nsIChannel* channel;
 
150
    rv = NS_NewInputStreamChannel(&channel, aURI, inStr,
 
151
                                  NS_LITERAL_CSTRING("text/plain"),
 
152
                                  EmptyCString());
 
153
    if (NS_FAILED(rv)) return rv;
 
154
 
 
155
    *result = channel;
 
156
    return rv;
 
157
}
 
158
 
 
159
NS_METHOD
 
160
nsAboutBloat::Create(nsISupports *aOuter, REFNSIID aIID, void **aResult)
 
161
{
 
162
    nsAboutBloat* about = new nsAboutBloat();
 
163
    if (about == nsnull)
 
164
        return NS_ERROR_OUT_OF_MEMORY;
 
165
    NS_ADDREF(about);
 
166
    nsresult rv = about->QueryInterface(aIID, aResult);
 
167
    NS_RELEASE(about);
 
168
    return rv;
 
169
}
 
170
 
 
171
////////////////////////////////////////////////////////////////////////////////