mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
Add/Update docs in pbd/file_utils.h
This commit is contained in:
parent
851db83fc4
commit
6d0cce528e
2 changed files with 40 additions and 13 deletions
|
|
@ -259,10 +259,10 @@ find_paths_matching_filter (vector<string>& result,
|
||||||
const Searchpath& paths,
|
const Searchpath& paths,
|
||||||
bool (*filter)(const string &, void *),
|
bool (*filter)(const string &, void *),
|
||||||
void *arg,
|
void *arg,
|
||||||
bool match_fullpath, bool return_fullpath,
|
bool pass_fullpath, bool return_fullpath,
|
||||||
bool recurse)
|
bool recurse)
|
||||||
{
|
{
|
||||||
run_functor_for_paths (result, paths, filter, arg, false, match_fullpath, return_fullpath, recurse);
|
run_functor_for_paths (result, paths, filter, arg, false, pass_fullpath, return_fullpath, recurse);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
@ -270,10 +270,10 @@ find_files_matching_filter (vector<string>& result,
|
||||||
const Searchpath& paths,
|
const Searchpath& paths,
|
||||||
bool (*filter)(const string &, void *),
|
bool (*filter)(const string &, void *),
|
||||||
void *arg,
|
void *arg,
|
||||||
bool match_fullpath, bool return_fullpath,
|
bool pass_fullpath, bool return_fullpath,
|
||||||
bool recurse)
|
bool recurse)
|
||||||
{
|
{
|
||||||
run_functor_for_paths (result, paths, filter, arg, true, match_fullpath, return_fullpath, recurse);
|
run_functor_for_paths (result, paths, filter, arg, true, pass_fullpath, return_fullpath, recurse);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
|
|
||||||
|
|
@ -93,6 +93,11 @@ find_files_matching_pattern (std::vector<std::string>& result,
|
||||||
* Takes a search path and a file name and places the full path
|
* Takes a search path and a file name and places the full path
|
||||||
* to that file in result if it is found within the search path.
|
* to that file in result if it is found within the search path.
|
||||||
*
|
*
|
||||||
|
* @note the parameter order of this function doesn't match the
|
||||||
|
* others. At the time of writing it is the most widely used file
|
||||||
|
* utility function so I didn't change it but it may be worth
|
||||||
|
* doing at some point if it causes any confusion.
|
||||||
|
*
|
||||||
* @return true If file is found within the search path.
|
* @return true If file is found within the search path.
|
||||||
*/
|
*/
|
||||||
LIBPBD_API bool
|
LIBPBD_API bool
|
||||||
|
|
@ -102,35 +107,57 @@ find_file (const Searchpath& search_path,
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return files in dirpath that match a regular expression
|
* Find files in paths that match a regular expression
|
||||||
|
* @note This function does not recurse.
|
||||||
|
*
|
||||||
|
* @param result A vector in which to place the resulting matches.
|
||||||
|
* @param paths A Searchpath
|
||||||
|
* @param regexp A regular expression
|
||||||
*/
|
*/
|
||||||
LIBPBD_API void
|
LIBPBD_API void
|
||||||
find_files_matching_regex (std::vector<std::string>& results,
|
find_files_matching_regex (std::vector<std::string>& results,
|
||||||
const Searchpath& dirpath,
|
const Searchpath& paths,
|
||||||
const std::string& regexp);
|
const std::string& regexp);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return paths in a Searchpath that match a supplied filter(functor)
|
* Find paths in a Searchpath that match a supplied filter(functor)
|
||||||
* @note results include files and directories
|
* @note results include files and directories.
|
||||||
|
*
|
||||||
|
* @param result A vector in which to place the resulting matches.
|
||||||
|
* @param paths A Searchpath
|
||||||
|
* @param filter A functor to use to filter paths
|
||||||
|
* @param arg additonal argument to filter if required
|
||||||
|
* @param pass_fullpath pass the full path to the filter or just the basename
|
||||||
|
* @param return_fullpath put the full path in results or just the basename
|
||||||
|
* @param recurse Recurse into child directories to find paths.
|
||||||
*/
|
*/
|
||||||
LIBPBD_API void
|
LIBPBD_API void
|
||||||
find_paths_matching_filter (std::vector<std::string>&,
|
find_paths_matching_filter (std::vector<std::string>& results,
|
||||||
const Searchpath& paths,
|
const Searchpath& paths,
|
||||||
bool (*filter)(const std::string &, void *),
|
bool (*filter)(const std::string &, void *),
|
||||||
void *arg,
|
void *arg,
|
||||||
bool match_fullpath,
|
bool pass_fullpath,
|
||||||
bool return_fullpath,
|
bool return_fullpath,
|
||||||
bool recurse = false);
|
bool recurse = false);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return files in a Searchpath that match a supplied filter(functor)
|
* Find paths in a Searchpath that match a supplied filter(functor)
|
||||||
|
* @note results include only files.
|
||||||
|
*
|
||||||
|
* @param result A vector in which to place the resulting matches.
|
||||||
|
* @param paths A Searchpath
|
||||||
|
* @param filter A functor to use to filter paths
|
||||||
|
* @param arg additonal argument to filter if required
|
||||||
|
* @param pass_fullpath pass the full path to the filter or just the basename
|
||||||
|
* @param return_fullpath put the full path in results or just the basename
|
||||||
|
* @param recurse Recurse into child directories to find files.
|
||||||
*/
|
*/
|
||||||
LIBPBD_API void
|
LIBPBD_API void
|
||||||
find_files_matching_filter (std::vector<std::string>&,
|
find_files_matching_filter (std::vector<std::string>& results,
|
||||||
const Searchpath& paths,
|
const Searchpath& paths,
|
||||||
bool (*filter)(const std::string &, void *),
|
bool (*filter)(const std::string &, void *),
|
||||||
void *arg,
|
void *arg,
|
||||||
bool match_fullpath,
|
bool pass_fullpath,
|
||||||
bool return_fullpath,
|
bool return_fullpath,
|
||||||
bool recurse = false);
|
bool recurse = false);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue