91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

?如何連接建立后的client和Service通信

發布時間:2022-01-12 18:02:08 來源:億速云 閱讀:238 作者:iii 欄目:互聯網科技

今天小編給大家分享一下如何連接建立后的client和Service通信的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

這里以CameraService::connect()為例進行說明。

@Camera.cpp

sp<Camera> Camera::connect()

{

    LOGV("connect");

    sp<Camera> c = new Camera();

    const sp<ICameraService>& cs = getCameraService();

    if (cs != 0) {

        c->mCamera = cs->connect(c);//這條語句將進入BpCameraService::connect()

    }

    return c;

}

@ICameraService.cpp
virtual sp<ICamera> connect(const sp<ICameraClient>& cameraClient)
    {
        Parcel data, reply;
        data.writeInterfaceToken(ICameraService::getInterfaceDescriptor());
        data.writeStrongBinder(cameraClient->asBinder());
        remote()->transact(BnCameraService::CONNECT, data, &reply);
        return interface_cast<ICamera>(reply.readStrongBinder());
    }
 

這里remote是我們的CameraService映射的一個BpBinder對象

virtual sp<ICamera> ICameraService:: connect()會調用到BpBinder::transact()

à IPCThreadState::self()->transact(),并寫入binder driver中,

Binder driver最終會喚醒media_server進程中的在IPCThreadState::joinThreadPool()中運行的讀線程。

void IPCThreadState::joinThreadPool(bool isMain)  

{   …

     do {  

      … 

           result = talkWithDriver();  

            size_t IN = mIn.dataAvail();  

            if (IN < sizeof(int32_t)) continue;  

            cmd = mIn.readInt32();  

            result = executeCommand(cmd);  

        } while (result != -ECONNREFUSED && result != -EBADF);  

    …

這一次,talkWithDriver()函數會返回BpCameraService:: connect ()生成的數據包,并調用executeCommand()函數執行命令。在本例中,命令為BR_TRANSACTION。

status_t IPCThreadState::executeCommand(int32_t cmd)  

{  

    ......  

    switch(cmd){  

    ......  

    case BR_TRANSACTION:  

        {  

            binder_transaction_data tr;  

            ......  

            Parcel reply;  

            ......  

            if (tr.target.ptr) {  

             sp<BBinder> b((BBinder*)tr.cookie);  

             const status_t error = b->transact(tr.code, buffer, &reply, 0);  

             }

             … 

            if ((tr.flags & TF_ONE_WAY) == 0) {  

                LOG_ONEWAY("Sending reply to %d!", mCallingPid);  

                sendReply(reply, 0);  

            }

            ...  

        }  

        break;  

    ......  

    } // end of switch  

    ...

if(tr.target.ptr)為真的分支部分是最重要的。它從binder內核驅動中獲取到一個地址并轉換為BBinder類型的指針(該指針在執行IServiceManager::addService()函數時放入binder內核驅動)。記住,CameraService繼承自BBinder。該指針實際上與CameraService實例是同一個指針。于是接下來的transact()函數將調用到CaermaService::onTransact(),再調用到BnCameraService::onTransact()虛函數。

@CameraService.cpp

status_t CameraService::onTransact(

    uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)

{

        switch (code) {

        case BnCameraService::CONNECT:

            IPCThreadState* ipc = IPCThreadState::self();

            const int pid = ipc->getCallingPid();

            const int self_pid = getpid();

            if (pid != self_pid) {

                // we're called from a different process, do the real check

                if (!checkCallingPermission(

                        String16("android.permission.CAMERA")))

                {

                    const int uid = ipc->getCallingUid();

                    LOGE("Permission Denial: "

                            "can't use the camera pid=%d, uid=%d", pid, uid);

                    return PERMISSION_DENIED;

                }

            }

            break;

    }

    status_t err = BnCameraService::onTransact(code, data, reply, flags);

    return err;

}

@ICameraService.cpp

status_t BnCameraService::onTransact(
    uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
{
    switch(code) {
        case CONNECT: {
            CHECK_INTERFACE(ICameraService, data, reply);
            sp<ICameraClient> cameraClient = interface_cast<ICameraClient>(data.readStrongBinder());
            sp<ICamera> camera = connect(cameraClient); //真正的處理函數
            reply->writeStrongBinder(camera->asBinder());
            return NO_ERROR;
        } break;
        default:
            return BBinder::onTransact(code, data, reply, flags);
    }
}
至此完成了一次從client到service的函數調用過程。

注意在這個函數中,系統將調用CameraService::connect()

以上就是“如何連接建立后的client和Service通信”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泗阳县| 南川市| 静乐县| 宜昌市| 海城市| 义马市| 新平| 七台河市| 广德县| 伊吾县| 柳河县| 泽库县| 台东县| 中超| 鄂托克旗| 东阿县| 威远县| 山阳县| 敦煌市| 正安县| 潼南县| 通江县| 五指山市| 绥棱县| 龙岩市| 赤峰市| 常熟市| 靖江市| 株洲县| 益阳市| 疏勒县| 永泰县| 彭阳县| 滁州市| 泰兴市| 麻城市| 家居| 阿鲁科尔沁旗| 西乡县| 晋江市| 福泉市|