blob: f55f36698cbbb1ffb11de11f202c50454b1294af (
plain) (
blame)
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
|
/*
* Copyright 2011-2015, Haiku, Inc.
* Distributed under the terms of the MIT License.
*/
#ifndef _PACKAGE__REFRESH_REPOSITORY_REQUEST_H_
#define _PACKAGE__REFRESH_REPOSITORY_REQUEST_H_
#include <Entry.h>
#include <String.h>
#include <package/Context.h>
#include <package/RepositoryConfig.h>
#include <package/Request.h>
namespace BPackageKit {
namespace BPrivate {
class ValidateChecksumJob;
}
using BPrivate::ValidateChecksumJob;
class BRefreshRepositoryRequest : public BRequest {
typedef BRequest inherited;
public:
BRefreshRepositoryRequest(
const BContext& context,
const BRepositoryConfig& repoConfig);
virtual ~BRefreshRepositoryRequest();
virtual status_t CreateInitialJobs();
protected:
// BJobStateListener
virtual void JobSucceeded(BSupportKit::BJob* job);
private:
status_t _FetchRepositoryCache();
BEntry fFetchedChecksumFile;
BRepositoryConfig fRepoConfig;
ValidateChecksumJob* fValidateChecksumJob;
};
} // namespace BPackageKit
#endif // _PACKAGE__REFRESH_REPOSITORY_REQUEST_H_
|