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
Coenen, Joachim
Frida
Commits
4d302725
Commit
4d302725
authored
9 years ago
by
Wuttke, Joachim
Committed by
Wuttke, Joachim
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
nicify, simplify a bit
parent
ed8a2df2
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/file_in.cpp
+1
-2
1 addition, 2 deletions
pub/lib/file_in.cpp
pub/lib/import.cpp
+1
-1
1 addition, 1 deletion
pub/lib/import.cpp
pub/trivia/file_ops.cpp
+27
-26
27 additions, 26 deletions
pub/trivia/file_ops.cpp
pub/trivia/file_ops.hpp
+2
-2
2 additions, 2 deletions
pub/trivia/file_ops.hpp
with
31 additions
and
31 deletions
pub/lib/file_in.cpp
+
1
−
2
View file @
4d302725
...
@@ -42,8 +42,7 @@ namespace NFileIn {
...
@@ -42,8 +42,7 @@ namespace NFileIn {
void
NFileIn
::
load
(
void
)
void
NFileIn
::
load
(
void
)
{
{
string
fnames
=
sask
(
"Load file(s)"
);
string
fnames
=
sask
(
"Load file(s)"
);
vector
<
string
>
vflong
;
// unix names
vector
<
string
>
vflong
=
triv
::
glob_file_list
(
fnames
,
"y08"
);
triv
::
glob_file_list
(
fnames
,
"y08"
,
&
vflong
);
for
(
int
i
=
0
;
i
<
vflong
.
size
();
++
i
)
{
for
(
int
i
=
0
;
i
<
vflong
.
size
();
++
i
)
{
FILE
*
F_in
=
fopen
(
vflong
[
i
].
c_str
(),
"r"
);
FILE
*
F_in
=
fopen
(
vflong
[
i
].
c_str
(),
"r"
);
if
(
!
F_in
)
if
(
!
F_in
)
...
...
This diff is collapsed.
Click to expand it.
pub/lib/import.cpp
+
1
−
1
View file @
4d302725
...
@@ -325,7 +325,7 @@ void NImport::read_tab( string qualif )
...
@@ -325,7 +325,7 @@ void NImport::read_tab( string qualif )
triv
::
system
(
script
);
triv
::
system
(
script
);
}
else
{
}
else
{
string
fnames
=
sask
(
"Read tab from file(s)"
);
string
fnames
=
sask
(
"Read tab from file(s)"
);
triv
::
glob_file_list
(
fnames
,
""
,
&
inFiles
);
inFiles
=
triv
::
glob_file_list
(
fnames
,
""
);
}
}
if
(
choosecol
){
if
(
choosecol
){
...
...
This diff is collapsed.
Click to expand it.
pub/trivia/file_ops.cpp
+
27
−
26
View file @
4d302725
//***************************************************************************
//
//***************************************************************************
***********************
//* libtrivia: various little routines for C++
*//
//* libtrivia: various little routines for C++
//* file_ops: file operations
*//
//* file_ops: file operations
//* (C) Joachim Wuttke 2001, 2012-
*//
//* (C) Joachim Wuttke 2001, 2012-
//* http://apps.jcns.fz-juelich.de
*//
//* http://apps.jcns.fz-juelich.de
//***************************************************************************
//
//***************************************************************************
***********************
#include
<sys/stat.h>
#include
<sys/stat.h>
#include
<wordexp.h>
#include
<wordexp.h>
...
@@ -16,16 +16,19 @@
...
@@ -16,16 +16,19 @@
#include
<boost/format.hpp>
#include
<boost/format.hpp>
using
boost
::
format
;
using
boost
::
format
;
using
namespace
std
;
using
std
::
string
;
using
std
::
vector
;
using
std
::
cout
;
using
std
::
cerr
;
#include
"string_convs.hpp"
#include
"string_convs.hpp"
#include
"string_ops.hpp"
#include
"string_ops.hpp"
#include
"file_ops.hpp"
#include
"file_ops.hpp"
//**************************************************************************
//
//**************************************************************************
************************
//* improved libc calls
*//
//* improved libc calls
//**************************************************************************
//
//**************************************************************************
************************
//! Execute operation system call, and assert return code 0.
//! Execute operation system call, and assert return code 0.
...
@@ -58,10 +61,9 @@ string triv::system_read( string cmd, bool debug )
...
@@ -58,10 +61,9 @@ string triv::system_read( string cmd, bool debug )
}
}
//**************************************************************************//
//**************************************************************************************************
//* file names, globbing *//
//* file names, globbing
//**************************************************************************//
//**************************************************************************************************
//! Test whether file exists.
//! Test whether file exists.
...
@@ -76,12 +78,10 @@ bool triv::file_exists( const string& fname )
...
@@ -76,12 +78,10 @@ bool triv::file_exists( const string& fname )
}
}
//! Analyse file name: divide "dir/short.ext" into "dir", "short", "ext".
//! Analyse
s a
file name: divide
s
"dir/short.ext" into "dir", "short", "ext".
void
triv
::
fname_divide
(
const
string
&
fname
,
void
triv
::
fname_divide
(
const
string
&
fname
,
string
*
fdir
,
string
*
fshort
,
string
*
fext
)
string
*
fdir
,
string
*
fshort
,
string
*
fext
)
// each of the three output arguments, when called with a nullptr, will not be computed
// if some of the three return values are not needed, the user may supply 0
// instead of a pointer to a string.
{
{
size_t
idir
=
fname
.
rfind
(
"/"
)
+
1
;
size_t
idir
=
fname
.
rfind
(
"/"
)
+
1
;
if
(
fdir
)
*
fdir
=
fname
.
substr
(
0
,
idir
);
if
(
fdir
)
*
fdir
=
fname
.
substr
(
0
,
idir
);
...
@@ -122,19 +122,19 @@ string triv::next_tmp_file( const string& path_format )
...
@@ -122,19 +122,19 @@ string triv::next_tmp_file( const string& path_format )
if
(
!
triv
::
file_exists
(
fname
)
)
if
(
!
triv
::
file_exists
(
fname
)
)
return
fname
;
return
fname
;
if
(
i
==
tmpmax
/
2
)
if
(
i
==
tmpmax
/
2
)
cerr
<<
"WARNING: there more than "
<<
i
<<
cerr
<<
"WARNING: there more than "
<<
i
<<
" temporay files of form "
<<
path_format
<<
" temporay files of form "
<<
path_format
<<
"; please clean up soon
\n
"
;
"; please clean up soon
\n
"
;
}
}
throw
"Too many temporary files in use"
;
throw
"Too many temporary files in use"
;
}
}
//!
Expansion of file list.
//!
Returns a list of file names obtained by shell-like expansion of pattern with optional extension
void
triv
::
glob_file_list
(
vector
<
string
>
triv
::
glob_file_list
(
const
string
&
pattern
,
const
string
&
extension
)
const
string
&
pattern
,
const
string
&
extension
,
vector
<
string
>
*
fnames
)
{
{
vector
<
string
>
ret
;
// add extension to input pattern:
// add extension to input pattern:
string
extended_pattern
=
""
;
string
extended_pattern
=
""
;
vector
<
string
>
words
;
vector
<
string
>
words
;
...
@@ -143,7 +143,7 @@ void triv::glob_file_list(
...
@@ -143,7 +143,7 @@ void triv::glob_file_list(
throw
string
(
"empty file list"
);
throw
string
(
"empty file list"
);
for
(
size_t
i
=
0
;
;
)
{
for
(
size_t
i
=
0
;
;
)
{
string
fmain
,
fext
;
string
fmain
,
fext
;
fname_divide
(
words
[
i
],
0
,
&
fmain
,
&
fext
);
fname_divide
(
words
[
i
],
nullptr
,
&
fmain
,
&
fext
);
extended_pattern
+=
words
[
i
];
extended_pattern
+=
words
[
i
];
if
(
fext
==
""
&&
extension
!=
""
)
if
(
fext
==
""
&&
extension
!=
""
)
extended_pattern
+=
"."
+
extension
;
extended_pattern
+=
"."
+
extension
;
...
@@ -158,8 +158,9 @@ void triv::glob_file_list(
...
@@ -158,8 +158,9 @@ void triv::glob_file_list(
if
(
p
.
we_wordc
==
0
)
if
(
p
.
we_wordc
==
0
)
throw
"expansion of "
+
extended_pattern
+
" is empty"
;
throw
"expansion of "
+
extended_pattern
+
" is empty"
;
for
(
size_t
i
=
0
;
i
<
p
.
we_wordc
;
++
i
)
for
(
size_t
i
=
0
;
i
<
p
.
we_wordc
;
++
i
)
fnames
->
push_back
(
p
.
we_wordv
[
i
]
);
ret
.
push_back
(
p
.
we_wordv
[
i
]
);
wordfree
(
&
p
);
wordfree
(
&
p
);
return
ret
;
}
}
...
...
This diff is collapsed.
Click to expand it.
pub/trivia/file_ops.hpp
+
2
−
2
View file @
4d302725
...
@@ -15,8 +15,8 @@ namespace triv {
...
@@ -15,8 +15,8 @@ namespace triv {
bool
file_exists
(
const
std
::
string
&
fname
);
bool
file_exists
(
const
std
::
string
&
fname
);
void
fname_divide
(
const
std
::
string
&
fname
,
std
::
string
*
fdir
,
void
fname_divide
(
const
std
::
string
&
fname
,
std
::
string
*
fdir
,
std
::
string
*
fshort
,
std
::
string
*
fext
);
std
::
string
*
fshort
,
std
::
string
*
fext
);
void
glob_file_list
(
const
std
::
string
&
pattern
,
const
std
::
string
&
extension
,
std
::
vector
<
std
::
string
>
glob_file_list
(
std
::
vector
<
std
::
string
>
*
fnames
);
const
std
::
string
&
pattern
,
const
std
::
string
&
extension
);
std
::
string
wordexp_unique
(
const
std
::
string
&
s
);
std
::
string
wordexp_unique
(
const
std
::
string
&
s
);
std
::
string
next_tmp_file
(
const
std
::
string
&
path_format
);
std
::
string
next_tmp_file
(
const
std
::
string
&
path_format
);
...
...
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