वाहन से जुड़ी जानकारी दिखाने वाली प्रॉक्सी सेवा

इस आसान फ़्रेमवर्क सेवा की मदद से, वेंडर प्रोसेस, HAL लागू करने के लिए SurfaceFlinger/EGL का इस्तेमाल कर सकती हैं. इसके लिए, उन्हें libgui को लिंक करने की ज़रूरत नहीं होती. AOSP, इस सेवा को डिफ़ॉल्ट रूप से लागू करता है. यह पूरी तरह से काम करती है. हालांकि, वेंडर को अपने प्लैटफ़ॉर्म पर यह सेवा देने के लिए, एपीआई भी लागू करने होंगे.

package android.frameworks.automotive.display@1.0;

import android.hardware.graphics.bufferqueue@2.0::IGraphicBufferProducer;

interface IAutomotiveDisplayProxyService {
    /**
     * Gets an IGraphicBufferProducer instance from the service.
     *
     * @param  id   Target's stable display identifier
     *
     * @return igbp Returns an IGraphicBufferProducer object, that can be
     *              converted to an ANativeWindow object.
     */
    getIGraphicBufferProducer(uint64_t id) generates (IGraphicBufferProducer igbp);

    /**
     * Sets the ANativeWindow, which is associated with the
     * IGraphicBufferProducer, to be visible and to take over the display.
     *
     * @param  id      Target display ID
     *
     * @return success Returns true on success.
     */
    showWindow(uint64_t id) generates (bool success);

    /**
     * Sets the ANativeWindow, which is associated with the
     * IGraphicBufferProducer, to be invisible and to release the control
     * over display.
     *
     * @param  id      Target display ID
     *
     * @return success Returns true on success.
     */
    hideWindow(uint64_t id) generates (bool success);

    /**
     * Returns the stable identifiers of all available displays.
     *
     * @return ids A list of stable display identifiers.
     */
    getDisplayIdList() generates (vec<uint64_t> ids);

    /**
     * Returns the descriptor of the target display.
     *
     * @param  id    Stable ID of a target display.
     * @return cfg   DisplayConfig of the active display.
     * @return state Current state of the active display.
     */
    getDisplayInfo(uint64_t id) generates (HwDisplayConfig cfg, HwDisplayState state);
}

