2011-01-22 01:18:58 +03:00
|
|
|
/*
|
2011-01-24 23:48:03 +03:00
|
|
|
* Copyright 2011, Oliver Tappe <zooey@hirschkaefer.de>
|
2011-01-22 01:18:58 +03:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2011-01-25 20:07:27 +03:00
|
|
|
#ifndef _PACKAGE__PRIVATE__FETCH_FILE_JOB_H_
|
|
|
|
#define _PACKAGE__PRIVATE__FETCH_FILE_JOB_H_
|
2011-01-22 01:18:58 +03:00
|
|
|
|
|
|
|
|
|
|
|
#include <Entry.h>
|
|
|
|
#include <String.h>
|
|
|
|
|
|
|
|
#include <package/Job.h>
|
|
|
|
|
|
|
|
|
2011-01-25 20:07:27 +03:00
|
|
|
namespace BPackageKit {
|
2011-01-22 01:18:58 +03:00
|
|
|
|
2011-01-25 20:07:27 +03:00
|
|
|
namespace BPrivate {
|
2011-01-22 01:18:58 +03:00
|
|
|
|
2011-01-24 23:48:03 +03:00
|
|
|
|
2011-01-25 20:07:27 +03:00
|
|
|
class FetchFileJob : public BJob {
|
2011-01-25 22:36:09 +03:00
|
|
|
typedef BJob inherited;
|
2011-01-22 01:18:58 +03:00
|
|
|
|
|
|
|
public:
|
2011-01-25 20:07:27 +03:00
|
|
|
FetchFileJob(const BContext& context,
|
2011-01-22 22:30:21 +03:00
|
|
|
const BString& title,
|
2011-01-22 01:18:58 +03:00
|
|
|
const BString& fileURL,
|
|
|
|
const BEntry& targetEntry);
|
|
|
|
virtual ~FetchFileJob();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual status_t Execute();
|
|
|
|
virtual void Cleanup(status_t jobResult);
|
|
|
|
|
|
|
|
private:
|
|
|
|
BString fFileURL;
|
|
|
|
BEntry fTargetEntry;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-01-25 20:07:27 +03:00
|
|
|
} // namespace BPrivate
|
2011-01-22 01:18:58 +03:00
|
|
|
|
2011-01-25 20:07:27 +03:00
|
|
|
} // namespace BPackageKit
|
2011-01-22 01:18:58 +03:00
|
|
|
|
|
|
|
|
2011-01-25 20:07:27 +03:00
|
|
|
#endif // _PACKAGE__PRIVATE__FETCH_FILE_JOB_H_
|