forked from mhaller/qwebdavlib
-
Notifications
You must be signed in to change notification settings - Fork 5
/
qwebdavitem.cpp
213 lines (190 loc) · 5.49 KB
/
qwebdavitem.cpp
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/****************************************************************************
** QWebDAV Library (qwebdavlib) - LGPL v2.1
**
** HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)
** from June 2007
** http://tools.ietf.org/html/rfc4918
**
** Web Distributed Authoring and Versioning (WebDAV) SEARCH
** from November 2008
** http://tools.ietf.org/html/rfc5323
**
** Missing:
** - LOCK support
** - process WebDAV SEARCH responses
**
** Copyright (C) 2012 Martin Haller <[email protected]>
** for QWebDAV library (qwebdavlib) version 1.0
** https://github.com/mhaller/qwebdavlib
**
** Copyright (C) 2012 Timo Zimmermann <[email protected]>
** for portions from QWebdav plugin for MeeDav (LGPL v2.1)
** http://projects.developer.nokia.com/meedav/
**
** Copyright (C) 2009-2010 Corentin Chary <[email protected]>
** for portions from QWebdav - WebDAV lib for Qt4 (LGPL v2.1)
** http://xf.iksaif.net/dev/qwebdav.html
**
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
** for naturalCompare() (LGPL v2.1)
** http://qt.gitorious.org/qt/qt/blobs/4.7/src/gui/dialogs/qfilesystemmodel.cpp
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Library General Public
** License as published by the Free Software Foundation; either
** version 2 of the License, or (at your option) any later version.
**
** This library 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
** Library General Public License for more details.
**
** You should have received a copy of the GNU Library General Public License
** along with this library; see the file COPYING.LIB. If not, write to
** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
** Boston, MA 02110-1301, USA.
**
** http://www.gnu.org/licenses/lgpl-2.1-standalone.html
**
****************************************************************************/
#include "qwebdavitem.h"
#include "qnaturalsort.h"
QWebdavItem::QWebdavItem() :
m_dirOrFile()
,m_path()
,m_name()
,m_ext()
,m_lastModified()
,m_lastModifiedStr()
,m_size(0)
#ifdef QWEBDAVITEM_EXTENDED_PROPERTIES
,m_displayName()
,m_createdAt()
,m_createdAtStr()
,m_contentLanguage()
,m_entityTag()
,m_mimeType()
,m_isExecutable(false)
,m_source()
#endif // QWEBDAVITEM_EXTENDED_PROPERTIES
{
}
QWebdavItem::QWebdavItem(const QString &path, const QString &name,
const QString &ext, bool dirOrFile,
const QDateTime &lastModified, quint64 size) :
m_dirOrFile(dirOrFile)
,m_path(path)
,m_name(name)
,m_ext(ext)
,m_lastModified(lastModified)
,m_lastModifiedStr(lastModified.toString("yyyy-MM-dd hh:mm")) // ISO format
,m_size(size)
#ifdef QWEBDAVITEM_EXTENDED_PROPERTIES
,m_displayName()
,m_createdAt()
,m_createdAtStr()
,m_contentLanguage()
,m_entityTag()
,m_mimeType()
,m_isExecutable(false)
,m_source()
#endif // QWEBDAVITEM_EXTENDED_PROPERTIES
{
}
#ifdef QWEBDAVITEM_EXTENDED_PROPERTIES
QWebdavItem::QWebdavItem(const QString &path, const QString &name,
const QString &ext, bool dirOrFile,
const QDateTime &lastModified, quint64 size,
const QString &displayName, const QDateTime &createdAt,
const QString &contentLanguage, const QString &entityTag,
const QString &mimeType, bool isExecutable,
const QString &source) :
m_dirOrFile(dirOrFile)
,m_path(path)
,m_name(name)
,m_ext(ext)
,m_lastModified(lastModified)
,m_lastModifiedStr(lastModified.toString("yyyy-MM-dd hh:mm")) // ISO format
,m_size(size)
,m_displayName(displayName)
,m_createdAt(createdAt)
,m_createdAtStr(createdAt.toString("yyyy-MM-dd hh:mm")) // ISO format
,m_contentLanguage(contentLanguage)
,m_entityTag(entityTag)
,m_mimeType(mimeType)
,m_isExecutable(isExecutable)
,m_source(source)
{
}
#endif // QWEBDAVITEM_EXTENDED_PROPERTIES
bool QWebdavItem::isDir() const
{
return m_dirOrFile;
}
QString QWebdavItem::path() const
{
return m_path;
}
QString QWebdavItem::name() const
{
return m_name;
}
QString QWebdavItem::ext() const
{
return m_ext;
}
QDateTime QWebdavItem::lastModified() const
{
return m_lastModified;
}
QString QWebdavItem::lastModifiedStr() const
{
return m_lastModifiedStr;
}
quint64 QWebdavItem::size() const
{
return m_size;
}
#ifdef QWEBDAVITEM_EXTENDED_PROPERTIES
QString QWebdavItem::displayName() const
{
return m_displayName;
}
QDateTime QWebdavItem::createdAt() const
{
return m_createdAt;
}
QString QWebdavItem::createdAtStr() const
{
return m_createdAtStr;
}
QString QWebdavItem::contentLanguage() const
{
return m_contentLanguage;
}
QString QWebdavItem::entityTag() const
{
return m_entityTag;
}
QString QWebdavItem::mimeType() const
{
return m_mimeType;
}
bool QWebdavItem::isExecutable() const
{
return m_isExecutable;
}
QString QWebdavItem::source() const
{
return m_source;
}
#endif // QWEBDAVITEM_EXTENDED_PROPERTIES
bool QWebdavItem::operator <(const QWebdavItem &other) const
{
if(m_dirOrFile != other.isDir())
return m_dirOrFile;
// sort with simple QString comparison, e.g. 1 10 2 200 6 600
//return m_name.toLower() < other.name().toLower();
// natural sort e.g. 1 2 6 10 200 600
return QNaturalSort::naturalCompare(m_name.toLower(), other.name().toLower() ) < 0;
}