lyx_mirror/src/lastfiles.C

101 lines
2.0 KiB
C++
Raw Normal View History

/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1995 Matthias Ettrich
* Copyright 1995-2001 The LyX Team.
*
* ====================================================== */
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "lastfiles.h"
#include "debug.h"
#include "support/FileInfo.h"
#include <fstream>
#include <algorithm>
#include <iterator>
using std::getline;
using std::endl;
LastFiles::LastFiles(string const & filename, bool st, unsigned int num)
: dostat(st)
{
setNumberOfFiles(num);
readFile(filename);
}
void LastFiles::setNumberOfFiles(unsigned int no)
{
if (0 < no && no <= ABSOLUTEMAXLASTFILES)
num_files = no;
else {
lyxerr << "LyX: lastfiles: too many files\n"
"\tdefault (=" << int(DEFAULTFILES)
<< ") used." << endl;
num_files = DEFAULTFILES;
}
}
void LastFiles::readFile(string const & filename)
{
// we will not complain if we can't find filename nor will
// we issue a warning. (Lgb)
std::ifstream ifs(filename.c_str());
string tmp;
FileInfo fileInfo;
while (getline(ifs, tmp) && files.size() < num_files) {
if (dostat) {
if (!(fileInfo.newFile(tmp).exist() &&
fileInfo.isRegular()))
continue;
}
files.push_back(tmp);
}
}
void LastFiles::writeFile(string const & filename) const
{
std::ofstream ofs(filename.c_str());
if (ofs) {
std::copy(files.begin(), files.end(),
std::ostream_iterator<string>(ofs, "\n"));
} else
lyxerr << "LyX: Warning: unable to save LastFiles: "
<< filename << endl;
}
void LastFiles::newFile(string const & file)
{
// If file already exist, delete it and reinsert at front.
Files::iterator it = std::find(files.begin(), files.end(), file);
if (it != files.end())
files.erase(it);
files.push_front(file);
if (files.size() > num_files)
files.pop_back();
}
string const LastFiles::operator[](unsigned int i) const
{
if (i < files.size())
return files[i];
return string();
}