1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (C) 1996-2021 The Octave Project Developers
4 //
5 // See the file COPYRIGHT.md in the top-level directory of this
6 // distribution or <https://octave.org/copyright/>.
7 //
8 // This file is part of Octave.
9 //
10 // Octave is free software: you can redistribute it and/or modify it
11 // under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // Octave is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 // GNU General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with Octave; see the file COPYING.  If not, see
22 // <https://www.gnu.org/licenses/>.
23 //
24 ////////////////////////////////////////////////////////////////////////
25 
26 #if defined (HAVE_CONFIG_H)
27 #  include "config.h"
28 #endif
29 
30 #include "glob-match.h"
31 #include "oct-glob.h"
32 #include "glob-wrappers.h"
33 
34 bool
match(const std::string & str) const35 glob_match::match (const std::string& str) const
36 {
37   return octave::sys::fnmatch (m_pat, str, m_fnmatch_flags);
38 }
39 
40 string_vector
glob(void) const41 glob_match::glob (void) const
42 {
43   return octave::sys::glob (m_pat);
44 }
45 
46 int
opts_to_fnmatch_flags(unsigned int xopts) const47 glob_match::opts_to_fnmatch_flags (unsigned int xopts) const
48 {
49   int retval = 0;
50 
51   if (xopts & pathname)
52     retval |= octave_fnm_pathname_wrapper ();
53 
54   if (xopts & noescape)
55     retval |= octave_fnm_noescape_wrapper ();
56 
57   if (xopts & period)
58     retval |= octave_fnm_period_wrapper ();
59 
60   return retval;
61 }
62