Home | History | Annotate | Download | only in libmediaplayerservice
      1 /*
      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 
     22 #include <media/IRemoteDisplayClient.h>
     23 
     24 namespace android {
     25 
     26 RemoteDisplay::RemoteDisplay(
     27         const sp<IRemoteDisplayClient> &client, const char *iface)
     28     : mLooper(new ALooper),
     29       mNetSession(new ANetworkSession),
     30       mSource(new WifiDisplaySource(mNetSession, client)) {
     31     mLooper->setName("wfd_looper");
     32     mLooper->registerHandler(mSource);
     33 
     34     mNetSession->start();
     35     mLooper->start();
     36 
     37     mSource->start(iface);
     38 }
     39 
     40 RemoteDisplay::~RemoteDisplay() {
     41 }
     42 
     43 status_t RemoteDisplay::pause() {
     44     return mSource->pause();
     45 }
     46 
     47 status_t RemoteDisplay::resume() {
     48     return mSource->resume();
     49 }
     50 
     51 status_t RemoteDisplay::dispose() {
     52     mSource->stop();
     53 
     54     mLooper->stop();
     55     mNetSession->stop();
     56 
     57     return OK;
     58 }
     59 
     60 }  // namespace android
     61