FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
rstudio/src/cpp/core/system/Win32FileScanner.cpp at master · pearsonca/rstudio · GitHub
pearsonca
/
rstudio
Public
forked from
rstudio/rstudio
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
rstudio
/
src
/
cpp
/
core
/
system
/
Win32FileScanner.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
148 lines (125 loc) · 4.29 KB
Breadcrumbs
rstudio
/
src
/
cpp
/
core
/
system
/
Win32FileScanner.cpp
Copy path
File metadata and controls
148 lines (125 loc) · 4.29 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/*
* Win32FileScanner.cpp
*
* Copyright (C) 2009-19 by RStudio, PBC
*
* Unless you have received this program directly from RStudio pursuant
* to the terms of a commercial license agreement with RStudio, then
* this program is licensed to you under the terms of version 3 of the
* GNU Affero General Public License. This program is distributed WITHOUT
* ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THOSE OF NON-INFRINGEMENT,
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Please refer to the
* AGPL (http://www.gnu.org/licenses/agpl-3.0.txt) for more details.
*
*/
#
include
<
core/system/FileScanner.hpp
>
#
include
<
boost/system/windows_error.hpp
>
#
include
<
core/BoostThread.hpp
>
#
include
<
core/FileInfo.hpp
>
#
include
<
core/Log.hpp
>
#
include
<
shared_core/Error.hpp
>
#
include
<
shared_core/FilePath.hpp
>
namespace
rstudio
{
namespace
core
{
namespace
system
{
namespace
{
FileInfo
convertToFileInfo
(
const
FilePath& filePath,
bool
yield,
int
*pCount)
{
//
yield every 10 files (defend against pegging the cpu for directories
//
with a huge number of files)
if
(yield)
{
*pCount = *pCount +
1
;
if
(*pCount %
10
==
0
)
boost::this_thread::yield
();
}
if
(filePath.
isDirectory
())
{
return
FileInfo
(filePath.
getAbsolutePath
(),
true
, filePath.
isSymlink
());
}
else
if
(filePath.
exists
())
{
return
FileInfo
(filePath.
getAbsolutePath
(),
false
,
filePath.
getSize
(),
filePath.
getLastWriteTime
(),
filePath.
isSymlink
());
}
else
{
return
FileInfo
(filePath.
getAbsolutePath
(),
false
);
}
}
}
//
anonymous namespace
//
NOTE: we bail with an error if the top level directory can't be
//
enumerated however we merely log errors for children. this reflects
//
the notion that a top-level failure will report major problems
//
(e.g. permission to access a volume/drive) whereas errors which
//
occur in children are more likely to refect some idiosyncratic
//
problem with a child dir or file, and we don't want that to
//
interfere with the caller getting a listing of everything else
//
and proceeding with its work
Error
scanFiles
(
const
tree<FileInfo>::iterator_base& fromNode,
const
core::system::FileScannerOptions& options,
tree<FileInfo>* pTree)
{
//
clear all existing
pTree->
erase_children
(fromNode);
//
create FilePath for root
FilePath
rootPath
(fromNode->
absolutePath
());
//
yield if requested (only applies to recursive scans)
if
(options.
recursive
&& options.
yield
)
boost::this_thread::yield
();
//
call onBeforeScanDir hook
if
(options.
onBeforeScanDir
)
{
Error error = options.
onBeforeScanDir
(*fromNode);
if
(error)
return
error;
}
//
read directory entries
std::vector<FilePath> children;
Error error = rootPath.
getChildren
(children);
if
(error)
return
error;
//
convert to FileInfo and sort using alphasort equivilant (for
//
compatability with scandir, which is what is used in our
//
posix-specific implementation
int
count =
0
;
std::vector<FileInfo> childrenFileInfo;
std::transform
(children.
begin
(),
children.
end
(),
std::back_inserter
(childrenFileInfo),
boost::bind
(convertToFileInfo, _1, options.
yield
, &count));
std::sort
(childrenFileInfo.
begin
(),
childrenFileInfo.
end
(),
fileInfoPathLessThan);
//
iterate over entries
for
(
const
FileInfo& childFileInfo : childrenFileInfo)
{
//
apply filter if we have one
if
(options.
filter
&& !options.
filter
(childFileInfo))
continue
;
//
add the correct type of FileEntry
if
(childFileInfo.
isDirectory
())
{
tree<FileInfo>::iterator_base child =
pTree->
append_child
(fromNode, childFileInfo);
if
(options.
recursive
&& !childFileInfo.
isSymlink
())
{
Error error =
scanFiles
(child, options, pTree);
if
(error && (error != boost::system::windows_error::path_not_found))
LOG_ERROR
(error);
}
}
else
{
pTree->
append_child
(fromNode, childFileInfo);
}
}
//
return success
return
Success
();
}
}
//
namespace system
}
//
namespace core
}
//
namespace rstudio
Back
|
FazBrowse Home
|
New Git URL