以 API 的形式實作系統屬性

系統屬性提供方便的方式,可在系統層級分享資訊 (通常是設定)。每個分區都可以在內部使用自己的系統屬性。跨分區存取屬性 (例如 /vendor 存取 /system 定義的屬性) 時,可能會發生問題。自 Android 8.0 起,部分分區 (例如 /system) 可升級,而 /vendor 則維持不變。由於系統屬性只是沒有結構定義的字串鍵/值組合全域字典,因此很難穩定屬性。/system 區隔可能會在未通知的情況下變更或移除 /vendor 區隔所依賴的屬性。

從 Android 10 版本開始,跨分區存取的系統屬性會以結構化方式轉換為 Sysprop Description 檔案,而用於存取屬性的 API 會產生為 C++ 和 Rust 的具體函式,以及 Java 的類別。這些 API 更方便使用,因為不需神奇字串 (例如 ro.build.date) 即可存取,而且這些字串可以是靜態的類型。系統會在建構期間檢查 ABI 穩定性,如果發生不相容的變更,建構作業就會中斷。這項檢查會做為分區之間明確定義的介面。這些 API 也可以在 Rust、Java 和 C++ 之間提供一致性。

將系統屬性定義為 API

使用 Sysprop 說明檔案 (.sysprop) 將系統屬性定義為 API,這個檔案使用 protobuf 的文字格式,且結構定義如下:

// File: sysprop.proto

syntax = "proto3";

package sysprop;

enum Access {
  Readonly = 0;
  Writeonce = 1;
  ReadWrite = 2;
}

enum Owner {
  Platform = 0;
  Vendor = 1;
  Odm = 2;
}

enum Scope {
  Public = 0;
  Internal = 2;
}

enum Type {
  Boolean = 0;
  Integer = 1;
  Long = 2;
  Double = 3;
  String = 4;
  Enum = 5;
  UInt = 6;
  ULong = 7;

  BooleanList = 20;
  IntegerList = 21;
  LongList = 22;
  DoubleList = 23;
  StringList = 24;
  EnumList = 25;
  UIntList = 26;
  ULongList = 27;
}

message Property {
  string api_name = 1;
  Type type = 2;
  Access access = 3;
  Scope scope = 4;
  string prop_name = 5;
  string enum_values = 6;
  bool integer_as_bool = 7;
  string legacy_prop_name = 8;
}

message Properties {
  Owner owner = 1;
  string module = 2;
  repeated Property prop = 3;
}

一個 Sysprop Description 檔案包含一個屬性訊息,用來說明一組屬性。其欄位的含義如下:

欄位 意義
owner 將其設為擁有屬性的分區:PlatformVendorOdm
module 用於建立用來放置產生 API 的命名空間 (C++) 或靜態最終類別 (Java)。舉例來說,com.android.sysprop.BuildProperties 會是 C++ 中的命名空間 com::android::sysprop::BuildProperties,而 Java 中 com.android.sysprop 套件中的 BuildProperties 類別。
prop 屬性清單。

Property 訊息欄位的含義如下。

欄位 意義
api_name 產生的 API 名稱。
type 這個屬性的類型。
access Readonly:只產生 getter API
WriteonceReadWrite:產生 getter 和 setter API
注意:前置字串為 ro. 的屬性可能無法使用 ReadWrite 存取權。
scope Internal:只有擁有者可以存取。
Public:所有使用者皆可存取,但 NDK 模組除外。
prop_name 基礎系統屬性的名稱,例如 ro.build.date
enum_values (僅限 EnumEnumList) 由直立線(|) 分隔的字串,其中包含可能的列舉值。例如:value1|value2
integer_as_bool (僅限 BooleanBooleanList) 讓 Setter 使用 01,而非 falsetrue
legacy_prop_name (選用,僅限 Readonly 屬性) 基礎系統屬性的舊名稱。呼叫 getter 時,getter API 會嘗試讀取 prop_name,並在 prop_name 不存在時使用 legacy_prop_name。如要淘汰現有資源並移至新資源,請使用 legacy_prop_name

每種屬性都會對應至 C++、Java 和 Rust 中的以下型別。

類型 C++ Java Rust
布林值 std::optional<bool> Optional<Boolean> bool
整數 std::optional<std::int32_t> Optional<Integer> i32
UInt std::optional<std::uint32_t> Optional<Integer> u32
std::optional<std::int64_t> Optional<Long> i64
ULong std::optional<std::uint64_t> Optional<Long> u64
雙精準數 std::optional<double> Optional<Double> f64
字串 std::optional<std::string> Optional<String> String
列舉 std::optional<{api_name}_values> Optional<{api_name}_values> {ApiName}Values
T 清單 std::vector<std::optional<T>> List<T> Vec<T>

