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
|
/*---------------------------------------------------------------------\
| ____ _ __ __ ___ |
| |__ / \ / / . \ . \ |
| / / \ V /| _/ _/ |
| / /__ | | | | | | |
| /_____||_| |_| |_| |
| |
\---------------------------------------------------------------------*/
/** \file zypp/Glob.cc
*
*/
#include <iostream>
#include "zypp/base/LogTools.h"
#include "zypp/Glob.h"
using std::endl;
///////////////////////////////////////////////////////////////////
namespace zypp
{ /////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
namespace filesystem
{ /////////////////////////////////////////////////////////////////
int Glob::add( const char * pattern_r, Flags flags_r )
{
static Flags _APPEND( GLOB_APPEND ); // not published
if ( ! flags_r )
flags_r = _defaultFlags;
if ( _result )
flags_r |= _APPEND;
else
_result.reset( new ::glob_t );
return( _lastGlobReturn = ::glob( pattern_r, flags_r, NULL, &(*_result) ) );
}
void Glob::clear()
{
if ( _result )
{
::globfree( &(*_result) );
_result.reset();
_lastGlobReturn = 0;
}
}
/******************************************************************
**
** FUNCTION NAME : operator<<
** FUNCTION TYPE : std::ostream &
*/
std::ostream & operator<<( std::ostream & str, const Glob & obj )
{
return dumpRange( str << "(" << obj.size() << ")", obj.begin(), obj.end() );
}
/////////////////////////////////////////////////////////////////
} // namespace filesystem
///////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
} // namespace zypp
///////////////////////////////////////////////////////////////////
|