Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
KWSys
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tom Stellard
KWSys
Commits
3bdb9285
Commit
3bdb9285
authored
19 years ago
by
Andy Cedilnik
Browse files
Options
Downloads
Patches
Plain Diff
COMP: More namespace fixes to build on HP
parent
7201863e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Glob.cxx
+31
-31
31 additions, 31 deletions
Glob.cxx
Glob.hxx.in
+7
-7
7 additions, 7 deletions
Glob.hxx.in
with
38 additions
and
38 deletions
Glob.cxx
+
31
−
31
View file @
3bdb9285
...
...
@@ -52,9 +52,9 @@ namespace KWSYS_NAMESPACE
class
GlobInternals
{
public:
st
d
::
vector
<
st
d
::
string
>
Files
;
st
d
::
vector
<
kwsys
::
RegularExpression
>
Expressions
;
st
d
::
vector
<
st
d
::
string
>
TextExpressions
;
kwsys_
st
l
::
vector
<
kwsys_
st
l
::
string
>
Files
;
kwsys_
st
l
::
vector
<
kwsys
::
RegularExpression
>
Expressions
;
kwsys_
st
l
::
vector
<
kwsys_
st
l
::
string
>
TextExpressions
;
};
//----------------------------------------------------------------------------
...
...
@@ -92,20 +92,20 @@ void Glob::Escape(int ch, char* buffer)
}
//----------------------------------------------------------------------------
st
d
::
vector
<
st
d
::
string
>&
Glob
::
GetFiles
()
kwsys_
st
l
::
vector
<
kwsys_
st
l
::
string
>&
Glob
::
GetFiles
()
{
return
m_Internals
->
Files
;
}
//----------------------------------------------------------------------------
st
d
::
string
Glob
::
ConvertExpression
(
const
st
d
::
string
&
expr
)
kwsys_
st
l
::
string
Glob
::
ConvertExpression
(
const
kwsys_
st
l
::
string
&
expr
)
{
st
d
::
string
::
size_type
i
=
0
;
st
d
::
string
::
size_type
n
=
expr
.
size
();
kwsys_
st
l
::
string
::
size_type
i
=
0
;
kwsys_
st
l
::
string
::
size_type
n
=
expr
.
size
();
st
d
::
string
res
=
"^"
;
st
d
::
string
stuff
=
""
;
kwsys_
st
l
::
string
res
=
"^"
;
kwsys_
st
l
::
string
stuff
=
""
;
while
(
i
<
n
)
{
...
...
@@ -121,7 +121,7 @@ std::string Glob::ConvertExpression(const std::string& expr)
}
else
if
(
c
==
'['
)
{
st
d
::
string
::
size_type
j
=
i
;
kwsys_
st
l
::
string
::
size_type
j
=
i
;
if
(
j
<
n
&&
(
expr
[
j
]
==
'!'
||
expr
[
j
]
==
'^'
)
)
{
j
=
j
+
1
;
...
...
@@ -141,7 +141,7 @@ std::string Glob::ConvertExpression(const std::string& expr)
else
{
stuff
=
""
;
st
d
::
string
::
size_type
cc
;
kwsys_
st
l
::
string
::
size_type
cc
;
for
(
cc
=
i
;
cc
<
j
;
cc
++
)
{
if
(
expr
[
cc
]
==
'\\'
)
...
...
@@ -177,8 +177,8 @@ std::string Glob::ConvertExpression(const std::string& expr)
}
//----------------------------------------------------------------------------
void
Glob
::
RecurseDirectory
(
st
d
::
string
::
size_type
start
,
const
st
d
::
string
&
dir
,
bool
dir_only
)
void
Glob
::
RecurseDirectory
(
kwsys_
st
l
::
string
::
size_type
start
,
const
kwsys_
st
l
::
string
&
dir
,
bool
dir_only
)
{
kwsys
::
Directory
d
;
if
(
!
d
.
Load
(
dir
.
c_str
())
)
...
...
@@ -186,9 +186,9 @@ void Glob::RecurseDirectory(std::string::size_type start,
return
;
}
unsigned
long
cc
;
st
d
::
string
fullname
;
st
d
::
string
realname
;
st
d
::
string
fname
;
kwsys_
st
l
::
string
fullname
;
kwsys_
st
l
::
string
realname
;
kwsys_
st
l
::
string
fname
;
for
(
cc
=
0
;
cc
<
d
.
GetNumberOfFiles
();
cc
++
)
{
fname
=
d
.
GetFile
(
cc
);
...
...
@@ -236,10 +236,10 @@ void Glob::RecurseDirectory(std::string::size_type start,
}
//----------------------------------------------------------------------------
void
Glob
::
ProcessDirectory
(
st
d
::
string
::
size_type
start
,
const
st
d
::
string
&
dir
,
bool
dir_only
)
void
Glob
::
ProcessDirectory
(
kwsys_
st
l
::
string
::
size_type
start
,
const
kwsys_
st
l
::
string
&
dir
,
bool
dir_only
)
{
//
std
::cout << "ProcessDirectory: " << dir <<
std
::endl;
//
kwsys_ios
::cout << "ProcessDirectory: " << dir <<
kwsys_ios
::endl;
bool
last
=
(
start
==
m_Internals
->
Expressions
.
size
()
-
1
);
if
(
last
&&
m_Recurse
)
{
...
...
@@ -252,9 +252,9 @@ void Glob::ProcessDirectory(std::string::size_type start,
return
;
}
unsigned
long
cc
;
st
d
::
string
fullname
;
st
d
::
string
realname
;
st
d
::
string
fname
;
kwsys_
st
l
::
string
fullname
;
kwsys_
st
l
::
string
realname
;
kwsys_
st
l
::
string
fname
;
for
(
cc
=
0
;
cc
<
d
.
GetNumberOfFiles
();
cc
++
)
{
fname
=
d
.
GetFile
(
cc
);
...
...
@@ -287,9 +287,9 @@ void Glob::ProcessDirectory(std::string::size_type start,
fullname
=
dir
+
"/"
+
fname
;
}
//
std
::cout << "Look at file: " << fname <<
std
::endl;
//
std
::cout << "Match: " << m_Internals->TextExpressions[start].c_str() <<
std
::endl;
//
std
::cout << "Full name: " << fullname <<
std
::endl;
//
kwsys_ios
::cout << "Look at file: " << fname <<
kwsys_ios
::endl;
//
kwsys_ios
::cout << "Match: " << m_Internals->TextExpressions[start].c_str() <<
kwsys_ios
::endl;
//
kwsys_ios
::cout << "Full name: " << fullname <<
kwsys_ios
::endl;
if
(
(
!
dir_only
||
!
last
)
&&
!
kwsys
::
SystemTools
::
FileIsDirectory
(
realname
.
c_str
())
)
{
...
...
@@ -311,11 +311,11 @@ void Glob::ProcessDirectory(std::string::size_type start,
}
//----------------------------------------------------------------------------
bool
Glob
::
FindFiles
(
const
st
d
::
string
&
inexpr
)
bool
Glob
::
FindFiles
(
const
kwsys_
st
l
::
string
&
inexpr
)
{
st
d
::
string
cexpr
;
st
d
::
string
::
size_type
cc
;
st
d
::
string
expr
=
inexpr
;
kwsys_
st
l
::
string
cexpr
;
kwsys_
st
l
::
string
::
size_type
cc
;
kwsys_
st
l
::
string
expr
=
inexpr
;
m_Internals
->
Expressions
.
clear
();
m_Internals
->
Files
.
clear
();
...
...
@@ -325,7 +325,7 @@ bool Glob::FindFiles(const std::string& inexpr)
expr
=
kwsys
::
SystemTools
::
GetCurrentWorkingDirectory
();
expr
+=
"/"
+
inexpr
;
}
st
d
::
string
fexpr
=
expr
;
kwsys_
st
l
::
string
fexpr
=
expr
;
int
skip
=
0
;
int
last_slash
=
0
;
...
...
@@ -344,7 +344,7 @@ bool Glob::FindFiles(const std::string& inexpr)
}
if
(
last_slash
>
0
)
{
//
std
::cout << "I can skip: " << fexpr.substr(0, last_slash) <<
std
::endl;
//
kwsys_ios
::cout << "I can skip: " << fexpr.substr(0, last_slash) <<
kwsys_ios
::endl;
skip
=
last_slash
;
}
if
(
skip
==
0
)
...
...
This diff is collapsed.
Click to expand it.
Glob.hxx.in
+
7
−
7
View file @
3bdb9285
...
...
@@ -40,10 +40,10 @@ public:
~Glob();
//! Find all files that match the pattern.
bool FindFiles(const st
d
::string& inexpr);
bool FindFiles(const
kwsys_
st
l
::string& inexpr);
//! Return the list of files that matched.
st
d
::vector<st
d
::string>& GetFiles();
kwsys_
st
l
::vector<
kwsys_
st
l
::string>& GetFiles();
//! Set recurse to true to match subdirectories.
void RecurseOn() { this->SetRecurse(true); }
...
...
@@ -53,13 +53,13 @@ public:
protected:
//! Process directory
void ProcessDirectory(st
d
::string::size_type start,
const st
d
::string& dir, bool dir_only);
void ProcessDirectory(
kwsys_
st
l
::string::size_type start,
const
kwsys_
st
l
::string& dir, bool dir_only);
//! Process last directory, but only when recurse flags is on. That is
// effectively like saying: /path/to/file/**/file
void RecurseDirectory(st
d
::string::size_type start,
const st
d
::string& dir, bool dir_only);
void RecurseDirectory(
kwsys_
st
l
::string::size_type start,
const
kwsys_
st
l
::string& dir, bool dir_only);
//! Escape all non-alphanumeric characters in pattern.
void Escape(int ch, char* buffer);
...
...
@@ -67,7 +67,7 @@ protected:
//!
// Translate a shell PATTERN to a regular expression.
// There is no way to quote meta-characters.
st
d
::string ConvertExpression(const st
d
::string& expr);
kwsys_
st
l
::string ConvertExpression(const
kwsys_
st
l
::string& expr);
//! Add regular expression
void AddExpression(const char* expr);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment