summaryrefslogtreecommitdiff
path: root/platform/android/src/map_renderer.hpp
blob: 51fca48ee6aa92e864640054c5f3b9ec24b713ce (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#pragma once

#include <mbgl/actor/actor_ref.hpp>
#include <mbgl/actor/mailbox.hpp>
#include <mbgl/actor/scheduler.hpp>
#include <mbgl/renderer/renderer.hpp>

#include <memory>
#include <utility>

#include <jni/jni.hpp>

#include "jni/generic_global_ref_deleter.hpp"

namespace mbgl {

class Renderer;
class RendererBackend;
class ThreadPool;
class UpdateParameters;

namespace android {

class AndroidRendererBackend;
class FileSource;

/**
 * The MapRenderer is a peer class that encapsulates the actions
 * performed on the GL Thread.
 *
 * The public methods are safe to call from the main thread, others are not.
 */
class MapRenderer : public Scheduler {
public:

    static constexpr auto Name() { return "com/mapbox/mapboxsdk/maps/renderer/MapRenderer"; };

    static jni::Class<MapRenderer> javaClass;

    static void registerNative(jni::JNIEnv&);

    static MapRenderer& getNativePeer(JNIEnv&, jni::Object<MapRenderer>);

    MapRenderer(jni::JNIEnv& _env,
                jni::Object<MapRenderer>,
                jni::Object<FileSource>,
                jni::jfloat pixelRatio,
                jni::String programCacheDir);

    ~MapRenderer() override;

    // Resets the renderer to clean up on the calling thread
    void reset();

    // Sets the new update parameters to use on subsequent
    // renders. Be sure to trigger a render with
    // requestRender().
    void update(std::shared_ptr<UpdateParameters>);

    // Gives a handle to the Renderer to enable actions on
    // any thread.
    ActorRef<Renderer> actor() const;

    // From Scheduler. Schedules by using callbacks to the
    // JVM to process the mailbox on the right thread.
    void schedule(std::weak_ptr<Mailbox> scheduled) override;

    void requestRender();

private:
    // Called from the GL Thread //

    // Renders a frame.
    void render(JNIEnv&);

    void onSurfaceCreated(JNIEnv&);

    void onSurfaceChanged(JNIEnv&, jint width, jint height);

private:
    GenericUniqueWeakObject<MapRenderer> javaPeer;
    std::shared_ptr<ThreadPool> threadPool;
    std::unique_ptr<AndroidRendererBackend> backend;
    std::unique_ptr<Renderer> renderer;
    std::shared_ptr<Mailbox> mailbox;
    ActorRef<Renderer> rendererRef;

    std::shared_ptr<UpdateParameters> updateParameters;
    std::mutex updateMutex;

    bool framebufferSizeChanged = false;
};

} // namespace android
} // namespace mbgl