इस सेवा का इस्तेमाल करने के लिए:

  1. IAutomotiveDisplayProxyService पाएं.
    android::sp<IAutomotiveDisplayProxyService> windowProxyService =
        IAutomotiveDisplayProxyService::getService("default");
    if (windowProxyService == nullptr) {
        LOG(ERROR) << "Cannot use AutomotiveDisplayProxyService. Exiting.";
        return 1;
    }
  2. समस्या हल करने के लिए, सेवा से चालू डिसप्ले की जानकारी पाएं.
    // We use the first display in the list as the primary.
    pWindowProxy->getDisplayInfo(displayId, [this](auto dpyConfig, auto dpyState) {
        DisplayConfig *pConfig = (DisplayConfig*)dpyConfig.data();
        mWidth = pConfig->resolution.getWidth();
        mHeight = pConfig->resolution.getHeight();
    
        ui::DisplayState* pState = (ui::DisplayState*)dpyState.data();
        if (pState->orientation != ui::ROTATION_0 &&
            pState->orientation != ui::ROTATION_180) {
            // rotate
            std::swap(mWidth, mHeight);
        }
    
        LOG(DEBUG) << "Display resolution is " << mWidth << " x " << mHeight;
    });
  3. IAutomotiveDisplayProxyService से हार्डवेयर IGraphicBufferProducer (या, HIDL GraphicBufferProducer (HGBP) को वापस पाएं:
    mGfxBufferProducer = pWindowProxy->getIGraphicBufferProducer(displayId);
    if (mGfxBufferProducer == nullptr) {
        LOG(ERROR) << "Failed to get IGraphicBufferProducer from "
                   << "IAutomotiveDisplayProxyService.";
        return false;
    }
  4. एपीआई का इस्तेमाल करके, वापस पाए गए एचजीबीपी से SurfaceHolder पाएंlibbufferqueueconverter:
    mSurfaceHolder = getSurfaceFromHGBP(mGfxBufferProducer);
    if (mSurfaceHolder == nullptr) {
        LOG(ERROR) << "Failed to get a Surface from HGBP.";
        return false;
    }
  5. SurfaceHolder को नेटिव विंडो में बदलने के लिए, API libbufferqueueconverter का इस्तेमाल करें:
    mWindow = getNativeWindow(mSurfaceHolder.get());
    if (mWindow == nullptr) {
        LOG(ERROR) << "Failed to get a native window from Surface.";
        return false;
    }
  6. नेटिव विंडो की मदद से EGL विंडो का सरफ़ेस बनाएं और फिर रेंडर करें:
    // Set up our OpenGL ES context associated with the default display
    mDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
    if (mDisplay == EGL_NO_DISPLAY) {
        LOG(ERROR) << "Failed to get egl display";
        return false;
    }
    ...
    
    // Create the EGL render target surface
    mSurface = eglCreateWindowSurface(mDisplay, egl_config, mWindow, nullptr);
    if (mSurface == EGL_NO_SURFACE) {
        LOG(ERROR) << "eglCreateWindowSurface failed.";
        return false;
    }
    ...
  7. रेंडर किए गए व्यू को स्क्रीन पर दिखाने के लिए, IAutomotiveDisplayProxyService::showWindow() को कॉल करें. इस सेवा को सबसे ज़्यादा प्राथमिकता दी जाती है. इसलिए, यह हमेशा स्क्रीन का कंट्रोल, मौजूदा मालिक से ले लेती है:
    mAutomotiveDisplayProxyService->showWindow();

लागू करने के बारे में ज़्यादा जानकारी के लिए, $ANDROID_BUILD_TOP/packages/services/Car/evs/sampleDriver/ में service.cpp और GlWrapper.cpp देखें.

EVS HAL लागू करने के लिए, यहां बोल्ड में दिखाई गई अतिरिक्त लाइब्रेरी की ज़रूरत होती है.

cc_binary {
    name: "android.hardware.automotive.evs@1.1-sample",

    vendor: true,

    srcs: [
        ...
    ],

    shared_libs: [
        ...
        "libbufferqueueconverter",
        "android.hidl.token@1.0-utils",
        "android.frameworks.automotive.display@1.0",
        "android.hardware.graphics.bufferqueue@1.0",
        "android.hardware.graphics.bufferqueue@2.0",
    ],

मल्टी-डिसप्ले की सुविधा

डिसप्ले डिवाइस की जानकारी दिखाना और डिसप्ले की जानकारी हासिल करना

कैमरा डिवाइस की गिनती करने की तरह ही, ईवीएस फ़्रेमवर्क उपलब्ध डिसप्ले की गिनती करने का तरीका भी उपलब्ध कराता है. स्टैटिक डिसप्ले आइडेंटिफ़ायर, टाइप-लॉन्ग आइडेंटिफ़ायर को कोड में बदलता है. यह डिसप्ले पोर्ट की जानकारी को निचले बाइट में और Extended Display IDentification Data को ऊपरी बिट में कोड में बदलता है. IAutomotiveDisplayProxyService::getDisplayIdList(), फ़िज़िकल लोकल डिसप्ले के उन डिसप्ले आईडी की सूची दिखाता है जो EVS सेवा के लिए उपलब्ध हैं. साथ ही, IEvsEnumerator::getDisplayIdList() उन डिसप्ले पोर्ट की सूची दिखाता है जिनसे डिसप्ले कनेक्ट हैं. सूची में पहला आईडी हमेशा प्राइमरी डिसप्ले का होता है.

interface IEvsEnumerator extends @1.0::IEvsEnumerator {
    ...
    /**
     * Returns a list of all EVS displays available to the system
     *
     * @return displayIds Identifiers of available displays.
     */
    getDisplayIdList() generates (vec<uint8_t> displayIds);
};

टारगेट किया गया डिसप्ले डिवाइस खोलें

ईवीएस ऐप्लिकेशन, टारगेट डिसप्ले पोर्ट नंबर के साथ IEvsEnumerator::openDisplay_1_1() को कॉल करता है:

android::sp<IEvsDisplay> pDisplay = pEvs->openDisplay_1_1(displayId);
if (pDisplay.get() == nullptr) {
    LOG(ERROR) << "EVS Display unavailable. Exiting.";
    return 1;
}

ध्यान दें: एक समय पर सिर्फ़ एक डिसप्ले का इस्तेमाल किया जा सकता है. इसका मतलब है कि जब कोई दूसरा ईवीएस क्लाइंट डिसप्ले खोलने का अनुरोध करता है, तो मौजूदा ईवीएस क्लाइंट का डिसप्ले बंद हो जाता है. भले ही, दोनों क्लाइंट एक ही न हों.