mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 16:39:57 +00:00
61 lines
1.7 KiB
C++
61 lines
1.7 KiB
C++
/*
|
|
* Copyright (c) 2015 Joern Rischmueller (joern.rm@gmail.com)
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
* Software Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc., 51
|
|
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef GC_LocalFileStore_h
|
|
#define GC_LocalFileStore_h
|
|
|
|
#include "FileStore.h"
|
|
|
|
class LocalFileStore : public FileStore {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
LocalFileStore(Context *context);
|
|
~LocalFileStore();
|
|
|
|
QString name() { return (tr("Local Store ") + home()); }
|
|
|
|
// open/connect and close/disconnect
|
|
bool open(QStringList &errors);
|
|
bool close();
|
|
|
|
// home directory
|
|
QString home();
|
|
|
|
// write a file
|
|
bool writeFile(QByteArray &data, QString remotename);
|
|
|
|
// read a file
|
|
bool readFile(QByteArray *data, QString remotename);
|
|
|
|
// create a folder
|
|
bool createFolder(QString path);
|
|
|
|
// dirent style api
|
|
FileStoreEntry *root() { return root_; }
|
|
QList<FileStoreEntry*> readdir(QString path, QStringList &errors);
|
|
|
|
private:
|
|
Context *context;
|
|
FileStoreEntry *root_;
|
|
|
|
};
|
|
#endif
|