Skip to content
Snippets Groups Projects
Commit 80490b61 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

fl: now looking for y08 _and_ yda.

parent 508c18bc
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
using namespace std; using namespace std;
namespace NFileIn { namespace NFileIn {
void Load_08( ifstream& F_in, string flong ); void Load_08( ifstream& F_in, string fnam );
} }
...@@ -41,43 +41,39 @@ namespace NFileIn { ...@@ -41,43 +41,39 @@ namespace NFileIn {
void NFileIn::load(void) void NFileIn::load(void)
{ {
string fnames = sask( "Load file(s)" ); string pattern = sask( "Load file(s)" );
vector<string> vflong = triv::glob_file_list( fnames, "y08" ); vector<string> fNames = triv::glob_file_list( pattern, "yda y08" );
for( int i=0; i<vflong.size(); ++i ) { for( string fnam: fNames ) {
FILE *F_in = fopen(vflong[i].c_str(), "r");
if( !F_in )
throw "cannot open file " + vflong[i];
try{ try{
cout << ".. loading file " << vflong[i] << "\n";
string fdir, fshort, fext; string fdir, fshort, fext;
triv::fname_divide( vflong[i], &fdir, &fshort, &fext); triv::fname_divide( fnam, &fdir, &fshort, &fext);
if ( !(fext=="y08" || fext=="yda") )
if ( fext=="y08" ) { throw "unknown extension " + fext;
ifstream FS (vflong[i].c_str(), ios_base::in); ifstream FS (fnam.c_str(), ios_base::in);
if( FS.fail() ) if( FS.fail() )
throw S("cannot open file"); throw string("cannot open file");
Load_08( FS, vflong[i] ); cout << ".. loading file " << fnam << "\n";
FS.close(); if ( fext=="y08" )
} else Load_08( FS, fshort );
throw "unknown file extension [" + fext + "]"; else if ( fext=="yda" )
fclose( F_in ); cout << "TODO\n";
else
throw "BUG: unforeseen extension " + fext;
FS.close();
} }
catch(string& ex) { catch(string& ex) {
throw "Cannot load " + vflong[i] + ": " + ex; throw "Cannot load " + fnam + ": " + ex;
} }
catch(std::exception& ex) { catch(std::exception& ex) {
throw "Cannot load " + vflong[i] + ": " + ex.what(); throw "Cannot load " + fnam + ": " + ex.what();
} }
} }
} }
//! Load a YAML file in y08 format. //! Load a YAML file in y08 format.
void NFileIn::Load_08(ifstream& FS,string flong) void NFileIn::Load_08(ifstream& FS, string fnam)
{ {
string fdir, fshort, fext;
triv::fname_divide( flong, &fdir, &fshort, &fext);
const YAML::Node doc = YAML::Load(FS); const YAML::Node doc = YAML::Load(FS);
if( doc.Type() != YAML::NodeType::Map ) if( doc.Type() != YAML::NodeType::Map )
throw S("document root is not of MAP type"); throw S("document root is not of MAP type");
...@@ -112,7 +108,7 @@ void NFileIn::Load_08(ifstream& FS,string flong) ...@@ -112,7 +108,7 @@ void NFileIn::Load_08(ifstream& FS,string flong)
fc = POlc( new COlc ); fc = POlc( new COlc );
fout = fc; fout = fc;
} else } else
throw "File "+flong+" has invalid type "+type; throw "Meta section has invalid type "+type;
// read history // read history
if(!doc["History"]) if(!doc["History"])
...@@ -237,7 +233,7 @@ void NFileIn::Load_08(ifstream& FS,string flong) ...@@ -237,7 +233,7 @@ void NFileIn::Load_08(ifstream& FS,string flong)
} }
} }
fout->name = fshort; fout->name = fnam;
fout->as_on_disk = true; fout->as_on_disk = true;
NOlm::mem_store( fout ); NOlm::mem_store( fout );
} }
...@@ -146,26 +146,32 @@ string triv::next_tmp_file( const string& path_format ) ...@@ -146,26 +146,32 @@ string triv::next_tmp_file( const string& path_format )
} }
//! Returns a list of file names obtained by shell-like expansion of pattern with optional extension //! Returns a list of file names obtained by shell-like expansion of patterns.
vector<string> triv::glob_file_list( const string& pattern, const string& extension) //! Pattern is a blank-separated list of subpatterns.
//! Extensions is a blank-separated list of strings to be appended to subpatterns that have
//! no extension.
vector<string> triv::glob_file_list( const string& patterns, const string& extensions)
{ {
string extended_pattern = ""; string extended_patterns = "";
vector<string> words; vector<string> vPattern;
split( pattern, words ); split( patterns, vPattern );
if ( !words.size() ) if ( !vPattern.size() )
throw string( "empty file list" ); throw string( "empty file list" );
for ( size_t i=0; ; ) { vector<string> vExtension;
split( extensions, vExtension );
for ( string pat: vPattern ) {
string fmain, fext; string fmain, fext;
fname_divide( words[i], nullptr, &fmain, &fext ); fname_divide( pat, nullptr, &fmain, &fext );
extended_pattern += words[i]; if ( fext=="" && extensions!="" ) {
if ( fext=="" && extension!="" ) for( string ext: vExtension )
extended_pattern += "." + extension; extended_patterns += pat + "." + ext + " ";
if ( ++i>=words.size() ) } else {
break; extended_patterns += pat + " ";
extended_pattern += " "; }
} }
return triv::wordexp_multi(extended_pattern); return triv::wordexp_multi(extended_patterns);
} }
......
...@@ -16,7 +16,7 @@ namespace triv { ...@@ -16,7 +16,7 @@ namespace triv {
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);
std::vector<std::string> glob_file_list( std::vector<std::string> glob_file_list(
const std::string& pattern, const std::string& extension); const std::string& patterns, const std::string& extensions);
std::string wordexp_unique( const std::string& s ); std::string wordexp_unique( const std::string& s );
std::vector<std::string> wordexp_multi( const std::string& s ); std::vector<std::string> wordexp_multi( 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