summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/main/java/org/mozilla/gecko/process/GeckoServiceGpuProcess.java
blob: e4312c7e67b8341f374003a408c3a42aa4ec4957 (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
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: nil; -*-
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.gecko.process;

import android.os.Binder;
import android.util.SparseArray;
import android.view.Surface;
import org.mozilla.gecko.annotation.WrapForJNI;
import org.mozilla.gecko.gfx.ICompositorSurfaceManager;
import org.mozilla.gecko.gfx.ISurfaceAllocator;
import org.mozilla.gecko.gfx.RemoteSurfaceAllocator;

public class GeckoServiceGpuProcess extends GeckoServiceChildProcess {
  private static final String LOGTAG = "ServiceGpuProcess";

  private static final class GpuProcessBinder extends GeckoServiceChildProcess.ChildProcessBinder {
    @Override
    public ICompositorSurfaceManager getCompositorSurfaceManager() {
      return RemoteCompositorSurfaceManager.getInstance();
    }

    @Override
    public ISurfaceAllocator getSurfaceAllocator(final int allocatorId) {
      return RemoteSurfaceAllocator.getInstance(allocatorId);
    }
  }

  @Override
  protected Binder createBinder() {
    return new GpuProcessBinder();
  }

  public static final class RemoteCompositorSurfaceManager extends ICompositorSurfaceManager.Stub {
    private static RemoteCompositorSurfaceManager mInstance;

    @WrapForJNI
    private static synchronized RemoteCompositorSurfaceManager getInstance() {
      if (mInstance == null) {
        mInstance = new RemoteCompositorSurfaceManager();
      }
      return mInstance;
    }

    private final SparseArray<Surface> mSurfaces = new SparseArray<Surface>();

    @Override
    public synchronized void onSurfaceChanged(final int widgetId, final Surface surface) {
      if (surface != null) {
        mSurfaces.put(widgetId, surface);
      } else {
        mSurfaces.remove(widgetId);
      }
    }

    @WrapForJNI
    public synchronized Surface getCompositorSurface(final int widgetId) {
      return mSurfaces.get(widgetId);
    }
  }
}