summaryrefslogtreecommitdiffstats
path: root/tools/aapt/tests/MockCacheUpdater.h
blob: c7f4bd7359a195f04d8f73eedb91931a41593df7 (plain)
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
//
// Copyright 2011 The Android Open Source Project
//
#ifndef MOCKCACHEUPDATER_H
#define MOCKCACHEUPDATER_H

#include <utils/String8.h>
#include "CacheUpdater.h"

using namespace android;

class MockCacheUpdater : public CacheUpdater {
public:

    MockCacheUpdater()
        : deleteCount(0), processCount(0) { };

    // Make sure all the directories along this path exist
    virtual void ensureDirectoriesExist(String8 path)
    {
        // Nothing to do
    };

    // Delete a file
    virtual void deleteFile(String8 path) {
        deleteCount++;
    };

    // Process an image from source out to dest
    virtual void processImage(String8 source, String8 dest) {
        processCount++;
    };

    // DATA MEMBERS
    int deleteCount;
    int processCount;
private:
};

#endif // MOCKCACHEUPDATER_H