GNU Octave  8.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
glob-match.cc
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (C) 1996-2023 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
35 glob_match::match (const std::string& str) const
36 {
38 }
39 
41 glob_match::glob (void) const
42 {
43  return octave::sys::glob (m_pat);
44 }
45 
46 int
47 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 }
string_vector m_pat
Definition: glob-match.h:91
string_vector glob(void) const
Definition: glob-match.cc:41
int opts_to_fnmatch_flags(unsigned int xopts) const
Definition: glob-match.cc:47
int m_fnmatch_flags
Definition: glob-match.h:94
bool match(const std::string &str) const
Definition: glob-match.cc:35
int octave_fnm_period_wrapper(void)
int octave_fnm_pathname_wrapper(void)
Definition: glob-wrappers.c:98
int octave_fnm_noescape_wrapper(void)
bool fnmatch(const string_vector &pat, const std::string &str, int fnm_flags)
Definition: oct-glob.cc:67
string_vector glob(const string_vector &pat)
Definition: oct-glob.cc:82