summaryrefslogtreecommitdiff
path: root/src/plugins/qmldesigner/designercore/include/synchronousimagecache.h
blob: db91faa843a013949255a990aef0df15354fd218 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "imagecacheauxiliarydata.h"

#include <utils/smallstring.h>

#include <QIcon>
#include <QImage>

#include <condition_variable>
#include <functional>
#include <mutex>
#include <thread>

namespace QmlDesigner {

class TimeStampProviderInterface;
class ImageCacheStorageInterface;
class ImageCacheGeneratorInterface;
class ImageCacheCollectorInterface;

class SynchronousImageCache
{
public:
    using CaptureImageCallback = std::function<void(const QImage &)>;
    using AbortCallback = std::function<void()>;

    SynchronousImageCache(ImageCacheStorageInterface &storage,
                          TimeStampProviderInterface &timeStampProvider,
                          ImageCacheCollectorInterface &collector)
        : m_storage(storage)
        , m_timeStampProvider(timeStampProvider)
        , m_collector(collector)
    {}

    QImage image(Utils::PathString filePath,
                 Utils::SmallString extraId = {},
                 const ImageCache::AuxiliaryData &auxiliaryData = {});
    QImage smallImage(Utils::PathString filePath,
                      Utils::SmallString extraId = {},
                      const ImageCache::AuxiliaryData &auxiliaryData = {});
    QIcon icon(Utils::PathString filePath,
               Utils::SmallString extraId = {},
               const ImageCache::AuxiliaryData &auxiliaryData = {});

private:
    ImageCacheStorageInterface &m_storage;
    TimeStampProviderInterface &m_timeStampProvider;
    ImageCacheCollectorInterface &m_collector;
};

} // namespace QmlDesigner