Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Android/development/development/tools/cargo_embargo/src/   (Android Betriebssystem Version 17©)  Datei vom 26.5.2026 mit Größe 9 kB image not shown  

Quelle  bp.rs

  Sprache: Rust
 

// Copyright (C) 2022 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use anyhow::{bail, Result};
use std::collections::BTreeMap;
use std::path::PathBuf;

/// Build module.
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct BpModule {
    pub module_type: String,
    pub props: BpProperties,
}

/// Properties of a build module, or of a nested object value.
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct BpProperties {
    pub map: BTreeMap<String, BpValue>,
    /// A raw block of text to append after the last key-value pair, but before the closing brace.
    /// For example, if you have the properties
    ///
    ///     {
    ///         name: "foo",
    ///         srcs: ["main.rs"],
    ///     }
    ///
    /// and add `raw_block = "some random text"`, you'll get
    ///
    ///     {
    ///         name: "foo",
    ///         srcs: ["main.rs"],
    ///         some random text
    ///     }
    pub raw_block: Option<String>,
}

#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub enum BpValue {
    Object(BpProperties),
    Bool(bool),
    String(String),
    List(Vec<BpValue>),
}

const NO_STD_FILTERED_PROPS: &[&str] = &["prefer_rlib""no_stdlibs""stdlibs"];
const NO_STD_SUPPORTED_PROPS: &[&str] = &["srcs""features""cfgs""rustlibs"];
const NO_STD_BAREMETAL_DEFAULTS: &str = "rust_baremetal_nostd_defaults";

impl BpModule {
    pub fn new(module_type: String) -> BpModule {
        BpModule { module_type, props: BpProperties::new() }
    }

    /// Serialize to Android.bp format.
    pub fn write(&self, w: &mut impl std::fmt::Write) -> Result<()> {
        w.write_str(&self.module_type)?;
        w.write_str(" ")?;
        self.props.write(w)?;
        w.write_str("\n")?;
        Ok(())
    }

    pub fn merge(&mut selfmut other: BpModule) -> Result<()> {
        // Dedup
        if *self == other {
            return Ok(());
        }

        // Attempt no_std merge
        if self.no_std() && other.device_std_rlib() {
            std::mem::swap(self, &mut other)
        }
        if self.device_std_rlib() && other.no_std() {
            let mut no_std_props = BpProperties::new();
            no_std_props.set("enabled"true);
            // Normally, props are omitted if empty. If the std variant has a prop set,
            // and the no_std variant does not, we need to explicitly set it to the empty
            // list to maintain the semantics of the merged module.
            for prop in NO_STD_SUPPORTED_PROPS {
                if self.props.map.contains_key(*prop) && !other.props.map.contains_key(*prop) {
                    no_std_props.set(prop, BpValue::List(Vec::new()))
                }
            }
            for (prop, val) in other.props.map.into_iter() {
                if self.props.map.get(&prop) != Some(&val) {
                    // For this specific value, we have a no_std equivalent.
                    if prop == "defaults"
                        && val == BpValue::List(vec![BpValue::from("rust_baremetal_defaults")])
                    {
                        let mut defaults = match self.props.map.get(&prop) {
                            Some(BpValue::List(defaults)) => defaults.clone(),
                            None => Vec::new(),
                            bad => panic!("Invalid defaults: {bad:?}"),
                        };
                        if !defaults.contains(&BpValue::from(NO_STD_BAREMETAL_DEFAULTS)) {
                            defaults.push(BpValue::from(NO_STD_BAREMETAL_DEFAULTS));
                        }
                        self.props.set("defaults", defaults);
                        continue;
                    }
                    if NO_STD_FILTERED_PROPS.contains(&prop.as_str()) {
                        continue;
                    }
                    if NO_STD_SUPPORTED_PROPS.contains(&prop.as_str()) {
                        no_std_props.set(&prop, val);
                        continue;
                    }
                    bail!("Unsupported no_std property: {prop}")
                }
            }
            self.props.set("no_std", BpValue::Object(no_std_props));
            return Ok(());
        }

        bail!("failed merge {self:?} <-> {other:?}")
    }

    fn device_std_rlib(&self) -> bool {
        self.module_type == "rust_library_rlib" || self.module_type == "rust_library"
    }

    fn no_std(&self) -> bool {
        (self.module_type == "rust_library_rlib" || self.module_type == "rust_library")
            && self.props.map.get("no_stdlibs") == Some(&BpValue::Bool(true))
    }
}

impl BpProperties {
    pub fn new() -> Self {
        BpProperties { map: BTreeMap::new(), raw_block: None }
    }

