1 | /* $Id: DnDDir.cpp 50460 2014-02-14 09:46:58Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * DnD: Directory handling.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2014 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | /******************************************************************************
|
---|
19 | * Header Files *
|
---|
20 | ******************************************************************************/
|
---|
21 |
|
---|
22 | #include <iprt/assert.h>
|
---|
23 | #include <iprt/dir.h>
|
---|
24 | #include <iprt/path.h>
|
---|
25 | #include <iprt/string.h>
|
---|
26 |
|
---|
27 | #include <VBox/GuestHost/DragAndDrop.h>
|
---|
28 |
|
---|
29 | int DnDDirCreateDroppedFilesEx(const char *pszPath,
|
---|
30 | char *pszDropDir, size_t cbDropDir)
|
---|
31 | {
|
---|
32 | AssertPtrReturn(pszPath, VERR_INVALID_POINTER);
|
---|
33 | AssertPtrReturn(pszDropDir, VERR_INVALID_POINTER);
|
---|
34 | AssertReturn(cbDropDir, VERR_INVALID_PARAMETER);
|
---|
35 |
|
---|
36 | if (RTStrPrintf(pszDropDir, cbDropDir, "%s", pszPath) <= 0)
|
---|
37 | return VERR_NO_MEMORY;
|
---|
38 |
|
---|
39 | /** @todo On Windows we also could use the registry to override
|
---|
40 | * this path, on Posix a dotfile and/or a guest property
|
---|
41 | * can be used. */
|
---|
42 |
|
---|
43 | /* Append our base drop directory. */
|
---|
44 | int rc = RTPathAppend(pszDropDir, cbDropDir, "VirtualBox Dropped Files");
|
---|
45 | if (RT_FAILURE(rc))
|
---|
46 | return rc;
|
---|
47 |
|
---|
48 | /* Create it when necessary. */
|
---|
49 | if (!RTDirExists(pszDropDir))
|
---|
50 | {
|
---|
51 | rc = RTDirCreateFullPath(pszDropDir, RTFS_UNIX_IRWXU);
|
---|
52 | if (RT_FAILURE(rc))
|
---|
53 | return rc;
|
---|
54 | }
|
---|
55 |
|
---|
56 | /* The actually drop directory consist of the current time stamp and a
|
---|
57 | * unique number when necessary. */
|
---|
58 | char pszTime[64];
|
---|
59 | RTTIMESPEC time;
|
---|
60 | if (!RTTimeSpecToString(RTTimeNow(&time), pszTime, sizeof(pszTime)))
|
---|
61 | return VERR_BUFFER_OVERFLOW;
|
---|
62 | rc = DnDPathSanitizeFilename(pszTime, sizeof(pszTime));
|
---|
63 | if (RT_FAILURE(rc))
|
---|
64 | return rc;
|
---|
65 |
|
---|
66 | rc = RTPathAppend(pszDropDir, cbDropDir, pszTime);
|
---|
67 | if (RT_FAILURE(rc))
|
---|
68 | return rc;
|
---|
69 |
|
---|
70 | /* Create it (only accessible by the current user) */
|
---|
71 | return RTDirCreateUniqueNumbered(pszDropDir, cbDropDir, RTFS_UNIX_IRWXU, 3, '-');
|
---|
72 | }
|
---|
73 |
|
---|
74 | int DnDDirCreateDroppedFiles(char *pszDropDir, size_t cbDropDir)
|
---|
75 | {
|
---|
76 | AssertPtrReturn(pszDropDir, VERR_INVALID_POINTER);
|
---|
77 | AssertReturn(cbDropDir, VERR_INVALID_PARAMETER);
|
---|
78 |
|
---|
79 | char szTemp[RTPATH_MAX];
|
---|
80 |
|
---|
81 | /* Get the user's temp directory. Don't use the user's root directory (or
|
---|
82 | * something inside it) because we don't know for how long/if the data will
|
---|
83 | * be kept after the guest OS used it. */
|
---|
84 | int rc = RTPathTemp(szTemp, sizeof(szTemp));
|
---|
85 | if (RT_FAILURE(rc))
|
---|
86 | return rc;
|
---|
87 |
|
---|
88 | return DnDDirCreateDroppedFilesEx(szTemp, pszDropDir, cbDropDir);
|
---|
89 | }
|
---|
90 |
|
---|