summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/main/java/org/mozilla/gecko/media/GeckoPlayerFactory.java
blob: 47278115d3d9f79015e74ce438e3e42216dfc96c (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
/* 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.media;

import android.util.Log;
import androidx.annotation.NonNull;
import java.util.ArrayList;

public final class GeckoPlayerFactory {
  public static final ArrayList<BaseHlsPlayer> sPlayerList = new ArrayList<BaseHlsPlayer>();

  static synchronized BaseHlsPlayer getPlayer() {
    try {
      final Class<?> cls = Class.forName("org.mozilla.gecko.media.GeckoHlsPlayer");
      final BaseHlsPlayer player = (BaseHlsPlayer) cls.newInstance();
      sPlayerList.add(player);
      return player;
    } catch (final Exception e) {
      Log.e("GeckoPlayerFactory", "Class GeckoHlsPlayer not found or failed to create", e);
    }
    return null;
  }

  static synchronized BaseHlsPlayer getPlayer(final int id) {
    for (final BaseHlsPlayer player : sPlayerList) {
      if (player.getId() == id) {
        return player;
      }
    }
    Log.w("GeckoPlayerFactory", "No player found with id : " + id);
    return null;
  }

  static synchronized void removePlayer(final @NonNull BaseHlsPlayer player) {
    final int index = sPlayerList.indexOf(player);
    if (index >= 0) {
      sPlayerList.remove(player);
      Log.d("GeckoPlayerFactory", "HlsPlayer with id(" + player.getId() + ") is removed.");
    }
  }
}