Files
GoldenCheetah/src/Cloud/LocalFileStore.h
Mark Liversedge d6830f8a15 Cloud Refactor - Add RideFile* to Upload API
.. some services want to look at metadata etc and make decisions
   about how/what to upload before calling the remote service.
2017-03-25 18:03:12 +00:00

63 lines
1.8 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 "CloudService.h"
class LocalFileStore : public CloudService {
Q_OBJECT
public:
LocalFileStore(Context *context);
CloudService *clone(Context *context) { return new LocalFileStore(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, RideFile *ride);
// read a file
bool readFile(QByteArray *data, QString remotename, QString);
// create a folder
bool createFolder(QString path);
// dirent style api
CloudServiceEntry *root() { return root_; }
QList<CloudServiceEntry*> readdir(QString path, QStringList &errors);
private:
Context *context;
CloudServiceEntry *root_;
};
#endif