1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/**********************************************************************
Audacity: A Digital Audio Editor
FileIO.cpp
Leland Lucius
**********************************************************************/
#include "FileIO.h"
#include <wx/defs.h>
#include <wx/crt.h>
#include <wx/filename.h>
#include <wx/wfstream.h>
#include "wxFileNameWrapper.h"
FileIO::FileIO(const wxFileNameWrapper & name, FileIOMode mode)
: mMode(mode),
mOpen(false)
{
wxString scheme;
auto path = name.GetFullPath();
if (mMode == FileIO::Input) {
mInputStream = std::make_unique<wxFFileInputStream>(path);
if (mInputStream == NULL || !mInputStream->IsOk()) {
wxPrintf(wxT("Couldn't get input stream: %s\n"), path);
return;
}
}
else {
mOutputStream = std::make_unique<wxFFileOutputStream>(path);
if (mOutputStream == NULL || !mOutputStream->IsOk()) {
wxPrintf(wxT("Couldn't get output stream: %s\n"), path);
return;
}
}
mOpen = true;
}
FileIO::~FileIO()
{
Close();
}
bool FileIO::IsOpened()
{
return mOpen;
}
bool FileIO::Close()
{
bool success = true;
if (mOutputStream) {
// mOutputStream->Sync() returns void! Rrr!
success = mOutputStream->GetFile()->Flush() &&
mOutputStream->Close();
mOutputStream.reset();
}
mInputStream.reset();
mOpen = false;
return success;
}
wxInputStream & FileIO::Read(void *buf, size_t size)
{
if (mInputStream == NULL) {
return *mInputStream;
}
return mInputStream->Read(buf, size);
}
wxOutputStream & FileIO::Write(const void *buf, size_t size)
{
if (mOutputStream == NULL) {
return *mOutputStream;
}
return mOutputStream->Write(buf, size);
}
|