Skip to content

hmon: add C++ interface to heartbeat monitor#72

Draft
arkjedrz wants to merge 7 commits intoeclipse-score:mainfrom
qorix-group:arkjedrz_heartbeat-monitor-cpp
Draft

hmon: add C++ interface to heartbeat monitor#72
arkjedrz wants to merge 7 commits intoeclipse-score:mainfrom
qorix-group:arkjedrz_heartbeat-monitor-cpp

Conversation

@arkjedrz
Copy link
Contributor

Add C++ interface to heartbeat monitor.

Resolves #69

@arkjedrz arkjedrz temporarily deployed to workflow-approval February 11, 2026 11:00 — with GitHub Actions Inactive
@github-actions
Copy link

github-actions bot commented Feb 11, 2026

License Check Results

🚀 The license check job ran with the Bazel command:

bazel run //:license-check

Status: ⚠️ Needs Review

Click to expand output
[License Check Output]
Extracting Bazel installation...
Starting local Bazel server (8.4.2) and connecting to it...
INFO: Invocation ID: 107bb3a9-40a5-47e9-88f3-2e623fabd3f7
Computing main repo mapping: 
Computing main repo mapping: 
Computing main repo mapping: 
WARNING: For repository 'score_rust_policies', the root module requires module version [email protected], but got [email protected] in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off
Computing main repo mapping: 
Loading: 
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
    currently loading: 
Loading: 0 packages loaded
    currently loading: 
Loading: 0 packages loaded
    currently loading: 
Loading: 0 packages loaded
    currently loading: 
Analyzing: target //:license-check (1 packages loaded, 0 targets configured)
Analyzing: target //:license-check (1 packages loaded, 0 targets configured)

Analyzing: target //:license-check (33 packages loaded, 9 targets configured)

Analyzing: target //:license-check (72 packages loaded, 9 targets configured)

Analyzing: target //:license-check (86 packages loaded, 9 targets configured)

Analyzing: target //:license-check (135 packages loaded, 2281 targets configured)

Analyzing: target //:license-check (149 packages loaded, 3116 targets configured)

Analyzing: target //:license-check (150 packages loaded, 7751 targets configured)

Analyzing: target //:license-check (160 packages loaded, 7817 targets configured)

Analyzing: target //:license-check (160 packages loaded, 7817 targets configured)

Analyzing: target //:license-check (160 packages loaded, 7817 targets configured)

Analyzing: target //:license-check (162 packages loaded, 7941 targets configured)

INFO: Analyzed target //:license-check (165 packages loaded, 9955 targets configured).
[12 / 16] JavaToolchainCompileClasses external/rules_java+/toolchains/platformclasspath_classes; 0s disk-cache, processwrapper-sandbox ... (2 actions, 1 running)
[14 / 16] JavaToolchainCompileBootClasspath external/rules_java+/toolchains/platformclasspath.jar; 0s disk-cache, processwrapper-sandbox
INFO: Found 1 target...
Target //:license.check.license_check up-to-date:
  bazel-bin/license.check.license_check
  bazel-bin/license.check.license_check.jar
INFO: Elapsed time: 26.467s, Critical Path: 2.78s
INFO: 16 processes: 12 internal, 3 processwrapper-sandbox, 1 worker.
INFO: Build completed successfully, 16 total actions
INFO: Running command line: bazel-bin/license.check.license_check ./formatted.txt <args omitted>
usage: org.eclipse.dash.licenses.cli.Main [-batch <int>] [-cd <url>]
       [-confidence <int>] [-ef <url>] [-excludeSources <sources>] [-help] [-lic
       <url>] [-project <shortname>] [-repo <url>] [-review] [-summary <file>]
       [-timeout <seconds>] [-token <token>]

@github-actions
Copy link

The created documentation from the pull request is available at: docu-html

