Skip to content
Snippets Groups Projects
Commit 4d302725 authored by Wuttke, Joachim's avatar Wuttke, Joachim Committed by Wuttke, Joachim
Browse files

nicify, simplify a bit

parent ed8a2df2
No related branches found
No related tags found
No related merge requests found
...@@ -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 )
......
...@@ -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 ){
......
//***************************************************************************// //**************************************************************************************************
//* 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". //! Analyses a file name: divides "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;
} }
......
...@@ -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 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment