2 * The freedesktop.org Trash, implemented using the 0.7 spec version
3 * (see http://www.ramendik.ru/docs/trashspec.html)
5 * Copyright (C) 2006 Mikolaj Zalewski
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include <sys/types.h>
40 #include "wine/debug.h"
41 #include "shell32_main.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(trash);
46 static CRITICAL_SECTION TRASH_Creating;
47 static CRITICAL_SECTION_DEBUG TRASH_Creating_Debug =
49 0, 0, &TRASH_Creating,
50 { &TRASH_Creating_Debug.ProcessLocksList,
51 &TRASH_Creating_Debug.ProcessLocksList},
52 0, 0, { (DWORD_PTR)__FILE__ ": TRASH_Creating"}
54 static CRITICAL_SECTION TRASH_Creating = { &TRASH_Creating_Debug, -1, 0, 0, 0, 0 };
56 static const char trashinfo_suffix[] = ".trashinfo";
57 static const char trashinfo_header[] = "[Trash Info]\n";
66 static TRASH_BUCKET *home_trash=NULL;
68 static char *init_home_dir(const char *subpath)
70 char *path = XDG_BuildPath(XDG_DATA_HOME, subpath);
71 if (path == NULL) return NULL;
72 if (!XDG_MakeDirs(path))
74 ERR("Couldn't create directory %s (errno=%d). Trash won't be available\n", debugstr_a(path), errno);
81 static TRASH_BUCKET *TRASH_CreateHomeBucket(void)
84 struct stat trash_stat;
85 char *trash_path = NULL;
87 bucket = SHAlloc(sizeof(TRASH_BUCKET));
93 memset(bucket, 0, sizeof(*bucket));
94 bucket->info_dir = init_home_dir("Trash/info/");
95 if (bucket->info_dir == NULL) goto error;
96 bucket->files_dir = init_home_dir("Trash/files/");
97 if (bucket->files_dir == NULL) goto error;
99 trash_path = XDG_BuildPath(XDG_DATA_HOME, "Trash/");
100 if (stat(trash_path, &trash_stat) == -1)
102 bucket->device = trash_stat.st_dev;
109 SHFree(bucket->info_dir);
110 SHFree(bucket->files_dir);
116 static BOOL TRASH_EnsureInitialized(void)
118 if (home_trash == NULL)
120 EnterCriticalSection(&TRASH_Creating);
121 if (home_trash == NULL)
122 home_trash = TRASH_CreateHomeBucket();
123 LeaveCriticalSection(&TRASH_Creating);
126 if (home_trash == NULL)
128 ERR("Couldn't initialize home trash (errno=%d)\n", errno);
134 static BOOL file_good_for_bucket(TRASH_BUCKET *pBucket, struct stat *file_stat)
136 if (pBucket->device != file_stat->st_dev)
141 BOOL TRASH_CanTrashFile(LPCWSTR wszPath)
143 struct stat file_stat;
146 TRACE("(%s)\n", debugstr_w(wszPath));
147 if (!TRASH_EnsureInitialized()) return FALSE;
148 if (!(unix_path = wine_get_unix_file_name(wszPath)))
150 if (lstat(unix_path, &file_stat)==-1)
152 HeapFree(GetProcessHeap(), 0, unix_path);
155 HeapFree(GetProcessHeap(), 0, unix_path);
156 return file_good_for_bucket(home_trash, &file_stat);
160 * Try to create a single .trashinfo file. Return TRUE if successful, else FALSE
162 static BOOL try_create_trashinfo_file(const char *info_dir, const char *file_name,
163 const char *original_file_name)
166 time_t curr_time_secs;
168 char *path = SHAlloc(strlen(info_dir)+strlen(file_name)+strlen(trashinfo_suffix)+1);
171 if (path==NULL) return FALSE;
172 wsprintfA(path, "%s%s%s", info_dir, file_name, trashinfo_suffix);
173 TRACE("Trying to create '%s'\n", path);
174 writer = open(path, O_CREAT|O_WRONLY|O_TRUNC|O_EXCL, 0600);
175 if (writer==-1) goto error;
177 write(writer, trashinfo_header, strlen(trashinfo_header));
178 if (!XDG_WriteDesktopStringEntry(writer, "Path", XDG_URLENCODE, original_file_name))
181 time(&curr_time_secs);
182 localtime_r(&curr_time_secs, &curr_time);
183 wnsprintfA(datebuf, 200, "%04d-%02d-%02dT%02d:%02d:%02d",
184 curr_time.tm_year+1900,
190 if (!XDG_WriteDesktopStringEntry(writer, "DeletionDate", 0, datebuf))
207 * Try to create a .trashinfo file. This function will make several attempts with
208 * different filenames. It will return the filename that succeded or NULL if a file
209 * couldn't be created.
211 static char *create_trashinfo(const char *info_dir, const char *file_path)
213 const char *base_name;
214 char *filename_buffer;
215 unsigned int seed = (unsigned int)time(NULL);
218 errno = ENOMEM; /* out-of-memory is the only case when errno isn't set */
219 base_name = strrchr(file_path, '/');
220 if (base_name == NULL)
221 base_name = file_path;
225 filename_buffer = SHAlloc(strlen(base_name)+9+1);
226 if (filename_buffer == NULL)
228 lstrcpyA(filename_buffer, base_name);
229 if (try_create_trashinfo_file(info_dir, filename_buffer, file_path))
230 return filename_buffer;
233 sprintf(filename_buffer, "%s-%d", base_name, i+1);
234 if (try_create_trashinfo_file(info_dir, filename_buffer, file_path))
235 return filename_buffer;
238 for (i=0; i<1000; i++)
240 sprintf(filename_buffer, "%s-%08x", base_name, rand_r(&seed));
241 if (try_create_trashinfo_file(info_dir, filename_buffer, file_path))
242 return filename_buffer;
245 WARN("Couldn't create trashinfo after 1031 tries (errno=%d)\n", errno);
246 SHFree(filename_buffer);
250 void remove_trashinfo_file(const char *info_dir, const char *base_name)
252 char *filename_buffer;
254 filename_buffer = SHAlloc(lstrlenA(info_dir)+lstrlenA(base_name)+lstrlenA(trashinfo_suffix)+1);
255 if (filename_buffer == NULL) return;
256 sprintf(filename_buffer, "%s%s%s", info_dir, base_name, trashinfo_suffix);
257 unlink(filename_buffer);
258 SHFree(filename_buffer);
261 static BOOL TRASH_MoveFileToBucket(TRASH_BUCKET *pBucket, const char *unix_path)
263 struct stat file_stat;
264 char *trash_file_name = NULL;
265 char *trash_path = NULL;
268 if (lstat(unix_path, &file_stat)==-1)
270 if (!file_good_for_bucket(pBucket, &file_stat))
273 trash_file_name = create_trashinfo(pBucket->info_dir, unix_path);
274 if (trash_file_name == NULL)
277 trash_path = SHAlloc(strlen(pBucket->files_dir)+strlen(trash_file_name)+1);
278 if (trash_path == NULL) goto error;
279 lstrcpyA(trash_path, pBucket->files_dir);
280 lstrcatA(trash_path, trash_file_name);
282 if (rename(unix_path, trash_path)==0)
284 TRACE("rename succeded\n");
288 /* TODO: try to manually move the file */
289 ERR("Couldn't move file\n");
292 remove_trashinfo_file(pBucket->info_dir, trash_file_name);
294 SHFree(trash_file_name);
299 BOOL TRASH_TrashFile(LPCWSTR wszPath)
304 TRACE("(%s)\n", debugstr_w(wszPath));
305 if (!TRASH_EnsureInitialized()) return FALSE;
306 if (!(unix_path = wine_get_unix_file_name(wszPath)))
308 result = TRASH_MoveFileToBucket(home_trash, unix_path);
309 HeapFree(GetProcessHeap(), 0, unix_path);
314 * The item ID of a trashed element is built as follows:
315 * NUL byte - in most PIDLs the first byte is the type so we keep it constant
316 * WIN32_FIND_DATAW structure - with data about original file attributes
317 * bucket name - currently only an empty string meaning the home bucket is supported
318 * trash file name - a NUL-terminated string
320 struct tagTRASH_ELEMENT
322 TRASH_BUCKET *bucket;
326 static HRESULT TRASH_CreateSimplePIDL(const TRASH_ELEMENT *element, const WIN32_FIND_DATAW *data, LPITEMIDLIST *pidlOut)
328 LPITEMIDLIST pidl = SHAlloc(2+1+sizeof(WIN32_FIND_DATAW)+1+lstrlenA(element->filename)+1+2);
331 return E_OUTOFMEMORY;
332 pidl->mkid.cb = (USHORT)(2+1+sizeof(WIN32_FIND_DATAW)+1+lstrlenA(element->filename)+1);
333 pidl->mkid.abID[0] = 0;
334 memcpy(pidl->mkid.abID+1, data, sizeof(WIN32_FIND_DATAW));
335 pidl->mkid.abID[1+sizeof(WIN32_FIND_DATAW)] = 0;
336 lstrcpyA((LPSTR)(pidl->mkid.abID+1+sizeof(WIN32_FIND_DATAW)+1), element->filename);
337 *(USHORT *)(pidl->mkid.abID+1+sizeof(WIN32_FIND_DATAW)+1+lstrlenA(element->filename)+1) = 0;
342 /***********************************************************************
343 * TRASH_UnpackItemID [Internal]
346 * Extract the information stored in an Item ID. The TRASH_ELEMENT
347 * identifies the element in the Trash. The WIN32_FIND_DATA contains the
348 * information about the original file. The data->ftLastAccessTime contains
352 * [I] id : the ID of the item
353 * [O] element : the trash element this item id contains. Can be NULL if not needed
354 * [O] data : the WIN32_FIND_DATA of the original file. Can be NULL is not needed
356 HRESULT TRASH_UnpackItemID(LPCSHITEMID id, TRASH_ELEMENT *element, WIN32_FIND_DATAW *data)
358 if (id->cb < 2+1+sizeof(WIN32_FIND_DATAW)+2)
360 if (id->abID[0] != 0 || id->abID[1+sizeof(WIN32_FIND_DATAW)] != 0)
362 if (memchr(id->abID+1+sizeof(WIN32_FIND_DATAW)+1, 0, id->cb-(2+1+sizeof(WIN32_FIND_DATAW)+1)) == NULL)
366 *data = *(WIN32_FIND_DATAW *)(id->abID+1);
369 element->bucket = home_trash;
370 element->filename = StrDupA((LPCSTR)(id->abID+1+sizeof(WIN32_FIND_DATAW)+1));
371 if (element->filename == NULL)
372 return E_OUTOFMEMORY;
377 void TRASH_DisposeElement(TRASH_ELEMENT *element)
380 SHFree(element->filename);
383 HRESULT TRASH_GetDetails(const TRASH_ELEMENT *element, WIN32_FIND_DATAW *data)
387 int suffix_length = lstrlenA(trashinfo_suffix);
388 int filename_length = lstrlenA(element->filename);
389 int path_length = lstrlenA(element->bucket->files_dir);
390 static const WCHAR fmt[] = {'T','O','D','O','\\','(','%','h','s',')',0};
392 path = SHAlloc(path_length + filename_length + 1);
393 if (path == NULL) return E_OUTOFMEMORY;
394 lstrcpyA(path, element->bucket->files_dir);
395 lstrcpyA(path+path_length, element->filename);
396 path[path_length + filename_length - suffix_length] = 0; /* remove the '.trashinfo' */
397 if (lstat(path, &stats) == -1)
399 ERR("Error accessing data file for trashinfo %s (errno=%d)\n", element->filename, errno);
403 ZeroMemory(data, sizeof(*data));
404 data->nFileSizeHigh = (DWORD)((LONGLONG)stats.st_size>>32);
405 data->nFileSizeLow = stats.st_size & 0xffffffff;
406 RtlSecondsSince1970ToTime(stats.st_mtime, (LARGE_INTEGER *)&data->ftLastWriteTime);
407 wnsprintfW(data->cFileName, MAX_PATH, fmt, element->filename);
411 INT CALLBACK free_item_callback(void *item, void *lParam)
417 static HDPA enum_bucket_trashinfos(TRASH_BUCKET *bucket, int *count)
419 HDPA ret = DPA_Create(32);
420 struct dirent *entry;
425 if (ret == NULL) goto failed;
426 dir = opendir(bucket->info_dir);
427 if (dir == NULL) goto failed;
428 while ((entry = readdir(dir)) != NULL)
431 int namelen = lstrlenA(entry->d_name);
432 int suffixlen = lstrlenA(trashinfo_suffix);
433 if (namelen <= suffixlen ||
434 lstrcmpA(entry->d_name+namelen-suffixlen, trashinfo_suffix) != 0)
437 filename = StrDupA(entry->d_name);
438 if (filename == NULL)
440 if (DPA_InsertPtr(ret, DPA_APPEND, filename) == -1)
450 if (dir) closedir(dir);
452 DPA_DestroyCallback(ret, free_item_callback, NULL);
456 HRESULT TRASH_EnumItems(LPITEMIDLIST **pidls, int *count)
460 HRESULT err = E_OUTOFMEMORY;
463 if (!TRASH_EnsureInitialized()) return E_FAIL;
464 tinfs = enum_bucket_trashinfos(home_trash, &ti_count);
465 if (tinfs == NULL) return E_FAIL;
466 *pidls = SHAlloc(sizeof(LPITEMIDLIST)*ti_count);
467 if (!*pidls) goto failed;
468 for (i=0; i<ti_count; i++)
470 WIN32_FIND_DATAW data;
473 elem.bucket = home_trash;
474 elem.filename = DPA_GetPtr(tinfs, i);
475 if (FAILED(err = TRASH_GetDetails(&elem, &data)))
479 if (FAILED(err = TRASH_CreateSimplePIDL(&elem, &data, &(*pidls)[pos])))
484 DPA_DestroyCallback(tinfs, free_item_callback, NULL);
490 for (j=0; j<pos; j++)
494 DPA_DestroyCallback(tinfs, free_item_callback, NULL);