@arkjedrz arkjedrz force-pushed the arkjedrz_heartbeat-monitor-cpp branch from 04a90a3 to 93f7fc7 Compare February 11, 2026 12:14
@arkjedrz arkjedrz force-pushed the arkjedrz_heartbeat-monitor-cpp branch from 93f7fc7 to b3753a6 Compare February 13, 2026 14:48
@arkjedrz arkjedrz temporarily deployed to workflow-approval February 13, 2026 14:49 — with GitHub Actions Inactive
@arkjedrz arkjedrz temporarily deployed to workflow-approval February 13, 2026 14:49 — with GitHub Actions Inactive
@arkjedrz arkjedrz force-pushed the arkjedrz_heartbeat-monitor-cpp branch from b3753a6 to 89ad2f1 Compare February 17, 2026 12:13
@arkjedrz arkjedrz temporarily deployed to workflow-approval February 17, 2026 12:13 — with GitHub Actions Inactive
@arkjedrz arkjedrz temporarily deployed to workflow-approval February 17, 2026 12:13 — with GitHub Actions Inactive
@arkjedrz arkjedrz self-assigned this Feb 17, 2026
@arkjedrz arkjedrz temporarily deployed to workflow-approval February 17, 2026 14:37 — with GitHub Actions Inactive
@arkjedrz arkjedrz temporarily deployed to workflow-approval February 17, 2026 14:37 — with GitHub Actions Inactive
@arkjedrz arkjedrz temporarily deployed to workflow-approval February 17, 2026 15:06 — with GitHub Actions Inactive
@arkjedrz arkjedrz temporarily deployed to workflow-approval February 17, 2026 15:06 — with GitHub Actions Inactive
- Fix Cargo for `health_monitoring_lib`.
- Fix leftover test changes from previous PR.
- Small code changes.
- Less restrictive feature flags.
- Additional small code changes.
- Remove unnecessary abstraction from monitors.
- Improve docs.
- Move `FFIBorrowed` and `FFIHandle` to main `ffi` module.
- Small esthetics fixes.
- Restore some parts.
- Separate errors into groups.
@arkjedrz arkjedrz force-pushed the arkjedrz_heartbeat-monitor-cpp branch from 578964b to 8c150e1 Compare February 25, 2026 13:56
@arkjedrz arkjedrz temporarily deployed to workflow-approval February 25, 2026 13:56 — with GitHub Actions Inactive
@arkjedrz arkjedrz temporarily deployed to workflow-approval February 25, 2026 13:56 — with GitHub Actions Inactive
@arkjedrz arkjedrz force-pushed the arkjedrz_heartbeat-monitor-cpp branch from 8c150e1 to 0104ab2 Compare February 26, 2026 11:42
@arkjedrz arkjedrz temporarily deployed to workflow-approval February 26, 2026 11:43 — with GitHub Actions Inactive
@arkjedrz arkjedrz temporarily deployed to workflow-approval February 26, 2026 11:43 — with GitHub Actions Inactive
- Add `HealthMonitorError`.
  - Not fully utilized in this change, required for future monitors.
- Simplify implementation of `start` and `build`.
  - No longer must be reimplemented for FFI.
- New unit tests for `lib.rs`.
@arkjedrz arkjedrz force-pushed the arkjedrz_heartbeat-monitor-cpp branch from 0104ab2 to c6e4454 Compare February 26, 2026 12:43
Add heartbeat monitor HMON.
Add C++ interface to heartbeat monitor.
@arkjedrz arkjedrz force-pushed the arkjedrz_heartbeat-monitor-cpp branch from c6e4454 to 602b860 Compare February 26, 2026 13:57
@arkjedrz arkjedrz deployed to workflow-approval February 26, 2026 13:57 — with GitHub Actions Active
@arkjedrz arkjedrz temporarily deployed to workflow-approval February 26, 2026 13:57 — with GitHub Actions Inactive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[HmLib] C++ Heartbeat Monitor API

1 participant