blob: 5542bb5d066d0ee6462a8ae0ff18cfbfb2f54641 [file] [log] [blame]
Andreas Huber35213f12012-08-29 11:41:50 -07001/*
2 * Copyright 2012, The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "RemoteDisplay.h"
18
19#include "ANetworkSession.h"
20#include "source/WifiDisplaySource.h"
21
Andreas Huber28169b12012-09-05 10:26:52 -070022#include <media/IRemoteDisplayClient.h>
23
Andreas Huber35213f12012-08-29 11:41:50 -070024namespace android {
25
Andreas Huber28169b12012-09-05 10:26:52 -070026RemoteDisplay::RemoteDisplay(
27 const sp<IRemoteDisplayClient> &client, const char *iface)
28 : mLooper(new ALooper),
Andreas Huber35213f12012-08-29 11:41:50 -070029 mNetSession(new ANetworkSession),
Andreas Huber28169b12012-09-05 10:26:52 -070030 mSource(new WifiDisplaySource(mNetSession, client)) {
Andreas Huber35213f12012-08-29 11:41:50 -070031 mLooper->registerHandler(mSource);
Andreas Huber28169b12012-09-05 10:26:52 -070032
33 mNetSession->start();
34 mLooper->start();
35
36 mSource->start(iface);
Andreas Huber35213f12012-08-29 11:41:50 -070037}
38
39RemoteDisplay::~RemoteDisplay() {
40}
41
Jeff Brownced24b32012-09-05 17:48:03 -070042status_t RemoteDisplay::dispose() {
Andreas Huber35213f12012-08-29 11:41:50 -070043 mSource->stop();
44
45 mLooper->stop();
46 mNetSession->stop();
47
48 return OK;
49}
50
51} // namespace android