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

« back to all changes in this revision

Viewing changes to mozilla/embedding/qa/testembed/MostRecentUrls.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: 4; 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
 *   Rod Spears <rods@netscape.com>   
 
24
 *
 
25
 *
 
26
 * Alternatively, the contents of this file may be used under the terms of
 
27
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 
28
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
29
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
30
 * of those above. If you wish to allow use of your version of this file only
 
31
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
32
 * use your version of this file under the terms of the NPL, indicate your
 
33
 * decision by deleting the provisions above and replace them with the notice
 
34
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
35
 * the provisions above, a recipient may use your version of this file under
 
36
 * the terms of any one of the NPL, the GPL or the LGPL.
 
37
 *
 
38
 * ***** END LICENSE BLOCK ***** */
 
39
 
 
40
//
 
41
// CMostRecentUrls object is responsible for keeping track of the
 
42
// 16 most recently used URLs. It stores this list in a file named
 
43
// "urls.txt" on a per profile basis in the user's profile directory
 
44
//
 
45
// The constructor loads the URL list
 
46
// The destructor saves the URL list
 
47
//
 
48
 
 
49
#include "StdAfx.h"
 
50
#include "nsIFile.h"
 
51
#include "nsILocalFile.h"
 
52
#include "nsAppDirectoryServiceDefs.h"
 
53
#include "MostRecentUrls.h"
 
54
 
 
55
//--------------------------------------------------------
 
56
//-- CMostRecentUrls
 
57
//--------------------------------------------------------
 
58
CMostRecentUrls::CMostRecentUrls() :
 
59
        mNumURLs(0)
 
60
{
 
61
        for (int i=0;i<MAX_URLS;i++) {
 
62
                mURLs[i] = NULL;
 
63
        }
 
64
 
 
65
        FILE * fd = GetFD("r");
 
66
        if (fd) {
 
67
                char line[512];
 
68
                while (fgets(line, 512, fd)) {
 
69
                        if (strlen(line) > 1) {
 
70
                                line[strlen(line)-1] = 0;
 
71
                                mURLs[mNumURLs++] = _strdup(line);
 
72
                        }
 
73
                }
 
74
                fclose(fd);
 
75
        }
 
76
 
 
77
}
 
78
 
 
79
FILE * CMostRecentUrls::GetFD(const char * aMode) 
 
80
{
 
81
    FILE * fd = nsnull;
 
82
    nsCOMPtr<nsIFile> file;
 
83
    nsresult rv = NS_GetSpecialDirectory(NS_APP_USER_PROFILE_50_DIR, getter_AddRefs(file));
 
84
    if (NS_SUCCEEDED(rv)) {
 
85
        nsCOMPtr<nsILocalFile> local_file(do_QueryInterface(file));
 
86
        local_file->AppendNative(NS_LITERAL_CSTRING("urls.txt"));
 
87
        local_file->OpenANSIFileDesc(aMode, &fd);
 
88
    }
 
89
 
 
90
    return fd;
 
91
}
 
92
 
 
93
CMostRecentUrls::~CMostRecentUrls() 
 
94
{
 
95
    FILE * fd = GetFD("w");
 
96
    if (fd) {
 
97
        for (int i=0;i<MAX_URLS;i++) {
 
98
            if(mURLs[i])
 
99
                fprintf(fd, "%s\n", mURLs[i]);
 
100
        }
 
101
    fclose(fd);
 
102
    }
 
103
 
 
104
    for (int i=0;i<MAX_URLS;i++) {
 
105
        if(mURLs[i])
 
106
          free(mURLs[i]);
 
107
    }
 
108
}
 
109
 
 
110
char * CMostRecentUrls::GetURL(int aInx)
 
111
{
 
112
    if (aInx < mNumURLs) {
 
113
        return mURLs[aInx];
 
114
    }
 
115
 
 
116
    return NULL;
 
117
}
 
118
 
 
119
void CMostRecentUrls::AddURL(const char * aURL)
 
120
{
 
121
        TCHAR szTemp[512];
 
122
        strcpy(szTemp, aURL);
 
123
 
 
124
        // check to see if an existing url matches the one passed in
 
125
        for (int i=0; i<MAX_URLS-1; i++)
 
126
        {
 
127
        if(mURLs[i])
 
128
        {
 
129
            if(strcmpi(mURLs[i], szTemp) == 0)
 
130
                break; 
 
131
        }
 
132
        }
 
133
 
 
134
    // if there was a match "i" will point to matching url entry
 
135
    // if not i will be MAX_URLS-1
 
136
 
 
137
    // move all url entries before this one down
 
138
        for (; i>0; i--)
 
139
        {
 
140
        if(mURLs[i])
 
141
          free(mURLs[i]);
 
142
 
 
143
        if(mURLs[i-1])  
 
144
            mURLs[i] = _strdup(mURLs[i-1]);
 
145
        }
 
146
 
 
147
        // place this url at the top
 
148
    if(mURLs[0])
 
149
        free(mURLs[0]);
 
150
    mURLs[0] = _strdup(szTemp);
 
151
}