Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,76 @@ load("//:project_config.bzl", "PROJECT_CONFIG")
load(":qemu.bzl", "qemu_aarch64")

docs(
bundles = [
{
"bundle": "//score/bitmanipulation:docs",
"mount_at": "baselibs/components/bitmanipulation",
},
{
"bundle": "//score/concurrency:docs",
"mount_at": "baselibs/components/concurrency",
},
{
"bundle": "//score/containers:docs",
"mount_at": "baselibs/components/containers",
},
{
"bundle": "//score/containers_rust:docs",
"mount_at": "baselibs/components/containers_rust",
},
{
"bundle": "//score/filesystem:docs",
"mount_at": "baselibs/components/filesystem",
},
{
"bundle": "//score/flatbuffers:docs",
"mount_at": "baselibs/components/flatbuffers",
},
{
"bundle": "//score/hash:docs",
"mount_at": "baselibs/components/hash",
},
{
"bundle": "//score/json:docs",
"mount_at": "baselibs/components/json",
},
{
"bundle": "//score/language:docs",
"mount_at": "baselibs/components/language",
},
{
"bundle": "//score/language/futurecpp:docs",
"mount_at": "baselibs/components/language/futurecpp",
},
{
"bundle": "//score/language/safecpp:docs",
"mount_at": "baselibs/components/language/safecpp",
},
{
"bundle": "//score/memory:docs",
"mount_at": "baselibs/components/memory",
},
{
"bundle": "//score/mw/log:docs",
"mount_at": "baselibs/components/mw_log",
},
{
"bundle": "//score/os:docs",
"mount_at": "baselibs/components/os",
},
{
"bundle": "//score/result:docs",
"mount_at": "baselibs/components/result",
},
{
"bundle": "//score/static_reflection_with_serialization:docs",
"mount_at": "baselibs/components/static_reflection_with_serialization",
},
{
"bundle": "//score/utils:docs",
"mount_at": "baselibs/components/utils",
},
],
external_needs = [
"@score_platform//:needs_json_file",
"@score_process//:needs_json_file",
Expand Down
170 changes: 85 additions & 85 deletions MODULE.bazel.lock

Large diffs are not rendered by default.

4 changes: 1 addition & 3 deletions docs/baselibs/components/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ Components

.. toctree::
:maxdepth: 1
:glob:

language/index
./*/docs/index
abi_compatible_data_types/docs/index


Overview
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

7 changes: 7 additions & 0 deletions score/bitmanipulation/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("@score_baselibs//:bazel/unit_tests.bzl", "cc_unit_test_suites_for_host_and_qnx")
load("@score_baselibs//score/language/safecpp:toolchain_features.bzl", "COMPILER_WARNING_FEATURES")
load("@score_docs_as_code//:docs.bzl", "docs_bundle")

cc_test(
name = "bit_manipulation_test",
Expand Down Expand Up @@ -79,3 +80,9 @@ cc_unit_test_suites_for_host_and_qnx(
"//visibility:public",
],
)

docs_bundle(
name = "docs",
source_dir = "docs",
visibility = ["//visibility:public"],
)
7 changes: 7 additions & 0 deletions score/concurrency/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
load("@rules_cc//cc:defs.bzl", "cc_library")
load("@score_baselibs//:bazel/unit_tests.bzl", "cc_gtest_unit_test", "cc_unit_test_suites_for_host_and_qnx")
load("@score_baselibs//score/language/safecpp:toolchain_features.bzl", "COMPILER_WARNING_FEATURES")
load("@score_docs_as_code//:docs.bzl", "docs_bundle")

cc_library(
name = "atomic_interface",
Expand Down Expand Up @@ -632,3 +633,9 @@ cc_unit_test_suites_for_host_and_qnx(
"//visibility:public",
],
)

docs_bundle(
name = "docs",
source_dir = "docs",
visibility = ["//visibility:public"],
)
7 changes: 7 additions & 0 deletions score/containers/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
load("@rules_cc//cc:defs.bzl", "cc_library")
load("@score_baselibs//:bazel/unit_tests.bzl", "cc_gtest_unit_test", "cc_unit_test", "cc_unit_test_suites_for_host_and_qnx")
load("@score_baselibs//score/language/safecpp:toolchain_features.bzl", "COMPILER_WARNING_FEATURES")
load("@score_docs_as_code//:docs.bzl", "docs_bundle")

cc_gtest_unit_test(
name = "intrusive_list_test",
Expand Down Expand Up @@ -163,3 +164,9 @@ cc_unit_test_suites_for_host_and_qnx(
"//visibility:public",
],
)

docs_bundle(
name = "docs",
source_dir = "docs",
visibility = ["//visibility:public"],
)
7 changes: 7 additions & 0 deletions score/containers_rust/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# *******************************************************************************

load("@rules_rust//rust:defs.bzl", "rust_library", "rust_test")
load("@score_docs_as_code//:docs.bzl", "docs_bundle")

rust_library(
name = "containers",
Expand All @@ -32,3 +33,9 @@ rust_test(
"ut",
],
)

docs_bundle(
name = "docs",
source_dir = "docs",
visibility = ["//visibility:public"],
)
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Requirements
:safety: ASIL_B
:status: valid
:version: 1
:tags: baselibs_rust_containers_rust
:belongs_to: feat__baselibs[version==1]
:tags: baselibs_rust_containers_rust

Functional Requirements
=======================
Expand Down
7 changes: 7 additions & 0 deletions score/filesystem/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("@score_baselibs//:bazel/unit_tests.bzl", "cc_unit_test_suites_for_host_and_qnx")
load("@score_baselibs//score/language/safecpp:toolchain_features.bzl", "COMPILER_WARNING_FEATURES")
load("@score_docs_as_code//:docs.bzl", "docs_bundle")

cc_library(
name = "filesystem",
Expand Down Expand Up @@ -205,3 +206,9 @@ cc_unit_test_suites_for_host_and_qnx(
"//visibility:public",
],
)

docs_bundle(
name = "docs",
source_dir = "docs",
visibility = ["//visibility:public"],
)
7 changes: 7 additions & 0 deletions score/flatbuffers/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# *******************************************************************************

load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("@score_docs_as_code//:docs.bzl", "docs_bundle")

cc_library(
name = "flatbufferscpp",
Expand Down Expand Up @@ -178,3 +179,9 @@ cc_test(
"@googletest//:gtest_main",
],
)

docs_bundle(
name = "docs",
source_dir = "docs",
visibility = ["//visibility:public"],
)
7 changes: 7 additions & 0 deletions score/hash/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

load("@rules_cc//cc:defs.bzl", "cc_library")
load("@score_baselibs//:bazel/unit_tests.bzl", "cc_unit_test_suites_for_host_and_qnx")
load("@score_docs_as_code//:docs.bzl", "docs_bundle")

COMPILER_WARNING_FEATURES = [
"treat_warnings_as_errors",
Expand Down Expand Up @@ -62,3 +63,9 @@ cc_unit_test_suites_for_host_and_qnx(
],
visibility = ["//visibility:public"],
)

docs_bundle(
name = "docs",
source_dir = "docs",
visibility = ["//visibility:public"],
)
7 changes: 7 additions & 0 deletions score/json/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ load("@bazel_skylib//rules:common_settings.bzl", "string_flag")
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("@score_baselibs//:bazel/unit_tests.bzl", "cc_unit_test_suites_for_host_and_qnx")
load("@score_baselibs//score/language/safecpp:toolchain_features.bzl", "COMPILER_WARNING_FEATURES")
load("@score_docs_as_code//:docs.bzl", "docs_bundle")

LIB_JSON_VISIBILITY = ["//visibility:public"]

Expand Down Expand Up @@ -245,3 +246,9 @@ cc_unit_test_suites_for_host_and_qnx(
"//visibility:public",
],
)

docs_bundle(
name = "docs",
source_dir = "docs",
visibility = ["//visibility:public"],
)
24 changes: 24 additions & 0 deletions score/json/docs/vajson/detailed_design/CADS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
..
# *******************************************************************************
# Copyright (c) 2026 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************

======
Design
======

.. toctree::

functional/Functional.rst
logical/Logical.rst
structural/Structural.rst
concepts/Concepts.rst
24 changes: 24 additions & 0 deletions score/json/docs/vajson/detailed_design/concepts/Concepts.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
..
# *******************************************************************************
# Copyright (c) 2026 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************

.. _concepts-index:

Concepts
********

This section lists concepts used within the implementation.

.. toctree::

Reader.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
..
# *******************************************************************************
# Copyright (c) 2026 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************

Templates and Polymorphism
==========================

Expand Down
Loading
Loading