    pub fn get_string(&self, k: &str) -> Option<&str> {
        match self.map.get(k)? {
            BpValue::String(s) => Some(s),
            _ => None,
        }
    }

    pub fn set<T: Into<BpValue>>(&mut self, k: &str, v: T) {
        self.map.insert(k.to_string(), v.into());
    }

    pub fn set_or_extend<T: Into<BpValue>>(&mut self, k: &str, v: Vec<T>) {
        match self.map.get_mut(k) {
            Some(i) => match i {
                BpValue::List(l) => {
                    l.extend(v.into_iter().map(Into::into));
                }
                _ => panic!("key {k:?} cannot be extended as it is not a list"),
            },
            None => {
                self.set(k, v);
            }
        }
    }

    pub fn set_if_nonempty<T: Into<BpValue>>(&mut self, k: &str, v: Vec<T>) {
        if !v.is_empty() {
            self.set(k, v);
        }
    }

    pub fn object(&mut self, k: &str) -> &mut BpProperties {
        let v =
            self.map.entry(k.to_string()).or_insert_with(|| BpValue::Object(BpProperties::new()));
        match v {
            BpValue::Object(v) => v,
            _ => panic!("key {k:?} already has non-object value"),
        }
    }

    /// Serialize to Android.bp format.
    pub fn write(&self, w: &mut impl std::fmt::Write) -> Result<()> {
        w.write_str("{\n")?;
        // Sort stuff to match what cargo2android.py's output order.
        let canonical_order = &[
            "name",
            "defaults",
            "stem",
            "host_supported",
            "host_cross_supported",
            "crate_name",
            "cargo_env_compat",
            "cargo_pkg_version",
            "crate_root",
            "srcs",
            "test_suites",
            "auto_gen_config",
            "test_options",
            "edition",
            "features",
            "cfgs",
            "flags",
            "rustlibs",
            "proc_macros",
            "static_libs",
            "whole_static_libs",
            "shared_libs",
            "aliases",
            "arch",
            "target",
            "ld_flags",
            "compile_multilib",
            "export_include_dirs",
            "apex_available",
            "prefer_rlib",
            "no_stdlibs",
            "stdlibs",
            "native_bridge_supported",
            "product_available",
            "recovery_available",
            "vendor_available",
            "vendor_ramdisk_available",
            "ramdisk_available",
            "min_sdk_version",
            "sdk_version",
            "visibility",
        ];
        let mut props: Vec<(&String, &BpValue)> = self.map.iter().collect();
        props.sort_by_key(|(k, _)| {
            let i = canonical_order.iter().position(|x| k == x).unwrap_or(canonical_order.len());
            (i, (*k).clone())
        });
        for (k, v) in props {
            w.write_str(k)?;
            w.write_str(": ")?;
            v.write(w)?;
            w.write_str(",\n")?;
        }
        if let Some(raw_block) = &self.raw_block {
            w.write_str(raw_block)?;
            w.write_str(",\n")?;
        }
        w.write_str("}")?;
        Ok(())
    }
}

impl BpValue {
    /// Serialize to Android.bp format.
    pub fn write(&self, w: &mut impl std::fmt::Write) -> Result<()> {
        match self {
            BpValue::Object(p) => p.write(w)?,
            BpValue::Bool(b) => write!(w, "{b}")?,
            BpValue::String(s) => write!(w, "\"{s}\"")?,
            BpValue::List(vs) => {
                w.write_str("[")?;
                for (i, v) in vs.iter().enumerate() {
                    v.write(w)?;
                    if i != vs.len() - 1 {
                        w.write_str(", ")?;
                    }
                }
                w.write_str("]")?;
            }
        }
        Ok(())
    }
}

impl From<bool> for BpValue {
    fn from(x: bool) -> Self {
        BpValue::Bool(x)
    }
}

impl From<&str> for BpValue {
    fn from(x: &str) -> Self {
        BpValue::String(x.to_string())
    }
}

impl From<String> for BpValue {
    fn from(x: String) -> Self {
        BpValue::String(x)
    }
}

impl From<PathBuf> for BpValue {
    fn from(x: PathBuf) -> Self {
        BpValue::String(x.to_string_lossy().into_owned())
    }
}

impl<T: Into<BpValue>> From<Vec<T>> for BpValue {
    fn from(x: Vec<T>) -> Self {
        BpValue::List(x.into_iter().map(|x| x.into()).collect())
    }
}

Messung V0.5 in Prozent
C=87 H=89 G=87

¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet am  2026-06-27) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.