Skip to content
Merged
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
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ download_archive(
bazel_dep(name = "score_tooling", dev_dependency = True)
git_override(
module_name = "score_tooling",
commit = "0a1baf63d498f88859bd62ccd212ff4ed2a9e1ba",
commit = "4c83c578069768c6133e4268b63929646754f6a6",
remote = "https://github.com/eclipse-score/tooling.git",
)

Expand Down
14 changes: 14 additions & 0 deletions score/mw/com/dependability/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,17 @@
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
load("@score_tooling//bazel/rules/rules_score:rules_score.bzl", "dependable_element")

dependable_element(
name = "dependable_element",
architectural_design = ["//score/mw/com/dependability/software_architectural_design"],
assumptions_of_use = [],
components = [],
dependability_analysis = [],
integrity_level = "B",
maturity = "development",
requirements = [],
tags = ["manual"],
tests = [],
)
19 changes: 19 additions & 0 deletions score/mw/com/dependability/software_architectural_design/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# *******************************************************************************
# 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
# *******************************************************************************
load("@score_tooling//bazel/rules/rules_score:rules_score.bzl", "architectural_design")

architectural_design(
name = "software_architectural_design",
static = ["static_view.puml"],
visibility = ["//score/mw/com/dependability:__pkg__"],
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
' *******************************************************************************
' 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
' *******************************************************************************
@startuml static_design

interface "mw_com" as mw_com_public_api

component "mw::com" as mw_com <<SEooC>> {

component "Frontend" as frontend <<component>> {
component "Proxy" as frontend_proxy <<unit>>
component "Skeleton" as frontend_skeleton <<unit>>
component "Service Discovery" as frontend_sd <<unit>>
}

component "Bindings" as bindings <<component>> {
component "LoLa" as lola <<component>> {
component "Proxy" as lola_proxy <<unit>>
component "Skeleton" as lola_skeleton <<unit>>
component "Service Discovery" as lola_sd <<unit>>
}
component "Mock" as mock_binding <<component>> {
}
}

portin " " as p1
portin " " as p2
portin " " as p3

portout " " as public_api
}

together {
interface "score::memory" as memory
interface "score::message_passing" as message_passing
interface "OS" as os
}

p1 -u-( memory
p2 -u-( message_passing
p3 -u-( os

public_api -left-() mw_com_public_api


' ------------------------ Formatting -------------------

memory -[hidden]down- lola_sd
frontend_proxy -[hidden]left- frontend_skeleton
frontend_skeleton -[hidden]left- frontend_sd
frontend -[hidden]down- bindings
@enduml