summaryrefslogtreecommitdiffstats
path: root/toolkit/modules/secondscreen/PresentationApp.jsm
blob: b7d8e05a876ab56b2787f960b5ab48962f42aef9 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
// -*- indent-tabs-mode: nil; js-indent-level: 2 -*-
/* 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/. */

"use strict";

this.EXPORTED_SYMBOLS = ["PresentationApp"];

const { classes: Cc, interfaces: Ci, utils: Cu } = Components;

Cu.import("resource://gre/modules/Services.jsm");
Cu.import("resource://gre/modules/XPCOMUtils.jsm");

XPCOMUtils.defineLazyGetter(this, "sysInfo", () => {
  return Cc["@mozilla.org/system-info;1"].getService(Ci.nsIPropertyBag2);
});

const DEBUG = false;

const STATE_UNINIT = "uninitialized" // RemoteMedia status
const STATE_STARTED = "started"; // RemoteMedia status
const STATE_PAUSED = "paused"; // RemoteMedia status
const STATE_SHUTDOWN = "shutdown"; // RemoteMedia status

function debug(msg) {
  Services.console.logStringMessage("PresentationApp: " + msg);
}

// PresentationApp is a wrapper for interacting with a Presentation Receiver Device.
function PresentationApp(service, request) {
  this.service = service;
  this.request = request;
}

PresentationApp.prototype = {
  start: function start(callback) {
    this.request.startWithDevice(this.service.uuid)
    .then((session) => {
      this._session = session;
      if (callback) {
        session.addEventListener('connect', () => {
          callback(true);
        });
      }
    }, () => {
      if (callback) {
        callback(false);
      }
    });
  },

  stop: function stop(callback) {
    if (this._session && this._session.state === "connected") {
      this._session.terminate();
    }

    delete this._session;

    if (callback) {
      callback(true);
    }
  },

  remoteMedia: function remoteMedia(callback, listener) {
    if (callback) {
      if (!this._session) {
        callback();
        return;
      }

      callback(new RemoteMedia(this._session, listener));
    }
  }
}

/* RemoteMedia provides a wrapper for using Presentation API to control Firefox TV app.
 * The server implementation must be built into the Firefox TV receiver app.
 * see https://github.com/mozilla-b2g/gaia/tree/master/tv_apps/fling-player
 */
function RemoteMedia(session, listener) {
  this._session = session ;
  this._listener = listener;
  this._status = STATE_UNINIT;

  this._session.addEventListener("message", this);
  this._session.addEventListener("terminate", this);

  if (this._listener && "onRemoteMediaStart" in this._listener) {
    Services.tm.mainThread.dispatch((function() {
      this._listener.onRemoteMediaStart(this);
    }).bind(this), Ci.nsIThread.DISPATCH_NORMAL);
  }
}

RemoteMedia.prototype = {
  _seq: 0,

  handleEvent: function(e) {
    switch (e.type) {
      case "message":
        this._onmessage(e);
        break;
      case "terminate":
        this._onterminate(e);
        break;
    }
  },

  _onmessage: function(e) {
    DEBUG && debug("onmessage: " + e.data);
    if (this.status === STATE_SHUTDOWN) {
      return;
    }

    if (e.data.indexOf("stopped") > -1) {
      if (this.status !== STATE_PAUSED) {
        this._status = STATE_PAUSED;
        if (this._listener && "onRemoteMediaStatus" in this._listener) {
          this._listener.onRemoteMediaStatus(this);
        }
      }
    } else if (e.data.indexOf("playing") > -1) {
      if (this.status !== STATE_STARTED) {
        this._status = STATE_STARTED;
        if (this._listener && "onRemoteMediaStatus" in this._listener) {
          this._listener.onRemoteMediaStatus(this);
        }
      }
    }
  },

  _onterminate: function(e) {
    DEBUG && debug("onterminate: " + this._session.state);
    this._status = STATE_SHUTDOWN;
    if (this._listener && "onRemoteMediaStop" in this._listener) {
      this._listener.onRemoteMediaStop(this);
    }
  },

  _sendCommand: function(command, data) {
    let msg = {
      'type': command,
      'seq': ++this._seq
    };

    if (data) {
      for (var k in data) {
        msg[k] = data[k];
      }
    }

    let raw = JSON.stringify(msg);
    DEBUG && debug("send command: " + raw);

    this._session.send(raw);
  },

  shutdown: function shutdown() {
    DEBUG && debug("RemoteMedia - shutdown");
    this._sendCommand("close");
  },

  play: function play() {
    DEBUG && debug("RemoteMedia - play");
    this._sendCommand("play");
  },

  pause: function pause() {
    DEBUG && debug("RemoteMedia - pause");
    this._sendCommand("pause");
  },

  load: function load(data) {
    DEBUG && debug("RemoteMedia - load: " + data);
    this._sendCommand("load", { "url": data.source });

    let deviceName;
    if (Services.appinfo.widgetToolkit == "android") {
      deviceName = sysInfo.get("device");
    } else {
      deviceName = sysInfo.get("host");
    }
    this._sendCommand("device-info", { "displayName": deviceName });
  },

  get status() {
    return this._status;
  }
}