mpd/src/fs/Glob.hxx

50 lines
879 B
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
#ifndef MPD_FS_GLOB_XX
#define MPD_FS_GLOB_XX
#include "config.h"
2015-06-22 18:55:49 +02:00
#ifdef HAVE_FNMATCH
#define HAVE_CLASS_GLOB
#include <fnmatch.h>
#elif defined(_WIN32)
#define HAVE_CLASS_GLOB
#endif
#ifdef HAVE_CLASS_GLOB
2021-05-19 17:36:01 +02:00
#include <string>
/**
* A pattern that matches file names. It may contain shell wildcards
* (asterisk and question mark).
*/
class Glob {
2015-06-22 18:55:49 +02:00
std::string pattern;
public:
2015-06-22 18:55:49 +02:00
explicit Glob(const char *_pattern)
:pattern(_pattern) {}
Glob(Glob &&other) noexcept = default;
Glob &operator=(Glob &&other) noexcept = default;
2021-10-13 11:28:04 +02:00
[[gnu::pure]]
bool Check(const char *name_fs) const noexcept;
};
#ifdef HAVE_FNMATCH
inline bool
Glob::Check(const char *name_fs) const noexcept
{
return fnmatch(pattern.c_str(), name_fs, 0) == 0;
}
#endif
#endif /* HAVE_CLASS_GLOB */
#endif