ใช้ตรรกะทางธุรกิจ

  1. ตรวจสอบว่าไดเรกทอรีแคตตาล็อก VSIDL มีไฟล์บิลด์ protobuf และ VSIDL ที่จำเป็น หากต้องการเริ่มต้นจากตัวอย่างที่มีอยู่ คุณสามารถ ดูตัวอย่างโฟลเดอร์แคตตาล็อกที่ถูกต้องได้ที่ /system/software_defined_vehicle/samples/vsidl/stable/catalog

    ตัวอย่างโครงสร้างแคตตาล็อก

    my_catalog/
    ├── Android.bp          # Defines rust_protobuf modules for .proto files
    ├── types.proto         # Protobuf message / RPC service definitions
    └── architecture.vsidl  # VSIDL service bundle definitions
    
  2. เขียนโค้ดที่กำหนดเองเพื่อใช้ตรรกะทางธุรกิจ

    • เซิร์ฟเวอร์ RPC: ใช้ลักษณะจาก lib.rs
    • ไคลเอ็นต์การเผยแพร่และการสมัครรับข้อมูลและ RPC: เรียกฟังก์ชันที่สร้างขึ้น ภายใน service_bundle.rs เพื่อโต้ตอบกับบริการอื่นๆ

    สนิม

    1. สร้างการติดตั้งใช้งานโครงร่างโดยเรียกใช้คำสั่งต่อไปนี้

      vsidlc -c /path/to/catalog -o /path/to/output --services
      

      การเรียกใช้ vsidlc ด้วยแฟล็ก --services จะสร้างแฟล็กสร้าง การติดตั้งใช้งาน Rust แบบ Boilerplate สำหรับแต่ละชุดบริการ ซึ่งจะช่วยให้คุณมีโครงสร้างพื้นฐานที่จำเป็น รวมถึงซอร์สโค้ด (main.rs) และไฟล์การกำหนดค่าบิลด์ (Android.bp) ที่มี การอ้างอิงทั้งหมด ซึ่งจะช่วยให้คุณแลกเปลี่ยนข้อความเริ่มต้นได้ทันทีในขณะที่ คุณมุ่งเน้นที่การใช้ตรรกะทางธุรกิจหลัก

    2. สำหรับแต่ละแพ็กเกจบริการ ให้ค้นหาการติดตั้งใช้งาน Rust ใน

      /path/to/output/services/ServiceBundleName/src/main.rs

    3. โดยค่าเริ่มต้น การติดตั้งใช้งานที่สร้างขึ้นจะสร้างข้อความที่มี ค่าเริ่มต้นและส่งข้อความระหว่างผู้เผยแพร่โฆษณาและผู้ติดตาม หรือไคลเอ็นต์และเซิร์ฟเวอร์ RPC หากต้องการแก้ไขลักษณะการทำงานนี้ ให้ค้นหาTODO ความคิดเห็นใน main.rs แล้วปรับตามค่ากำหนด เช่น

      async fn handle_tire_pressure_range_unique_publisher(
          publisher: sdv::mw::Publisher<TirePressureRange>,
      ) {
          loop {
              // TODO: Modify the frequency of publishing messages here.
              sleep(Duration::from_secs(1)).await;
              // TODO: Modify the message content here.
              let message = TirePressureRange::default();
              info!("Publishing on TirePressureRange#UNIQUE");
              publisher.publish(&message).unwrap();
          }
      }
      
    4. หากต้องการให้แน่ใจว่าการแก้ไขไฟล์ที่สร้างขึ้นจะไม่ถูกเขียนทับในครั้งถัดไปที่ vsidlc ทำงาน ให้ย้ายโฟลเดอร์ services ออกจากโฟลเดอร์ /path/to/output

    C++

    1. สร้างไฟล์ส่วนหัวใหม่ src/lib.hpp พร้อมคลาสสำหรับแพ็กเกจบริการ

      #pragma once
      #include <sdv/service_bundle.h>
      #include <sdv/context.hpp>
      
      namespace com::sdv::oem::service_bundle {
      
      // Sample implementation of the service bundle interface.
      class ServiceBundleName : public android::sdv::service_bundle::ServiceBundle {
      public:
          ServiceBundleName(sdv_comms::ctx::Context context);
          ~ServiceBundleName();
          void onStart() override;
          void onStop() override;
      };
      }  // namespace com::sdv::oem::service_bundle
      
    2. สร้างไฟล์ต้นฉบับใหม่ src/lib.cpp ด้วยการติดตั้งใช้งานคลาส

      #include "src/lib.hpp"
      #include <sdv/sb_macro.h>
      #include <iostream>
      using com::sdv::oem::service_bundle::ServiceBundleName;
      
      // Register the new service bundle.
      REGISTER_SERVICE_BUNDLE(ServiceBundleName);
      
      // Sample implementation of the service bundle interface.
      namespace com::sdv::oem::service_bundle {
      // Creates a new instance of the ServiceBundleName.
      // Called when service bundle is created by the system.
      // Context object is provided as a parameter that gives access to the
      // communication stack APIs.
      ServiceBundleName::ServiceBundleName([[maybe_unused]] sdv_comms::ctx::Context context) :
        ServiceBundle(context) {
          // Memory allocations and static data loading should be done as
          // part of this method.
          //
          // Loading of the dynamic resources (sockets, files, etc)
          // is strongly discouraged due to possible Suspend-to-RAM scenario.
          //
          // The dynamic data can be loaded in the onStart method.
      }
      
      // Called when the service bundle is started by the system.
      void ServiceBundleName::onStart() {
          // Dynamic resources(sockets, files, etc) should be allocated during this call.
      }
      
      // Called when the service bundle is stopped by the system in preparation
      // for shutdown or suspend to RAM/Disc.
      void ServiceBundleName::onStop() {
          // Stop phase requires the service bundle to delete the dynamic resources
          // (sockets, files, etc) that were previously allocated in the onStart method.
      }
      
      // Called when the service bundle is destroyed by the system.
      ServiceBundleName::~ServiceBundleName() {
          // Static resources deallocation needs to be implemented in the destructor.
      }
      }  // namespace com::sdv::oem::service_bundle
      
    3. สร้างเป้าหมาย Soong ของไลบรารีชุดบริการในไฟล์ใหม่หรือไฟล์ที่มีอยู่ Android.bp

      // Service bundle library.
      cc_library_shared {
        name: "libservice_bundle",
        srcs: ["src/lib.cpp",],
        // Allows the library to be available inside APEX.
        apex_available: [
            "//apex_available:platform",
            "//apex_available:anyapex",
        ],
        shared_libs: [
          // Service Bundle lifecycle C++ API.
          "libsdv_lifecycle_client_cpp",
          // commstack library that provides context object reference
          "libsdv_comms_cpp",
        ],
      
        // Service bundle package is packed into /product apexes.
        product_specific: true,
      }
      

ขั้นตอนถัดไป

ดูวิธีทำให้ Service Bundle ใช้งานได้ที่สร้างและทำให้ Service Bundle ใช้งานได้