以下是定義三個屬性的 Sysprop Description 檔案範例:

# File: android/sysprop/PlatformProperties.sysprop

owner: Platform
module: "android.sysprop.PlatformProperties"
prop {
    api_name: "build_date"
    type: String
    prop_name: "ro.build.date"
    scope: Public
    access: Readonly
}
prop {
    api_name: "date_utc"
    type: Integer
    prop_name: "ro.build.date_utc"
    scope: Internal
    access: Readonly
}
prop {
    api_name: "device_status"
    type: Enum
    enum_values: "on|off|unknown"
    prop_name: "device.status"
    scope: Public
    access: ReadWrite
}

定義系統屬性程式庫

您現在可以使用 Sysprop Description 檔案定義 sysprop_library 模組。sysprop_library 是 C++、Java 和 Rust 的 API。建構系統會在內部為每個 sysprop_library 例項產生一個 rust_library、一個 java_library 和一個 cc_library

// File: Android.bp
sysprop_library {
    name: "PlatformProperties",
    srcs: ["android/sysprop/PlatformProperties.sysprop"],
    property_owner: "Platform",
    vendor_available: true,
}

您必須在 API 檢查的來源中加入 API 清單檔案。方法是建立 API 檔案和 api 目錄。將 api 目錄放在 Android.bp 所在的目錄中。API 檔案名稱為 <module_name>-current.txt<module_name>-latest.txt<module_name>-current.txt 會保留目前原始碼的 API 簽名,而 <module_name>-latest.txt 則會保留最新的已凍結 API 簽名。建構系統會在建構期間將這些 API 檔案與產生的 API 檔案進行比較,檢查 API 是否已變更,並在 current.txt 與原始程式碼不相符時,發出錯誤訊息和更新 current.txt 檔案的指示。下方為目錄和檔案機構範例:

├── api
│   ├── PlatformProperties-current.txt
│   └── PlatformProperties-latest.txt
└── Android.bp

Rust、Java 和 C++ 用戶端模組可以連結至 sysprop_library,以便使用產生的 API。建構系統會從用戶端建立連結至產生的 C++、Java 和 Rust 程式庫,因此可讓用戶端存取產生的 API。

java_library {
    name: "JavaClient",
    srcs: ["foo/bar.java"],
    libs: ["PlatformProperties"],
}

cc_binary {
    name: "cc_client",
    srcs: ["baz.cpp"],
    shared_libs: ["PlatformProperties"],
}

rust_binary {
    name: "rust_client",
    srcs: ["src/main.rs"],
    rustlibs: ["libplatformproperties_rust"],
}

請注意,Rust 程式庫名稱是透過將 sysprop_library 名稱轉換為小寫字母、將 .- 替換為 _,然後在開頭加上 lib 並在結尾加上 _rust 產生。

在上述範例中,您可以透過下列方式存取定義的屬性。

Rust 範例:

use platformproperties::DeviceStatusValues;

fn foo() -> Result<(), Error> {
  // Read "ro.build.date_utc". default value is -1.
  let date_utc = platformproperties::date_utc()?.unwrap_or_else(-1);

  // set "device.status" to "unknown" if "ro.build.date" is not set.
  if platformproperties::build_date()?.is_none() {
    platformproperties::set_device_status(DeviceStatusValues::UNKNOWN);
  }

  …
}

Java 範例:

import android.sysprop.PlatformProperties;

…

static void foo() {
    …
    // read "ro.build.date_utc". default value is -1
    Integer dateUtc = PlatformProperties.date_utc().orElse(-1);

    // set "device.status" to "unknown" if "ro.build.date" is not set
    if (!PlatformProperties.build_date().isPresent()) {
        PlatformProperties.device_status(
            PlatformProperties.device_status_values.UNKNOWN
        );
    }
    …
}
…

C++ 範例:

#include <android/sysprop/PlatformProperties.sysprop.h>
using namespace android::sysprop;

…

void bar() {
    …
    // read "ro.build.date". default value is "(unknown)"
    std::string build_date = PlatformProperties::build_date().value_or("(unknown)");

    // set "device.status" to "on" if it's "unknown" or not set
    using PlatformProperties::device_status_values;
    auto status = PlatformProperties::device_status();
    if (!status.has_value() || status.value() == device_status_values::UNKNOWN) {
        PlatformProperties::device_status(device_status_values::ON);
    }
    …
}
…