~ubuntu-filemanager-dev/ubuntu-filemanager-app/trunk

« back to all changes in this revision

Viewing changes to src/plugin/folderlistmodel/filecompare.cpp

  • Committer: Bileto Bot
  • Date: 2017-04-04 17:06:41 UTC
  • mfrom: (588.1.19 fix-desktop-file)
  • Revision ID: ci-train-bot@canonical.com-20170404170641-1p15lmx8wodlx2ut
* Rename binary file to ubuntu-filemanager-app
* Join plugin packages into the main package 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**************************************************************************
 
2
 *
 
3
 * Copyright 2013 Canonical Ltd.
 
4
 * Copyright 2013 Carlos J Mazieri <carlos.mazieri@gmail.com>
 
5
 *
 
6
 * You may use this file under the terms of the BSD license as follows:
 
7
 *
 
8
 * "Redistribution and use in source and binary forms, with or without
 
9
 * modification, are permitted provided that the following conditions are
 
10
 * met:
 
11
 *   * Redistributions of source code must retain the above copyright
 
12
 *     notice, this list of conditions and the following disclaimer.
 
13
 *   * Redistributions in binary form must reproduce the above copyright
 
14
 *     notice, this list of conditions and the following disclaimer in
 
15
 *     the documentation and/or other materials provided with the
 
16
 *     distribution.
 
17
 *   * Neither the name of Nemo Mobile nor the names of its contributors
 
18
 *     may be used to endorse or promote products derived from this
 
19
 *     software without specific prior written permission.
 
20
 *
 
21
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
22
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
23
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
24
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
25
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
26
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
27
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
28
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
29
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
30
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
31
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
 
32
 *
 
33
 * File: filecompare.cpp
 
34
 * Date: 6/25/2013
 
35
 */
 
36
 
 
37
#include "filecompare.h"
 
38
#include "diriteminfo.h"
 
39
#include <QString>
 
40
#include <QDateTime>
 
41
#include <QDebug>
 
42
 
 
43
 
 
44
 
 
45
bool fileCompareExists(const DirItemInfo &a, const DirItemInfo &b)
 
46
{
 
47
    if (a.isDir() && !b.isDir())
 
48
        return true;
 
49
 
 
50
    if (b.isDir() && !a.isDir())
 
51
        return false;
 
52
 
 
53
    bool ret = QString::localeAwareCompare(a.absoluteFilePath(), b.absoluteFilePath()) < 0;
 
54
#if DEBUG_MESSAGES
 
55
    qDebug() <<  Q_FUNC_INFO << ret << a.absoluteFilePath() << b.absoluteFilePath();
 
56
#endif
 
57
    return ret;
 
58
}
 
59
 
 
60
 
 
61
bool fileCompareAscending(const DirItemInfo &a, const DirItemInfo &b)
 
62
{
 
63
    if (a.isDir() && !b.isDir())
 
64
        return true;
 
65
 
 
66
    if (b.isDir() && !a.isDir())
 
67
        return false;
 
68
 
 
69
    return QString::localeAwareCompare(a.fileName(), b.fileName()) < 0;
 
70
}
 
71
 
 
72
 
 
73
bool fileCompareDescending(const DirItemInfo &a, const DirItemInfo &b)
 
74
{
 
75
    if (a.isDir() && !b.isDir())
 
76
        return true;
 
77
 
 
78
    if (b.isDir() && !a.isDir())
 
79
        return false;
 
80
 
 
81
    return QString::localeAwareCompare(a.fileName(), b.fileName()) > 0;
 
82
}
 
83
 
 
84
 
 
85
bool dateCompareDescending(const DirItemInfo &a, const DirItemInfo &b)
 
86
{
 
87
    if (a.isDir() && !b.isDir())
 
88
        return true;
 
89
 
 
90
    if (b.isDir() && !a.isDir())
 
91
        return false;
 
92
 
 
93
    return a.lastModified() > b.lastModified();
 
94
}
 
95
 
 
96
 
 
97
bool dateCompareAscending(const DirItemInfo &a, const DirItemInfo &b)
 
98
{
 
99
    if (a.isDir() && !b.isDir())
 
100
        return true;
 
101
 
 
102
    if (b.isDir() && !a.isDir())
 
103
        return false;
 
104
 
 
105
    return a.lastModified() < b.lastModified();
 
106
}
 
107