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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
|
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
#include "recycler.h"
#include <stdexcept>
#include <iterator>
#include <zen/file_handling.h>
#ifdef FFS_WIN
#include <algorithm>
#include <functional>
#include <vector>
#include <zen/dll.h>
#include <zen/win.h> //includes "windows.h"
#include <zen/assert_static.h>
#include <zen/win_ver.h>
#include <zen/long_path_prefix.h>
#include "IFileOperation/file_op.h"
#elif defined FFS_LINUX
#include <zen/scope_guard.h>
#include <sys/stat.h>
#include <gio/gio.h>
#endif
using namespace zen;
#ifdef FFS_WIN
namespace
{
/*
Performance test: delete 1000 files
------------------------------------
SHFileOperation - single file 33s
SHFileOperation - multiple files 2,1s
IFileOperation - single file 33s
IFileOperation - multiple files 2,1s
=> SHFileOperation and IFileOperation have nearly IDENTICAL performance characteristics!
Nevertheless, let's use IFileOperation for better error reporting (including details on locked files)!
*/
const bool useIFileOperation = vistaOrLater(); //caveat: function scope static initialization is not thread-safe in VS 2010!
struct CallbackData
{
CallbackData(CallbackRecycling* cb) :
userCallback(cb),
exceptionInUserCallback(false) {}
CallbackRecycling* const userCallback; //optional!
bool exceptionInUserCallback;
};
bool recyclerCallback(const wchar_t* filename, void* sink)
{
CallbackData& cbd = *static_cast<CallbackData*>(sink); //sink is NOT optional here
if (cbd.userCallback)
try
{
cbd.userCallback->updateStatus(filename); //throw ?
}
catch (...)
{
cbd.exceptionInUserCallback = true; //try again outside the C call stack!
return false;
}
return true;
}
}
void zen::recycleOrDelete(const std::vector<Zstring>& filenames, CallbackRecycling* callback)
{
if (filenames.empty())
return;
//::SetFileAttributes(applyLongPathPrefix(filename).c_str(), FILE_ATTRIBUTE_NORMAL);
//warning: moving long file paths to recycler does not work!
//both ::SHFileOperation() and ::IFileOperation() cannot delete a folder named "System Volume Information" with normal attributes but shamelessly report success
//both ::SHFileOperation() and ::IFileOperation() can't handle \\?\-prefix!
if (useIFileOperation) //new recycle bin usage: available since Vista
{
using namespace fileop;
const DllFun<FunType_moveToRecycleBin> moveToRecycler(getDllName(), funName_moveToRecycleBin);
const DllFun<FunType_getLastError> getLastError (getDllName(), funName_getLastError);
if (!moveToRecycler || !getLastError)
throw FileError(replaceCpy(_("Unable to move %x to the Recycle Bin!"), L"%x", fmtFileName(filenames[0])) + L"\n\n" +
replaceCpy(_("Cannot load file %x."), L"%x", fmtFileName(getDllName())));
std::vector<const wchar_t*> cNames;
for (auto it = filenames.begin(); it != filenames.end(); ++it) //caution to not create temporary strings here!!
cNames.push_back(it->c_str());
CallbackData cbd(callback);
if (!moveToRecycler(&cNames[0], cNames.size(), recyclerCallback, &cbd))
{
if (cbd.exceptionInUserCallback) //now we may throw...
callback->updateStatus(Zstring()); //should throw again!
std::wstring filenameFmt = fmtFileName(filenames[0]); //probably not the correct file name for file lists larger than 1!
if (filenames.size() > 1)
filenameFmt += L", ..."; //give at least some hint that there are multiple files, and the error need not be related to the first one
throw FileError(replaceCpy(_("Unable to move %x to the Recycle Bin!"), L"%x", filenameFmt) +
L"\n\n" + getLastError()); //already includes details about locking errors!
}
}
else //regular recycle bin usage: available since XP
{
Zstring filenamesDoubleNull;
for (auto it = filenames.begin(); it != filenames.end(); ++it)
{
filenamesDoubleNull += *it;
filenamesDoubleNull += L'\0';
}
SHFILEOPSTRUCT fileOp = {};
fileOp.hwnd = nullptr;
fileOp.wFunc = FO_DELETE;
fileOp.pFrom = filenamesDoubleNull.c_str();
fileOp.pTo = nullptr;
fileOp.fFlags = FOF_ALLOWUNDO | FOF_NOCONFIRMATION | FOF_SILENT | FOF_NOERRORUI;
fileOp.fAnyOperationsAborted = false;
fileOp.hNameMappings = nullptr;
fileOp.lpszProgressTitle = nullptr;
//"You should use fully-qualified path names with this function. Using it with relative path names is not thread safe."
if (::SHFileOperation(&fileOp) != 0 || fileOp.fAnyOperationsAborted)
{
throw FileError(replaceCpy(_("Unable to move %x to the Recycle Bin!"), L"%x", fmtFileName(filenames[0]))); //probably not the correct file name for file list larger than 1!
}
}
}
#endif
bool zen::recycleOrDelete(const Zstring& filename) //throw FileError
{
if (!somethingExists(filename))
return false; //neither file nor any other object with that name existing: no error situation, manual deletion relies on it!
#ifdef FFS_WIN
std::vector<Zstring> filenames;
filenames.push_back(filename);
recycleOrDelete(filenames, nullptr); //throw FileError
#elif defined FFS_LINUX
GFile* file = g_file_new_for_path(filename.c_str()); //never fails according to docu
ZEN_ON_SCOPE_EXIT(g_object_unref(file);)
GError* error = nullptr;
ZEN_ON_SCOPE_EXIT(if (error) g_error_free(error););
if (!g_file_trash(file, nullptr, &error))
{
const std::wstring shortMsg = replaceCpy(_("Unable to move %x to the Recycle Bin!"), L"%x", fmtFileName(filename));
if (!error)
throw FileError(shortMsg + L"\n\n" + L"Unknown error.");
//implement same behavior as in Windows: if recycler is not existing, delete permanently
if (error->code == G_IO_ERROR_NOT_SUPPORTED)
{
struct stat fileInfo = {};
if (::lstat(filename.c_str(), &fileInfo) != 0)
return false;
if (S_ISLNK(fileInfo.st_mode) || S_ISREG(fileInfo.st_mode))
removeFile(filename); //throw FileError
else if (S_ISDIR(fileInfo.st_mode))
removeDirectory(filename); //throw FileError
return true;
}
throw FileError(shortMsg + L"\n\n" + L"Glib Error Code " + numberTo<std::wstring>(error->code) + /* L", " +
g_quark_to_string(error->domain) + */ L": " + utfCvrtTo<std::wstring>(error->message));
}
#endif
return true;
}
#ifdef FFS_WIN
StatusRecycler zen::recycleBinStatus(const Zstring& pathName)
{
const DWORD bufferSize = MAX_PATH + 1;
std::vector<wchar_t> buffer(bufferSize);
if (!::GetVolumePathName(pathName.c_str(), //__in LPCTSTR lpszFileName,
&buffer[0], //__out LPTSTR lpszVolumePathName,
bufferSize)) //__in DWORD cchBufferLength
return STATUS_REC_UNKNOWN;
const Zstring rootPathPf = appendSeparator(&buffer[0]);
SHQUERYRBINFO recInfo = {};
recInfo.cbSize = sizeof(recInfo);
HRESULT rv = ::SHQueryRecycleBin(rootPathPf.c_str(), //__in_opt LPCTSTR pszRootPath,
&recInfo); //__inout LPSHQUERYRBINFO pSHQueryRBInfo
return rv == S_OK ? STATUS_REC_EXISTS : STATUS_REC_MISSING;
//1. excessive: traverses whole C:\$Recycle.Bin directory tree each time!!!! But it's safe and correct.
//2. we would prefer to use CLSID_RecycleBinManager beginning with Vista... if only this interface were documented!!!
//3. check directory existence of "C:\$Recycle.Bin, C:\RECYCLER, C:\RECYCLED"
// -> not upward-compatible, wrong result for subst-alias: recycler assumed existing, although it is not!
//4. alternative approach a'la Raymond Chen: http://blogs.msdn.com/b/oldnewthing/archive/2008/09/18/8956382.aspx
//caveat: might not be reliable, e.g. "subst"-alias of volume contains "$Recycle.Bin" although it is not available!
/*
Zstring rootPathPf = appendSeparator(&buffer[0]);
const bool canUseFastCheckForRecycler = winXpOrLater();
if (!canUseFastCheckForRecycler) //== "checkForRecycleBin"
return STATUS_REC_UNKNOWN;
using namespace fileop;
const DllFun<FunType_checkRecycler> checkRecycler(getDllName(), funName_checkRecycler);
if (!checkRecycler)
return STATUS_REC_UNKNOWN; //actually an error since we're >= XP
//search root directories for recycle bin folder...
WIN32_FIND_DATA dataRoot = {};
HANDLE hFindRoot = ::FindFirstFile(applyLongPathPrefix(rootPathPf + L'*').c_str(), &dataRoot);
if (hFindRoot == INVALID_HANDLE_VALUE)
return STATUS_REC_UNKNOWN;
ZEN_ON_SCOPE_EXIT(FindClose(hFindRoot));
auto shouldSkip = [](const Zstring& shortname) { return shortname == L"." || shortname == L".."; };
do
{
if (!shouldSkip(dataRoot.cFileName) &&
(dataRoot.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0 &&
(dataRoot.dwFileAttributes & FILE_ATTRIBUTE_SYSTEM ) != 0 && //risky to rely on these attributes!!!
(dataRoot.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN ) != 0) //
{
WIN32_FIND_DATA dataChild = {};
const Zstring childDirPf = rootPathPf + dataRoot.cFileName + L"\\";
HANDLE hFindChild = ::FindFirstFile(applyLongPathPrefix(childDirPf + L'*').c_str(), &dataChild);
if (hFindChild != INVALID_HANDLE_VALUE) //if we can't access a subdir, it's probably not the recycler
{
ZEN_ON_SCOPE_EXIT(FindClose(hFindChild));
do
{
if (!shouldSkip(dataChild.cFileName) &&
(dataChild.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0)
{
bool isRecycler = false;
if (checkRecycler((childDirPf + dataChild.cFileName).c_str(), isRecycler))
{
if (isRecycler)
return STATUS_REC_EXISTS;
}
else assert(false);
}
}
while (::FindNextFile(hFindChild, &dataChild)); //ignore errors other than ERROR_NO_MORE_FILES
}
}
}
while (::FindNextFile(hFindRoot, &dataRoot)); //
return STATUS_REC_MISSING;
*/
}
#elif defined FFS_LINUX
/*
We really need access to a similar function to check whether a directory supports trashing and emit a warning if it does not!
The following function looks perfect, alas it is restricted to local files and to the implementation of GIO only:
gboolean _g_local_file_has_trash_dir(const char* dirname, dev_t dir_dev);
See: http://www.netmite.com/android/mydroid/2.0/external/bluetooth/glib/gio/glocalfileinfo.h
Just checking for "G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH" is not correct, since we find in
http://www.netmite.com/android/mydroid/2.0/external/bluetooth/glib/gio/glocalfileinfo.c
g_file_info_set_attribute_boolean (info, G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH,
writable && parent_info->has_trash_dir);
=> We're NOT interested in whether the specified folder can be trashed, but whether it supports thrashing its child elements! (Only support, not actual write access!)
This renders G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH useless for this purpose.
*/
#endif
|