blob: 5baa3ad4562687ce1ddb539baf280d22c4074488 [file] [log] [blame]
Andreas Huberd7bee3a2012-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 Huber0b73d472012-09-05 10:26:52 -070022#include <media/IRemoteDisplayClient.h>
23
Andreas Huberd7bee3a2012-08-29 11:41:50 -070024namespace android {
25
Andreas Huber0b73d472012-09-05 10:26:52 -070026RemoteDisplay::RemoteDisplay(
27 const sp<IRemoteDisplayClient> &client, const char *iface)
28 : mLooper(new ALooper),
Andreas Huberd7bee3a2012-08-29 11:41:50 -070029 mNetSession(new ANetworkSession),
Andreas Huber0b73d472012-09-05 10:26:52 -070030 mSource(new WifiDisplaySource(mNetSession, client)) {
Andreas Hubere1957352012-09-12 10:19:54 -070031 mLooper->setName("wfd_looper");
Andreas Huberd7bee3a2012-08-29 11:41:50 -070032 mLooper->registerHandler(mSource);
Andreas Huber0b73d472012-09-05 10:26:52 -070033
34 mNetSession->start();
35 mLooper->start();
36
37 mSource->start(iface);
Andreas Huberd7bee3a2012-08-29 11:41:50 -070038}
39
40RemoteDisplay::~RemoteDisplay() {
41}
42
Jeff Brown455d02e2012-09-05 17:48:03 -070043status_t RemoteDisplay::dispose() {
Andreas Huberd7bee3a2012-08-29 11:41:50 -070044 mSource->stop();
45
46 mLooper->stop();
47 mNetSession->stop();
48
49 return OK;
50}
51
52} // namespace android