File: coreHistory.cpp

package info (click to toggle)
nmapsi4 0.2~beta1-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,356 kB
  • ctags: 300
  • sloc: cpp: 3,770; makefile: 42; sh: 13
file content (78 lines) | stat: -rw-r--r-- 3,486 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/***************************************************************************
 *   Copyright (C) 2008-2010 by Francesco Cecconi                          *
 *   francesco.cecconi@gmail.com                                           *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License.        *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/

#include "loghistory.h"

//
// @Developer: Francesco Cecconi
//
void logHistory::coreItemHistory(const QString url, const QString scanTime)
{
    Q_ASSERT(!url.isEmpty());

    QSettings settings("nmapsi4", "nmapsi4_bookmark");
    QList<QString> urlList;
    QList<QString> urlListTime;

    urlList = historyReadUrl();
    if (!scanTime.isNull())
        urlListTime = historyReadUrlTime();

    if (urlList.contains("NULL") /*&& urlListTime.contains("NULL")*/) {
        urlList.removeFirst();
        urlList.append(url);
        settings.setValue(configTag, QVariant(urlList));
        if (!scanTime.isNull()) {
            urlListTime.removeFirst();
            urlListTime.append(scanTime);
            settings.setValue(configTagTime, QVariant(urlListTime));
        }
    } else {
        if (((urlList.size() == __CACHE_SIZE__) && (__CACHE_SIZE__ != -1)) && (!urlList.contains(url)))  {
            urlList.removeLast();
            urlList.push_front(url);
            settings.setValue(configTag, QVariant(urlList));
            if (!scanTime.isNull()) {
                urlListTime.removeLast();
                urlListTime.push_front(scanTime);
                settings.setValue(configTagTime, QVariant(urlListTime));
            }
        } else {
            if (!urlList.contains(url)) {
                urlList.push_front(url);
                settings.setValue(configTag, QVariant(urlList));
                if (!scanTime.isNull()) {
                    urlListTime.push_front(scanTime);
                    settings.setValue(configTagTime, QVariant(urlListTime));
                }
            } else {
                if (!scanTime.isNull()) {
#ifndef HISTORY_NO_DEBUG
                    qDebug() << "Update date row..";
#endif
                    int index = urlList.indexOf(url);
                    urlListTime[index].clear();
                    urlListTime[index].append(QDateTime::currentDateTime().toString("ddd MMMM d yy - hh:mm:ss.zzz"));
                    settings.setValue(configTagTime, QVariant(urlListTime));
                }
            }
        }
    }
}