Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Frida
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
Frida
Commits
64d460d2
Commit
64d460d2
authored
9 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
corr filename expansion with multiple extensions
parent
31c4b595
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
pub/lib/defs.hpp
+0
-1
0 additions, 1 deletion
pub/lib/defs.hpp
pub/lib/edif.cpp
+1
-1
1 addition, 1 deletion
pub/lib/edif.cpp
pub/lib/toplevel.cpp
+4
-4
4 additions, 4 deletions
pub/lib/toplevel.cpp
pub/trivia/file_ops.cpp
+27
-12
27 additions, 12 deletions
pub/trivia/file_ops.cpp
with
32 additions
and
18 deletions
pub/lib/defs.hpp
+
0
−
1
View file @
64d460d2
...
...
@@ -22,4 +22,3 @@ using std::string;
using
std
::
vector
;
using
std
::
cout
;
using
std
::
cerr
;
using
std
::
endl
;
This diff is collapsed.
Click to expand it.
pub/lib/edif.cpp
+
1
−
1
View file @
64d460d2
...
...
@@ -123,7 +123,7 @@ void NEdif::show_coord()
for
(
int
i
=
0
;
i
<
f
->
nZ
();
i
++
)
{
out
+=
" z"
+
S
(
i
)
+
": "
+
f
->
ZCo
[
i
].
str_compact
();
}
cout
<<
out
<<
endl
;
cout
<<
out
<<
"
\n
"
;
}
}
...
...
This diff is collapsed.
Click to expand it.
pub/lib/toplevel.cpp
+
4
−
4
View file @
64d460d2
...
...
@@ -153,10 +153,10 @@ void CFrida::interactive()
cmdline
=
NMacro
::
readln
(
NOlm
::
sel_str
()
+
" > "
);
execute_cmd
(
cmdline
);
}
catch
(
string
&
ex
)
{
cerr
<<
"'"
<<
cmdline
<<
"' failed: "
<<
ex
<<
endl
;
cerr
<<
"'"
<<
cmdline
<<
"' failed: "
<<
ex
<<
"
\n
"
;
NMacro
::
clear
();
}
catch
(
const
char
*
ex
)
{
cerr
<<
"BUG: '"
<<
cmdline
<<
"' failed with unforeseen message: "
<<
ex
<<
endl
;
cerr
<<
"BUG: '"
<<
cmdline
<<
"' failed with unforeseen message: "
<<
ex
<<
"
\n
"
;
NMacro
::
clear
();
}
catch
(
...
)
{
cerr
<<
"BUG: '"
<<
cmdline
<<
"' failed with unforeseen exception
\n
"
;
...
...
@@ -185,9 +185,9 @@ void CFrida::execute_file( const string fnam )
}
}
}
catch
(
string
&
ex
)
{
cerr
<<
"Error in script "
<<
fnam
<<
", line "
<<
lineno
<<
": "
<<
ex
<<
endl
;
cerr
<<
"Error in script "
<<
fnam
<<
", line "
<<
lineno
<<
": "
<<
ex
<<
"
\n
"
;
}
catch
(
const
char
*
ex
)
{
cerr
<<
"BUG: char* error in script "
<<
fnam
<<
", line "
<<
lineno
<<
": "
<<
ex
<<
endl
;
cerr
<<
"BUG: char* error in script "
<<
fnam
<<
", line "
<<
lineno
<<
": "
<<
ex
<<
"
\n
"
;
}
catch
(
...
)
{
cerr
<<
"BUG: catched invalid exception
\n
"
;
}
...
...
This diff is collapsed.
Click to expand it.
pub/trivia/file_ops.cpp
+
27
−
12
View file @
64d460d2
...
...
@@ -67,17 +67,20 @@ string triv::system_read( string cmd, bool debug )
//! Test whether file exists.
bool
triv
::
file_exists
(
const
string
&
fname
)
bool
triv
::
file_exists
(
const
string
&
path
)
{
struct
stat
fileInfo
;
int
iStat
=
stat
(
fname
.
c_str
(),
&
fileInfo
);
if
(
iStat
==
0
)
// we got attributes, so the file obviously exists
return
true
;
else
return
false
;
// either file doesn't exist or we lack permissions
struct
stat
fileStat
;
if
(
stat
(
path
.
c_str
(),
&
fileStat
)
)
{
return
0
;
}
if
(
!
S_ISREG
(
fileStat
.
st_mode
)
)
{
return
0
;
}
return
1
;
}
//! Analyses a file name: divides "dir/short.ext" into "dir", "short", "ext".
void
triv
::
fname_divide
(
const
string
&
fname
,
string
*
fdir
,
string
*
fshort
,
string
*
fext
)
...
...
@@ -102,8 +105,19 @@ void triv::fname_divide( const string& fname, string *fdir, string *fshort, stri
string
triv
::
wordexp_unique
(
const
string
&
s
)
{
wordexp_t
p
;
if
(
wordexp
(
s
.
c_str
(),
&
p
,
0
)
)
throw
"cannot expand "
+
s
;
int
err
=
wordexp
(
s
.
c_str
(),
&
p
,
0
);
switch
(
err
)
{
case
0
:
break
;
case
WRDE_BADCHAR
:
throw
"illegal character in '"
+
s
+
"'"
;
case
WRDE_BADVAL
:
throw
"undefined shell variable in '"
+
s
+
"'"
;
case
WRDE_SYNTAX
:
throw
"shell syntax error in '"
+
s
+
"'"
;
default:
throw
"completely unexpected error in '"
+
s
+
"'"
;
}
if
(
p
.
we_wordc
!=
1
)
throw
"expansion of "
+
s
+
" not unique"
;
string
ret
=
p
.
we_wordv
[
0
];
...
...
@@ -123,7 +137,8 @@ vector<string> triv::wordexp_multi( const string& s )
throw
"expansion of "
+
s
+
" is empty"
;
vector
<
string
>
ret
;
for
(
size_t
i
=
0
;
i
<
p
.
we_wordc
;
++
i
)
ret
.
push_back
(
p
.
we_wordv
[
i
]
);
if
(
file_exists
(
p
.
we_wordv
[
i
]
)
)
ret
.
push_back
(
p
.
we_wordv
[
i
]
);
wordfree
(
&
p
);
return
ret
;
}
...
...
@@ -164,7 +179,7 @@ vector<string> triv::glob_file_list( const string& patterns, const string& exten
for
(
string
pat
:
vPattern
)
{
string
fmain
,
fext
;
fname_divide
(
pat
,
nullptr
,
&
fmain
,
&
fext
);
if
(
fext
==
""
&&
e
xtension
s
!=
""
)
{
if
(
fext
==
""
&&
vE
xtension
.
size
()
)
{
for
(
string
ext
:
vExtension
)
extended_patterns
+=
pat
+
"."
+
ext
+
" "
;
}
else
{
...
...
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