hg-cpp 0.3.0__cp312-abi3-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- _hgraph.pyd +0 -0
- arrow.dll +0 -0
- arrow_compute.dll +0 -0
- hg_cpp-0.3.0.dist-info/METADATA +96 -0
- hg_cpp-0.3.0.dist-info/RECORD +197 -0
- hg_cpp-0.3.0.dist-info/WHEEL +5 -0
- hgraph/__init__.py +72 -0
- hgraph/_compat.py +92 -0
- hgraph/_operators/__init__.py +0 -0
- hgraph/_operators/_stream.py +4 -0
- hgraph/_runtime.py +1875 -0
- hgraph/_types.py +676 -0
- hgraph/arrow.py +124 -0
- hgraph/nodes.py +95 -0
- hgraph/test/__init__.py +4 -0
- include/hgraph/config.h +17 -0
- include/hgraph/hgraph.h +10 -0
- include/hgraph/hgraph_export.h +31 -0
- include/hgraph/lib/std/component.h +183 -0
- include/hgraph/lib/std/lifted_kernels.h +585 -0
- include/hgraph/lib/std/operators/arithmetic.h +150 -0
- include/hgraph/lib/std/operators/collection.h +391 -0
- include/hgraph/lib/std/operators/comparison.h +117 -0
- include/hgraph/lib/std/operators/container.h +57 -0
- include/hgraph/lib/std/operators/control.h +279 -0
- include/hgraph/lib/std/operators/conversion.h +107 -0
- include/hgraph/lib/std/operators/convert_target.h +22 -0
- include/hgraph/lib/std/operators/higher_order.h +275 -0
- include/hgraph/lib/std/operators/impl/arithmetic_impl.h +1064 -0
- include/hgraph/lib/std/operators/impl/collection_impl.h +3675 -0
- include/hgraph/lib/std/operators/impl/comparison_impl.h +331 -0
- include/hgraph/lib/std/operators/impl/container_impl.h +884 -0
- include/hgraph/lib/std/operators/impl/control_impl.h +673 -0
- include/hgraph/lib/std/operators/impl/conversion_impl.h +2328 -0
- include/hgraph/lib/std/operators/impl/higher_order_impl.h +2314 -0
- include/hgraph/lib/std/operators/impl/io_impl.h +72 -0
- include/hgraph/lib/std/operators/impl/json_impl.h +477 -0
- include/hgraph/lib/std/operators/impl/logical_impl.h +27 -0
- include/hgraph/lib/std/operators/impl/operators_impl.h +35 -0
- include/hgraph/lib/std/operators/impl/record_replay_frame_impl.h +303 -0
- include/hgraph/lib/std/operators/impl/reduce_layout.h +70 -0
- include/hgraph/lib/std/operators/impl/series_impl.h +246 -0
- include/hgraph/lib/std/operators/impl/stream_impl.h +754 -0
- include/hgraph/lib/std/operators/impl/string_impl.h +563 -0
- include/hgraph/lib/std/operators/impl/table_impl.h +114 -0
- include/hgraph/lib/std/operators/impl/temporal_impl.h +345 -0
- include/hgraph/lib/std/operators/impl/tsb_itemwise_impl.h +216 -0
- include/hgraph/lib/std/operators/impl/tsl_itemwise_impl.h +161 -0
- include/hgraph/lib/std/operators/io.h +74 -0
- include/hgraph/lib/std/operators/json.h +86 -0
- include/hgraph/lib/std/operators/logical.h +63 -0
- include/hgraph/lib/std/operators/operators.h +33 -0
- include/hgraph/lib/std/operators/registration.h +15 -0
- include/hgraph/lib/std/operators/stream.h +138 -0
- include/hgraph/lib/std/operators/string.h +56 -0
- include/hgraph/lib/std/operators/syntax.h +255 -0
- include/hgraph/lib/std/operators/table.h +39 -0
- include/hgraph/lib/std/operators/temporal.h +101 -0
- include/hgraph/lib/std/standard_types.h +207 -0
- include/hgraph/lib/std/std_nodes.h +39 -0
- include/hgraph/lib/std/std_operators.h +25 -0
- include/hgraph/lib/std/value_util.h +148 -0
- include/hgraph/lib/testing/check_output.h +197 -0
- include/hgraph/lib/testing/eval_node.h +853 -0
- include/hgraph/lib/testing/mock_runtime.h +253 -0
- include/hgraph/lib/testing/record_replay.h +345 -0
- include/hgraph/lib/testing/runtime_support.h +245 -0
- include/hgraph/python/bridge_state.h +58 -0
- include/hgraph/python/chrono.h +300 -0
- include/hgraph/runtime/context_node.h +56 -0
- include/hgraph/runtime/evaluation_clock.h +145 -0
- include/hgraph/runtime/executor.h +179 -0
- include/hgraph/runtime/feedback_node.h +29 -0
- include/hgraph/runtime/global_state.h +137 -0
- include/hgraph/runtime/graph.h +388 -0
- include/hgraph/runtime/lifecycle_observer.h +252 -0
- include/hgraph/runtime/logger.h +136 -0
- include/hgraph/runtime/map_node.h +103 -0
- include/hgraph/runtime/mesh_node.h +110 -0
- include/hgraph/runtime/nested_bindings.h +186 -0
- include/hgraph/runtime/nested_graph_node.h +147 -0
- include/hgraph/runtime/node.h +402 -0
- include/hgraph/runtime/node_error.h +57 -0
- include/hgraph/runtime/node_fwd.h +16 -0
- include/hgraph/runtime/node_scheduler.h +305 -0
- include/hgraph/runtime/push_source_node.h +138 -0
- include/hgraph/runtime/race_tsd_node.h +24 -0
- include/hgraph/runtime/reduce_node.h +61 -0
- include/hgraph/runtime/runtime.h +18 -0
- include/hgraph/runtime/service_node.h +70 -0
- include/hgraph/runtime/shared_output_node.h +46 -0
- include/hgraph/runtime/switch_node.h +74 -0
- include/hgraph/runtime/try_except_node.h +28 -0
- include/hgraph/types/adaptor_wiring.h +628 -0
- include/hgraph/types/call_args.h +559 -0
- include/hgraph/types/context_wiring.h +65 -0
- include/hgraph/types/frame.h +115 -0
- include/hgraph/types/graph_wiring.h +2899 -0
- include/hgraph/types/lift.h +537 -0
- include/hgraph/types/metadata/ts_data_plan_factory.h +92 -0
- include/hgraph/types/metadata/ts_data_plan_factory_detail.h +70 -0
- include/hgraph/types/metadata/ts_value_type_meta_data.h +395 -0
- include/hgraph/types/metadata/type_binding.h +165 -0
- include/hgraph/types/metadata/type_meta_data.h +64 -0
- include/hgraph/types/metadata/type_registry.h +574 -0
- include/hgraph/types/metadata/value_plan_factory.h +123 -0
- include/hgraph/types/metadata/value_type_meta_data.h +312 -0
- include/hgraph/types/notifiable.h +27 -0
- include/hgraph/types/operator_dispatch.h +1560 -0
- include/hgraph/types/operator_type_resolution.h +375 -0
- include/hgraph/types/primitive_types.h +91 -0
- include/hgraph/types/record_replay.h +216 -0
- include/hgraph/types/registry_reset.h +37 -0
- include/hgraph/types/series.h +111 -0
- include/hgraph/types/service_runtime.h +120 -0
- include/hgraph/types/service_wiring.h +2005 -0
- include/hgraph/types/static_node.h +2522 -0
- include/hgraph/types/static_schema.h +826 -0
- include/hgraph/types/subgraph_wiring.h +684 -0
- include/hgraph/types/time_series/endpoint_owner.h +28 -0
- include/hgraph/types/time_series/endpoint_schema.h +107 -0
- include/hgraph/types/time_series/ts_data/base_view.h +374 -0
- include/hgraph/types/time_series/ts_data/dict_view.h +153 -0
- include/hgraph/types/time_series/ts_data/indexed_view.h +155 -0
- include/hgraph/types/time_series/ts_data/ops.h +307 -0
- include/hgraph/types/time_series/ts_data/proxy.h +172 -0
- include/hgraph/types/time_series/ts_data/set_view.h +119 -0
- include/hgraph/types/time_series/ts_data/storage.h +34 -0
- include/hgraph/types/time_series/ts_data/types.h +420 -0
- include/hgraph/types/time_series/ts_data/window_view.h +119 -0
- include/hgraph/types/time_series/ts_data.h +25 -0
- include/hgraph/types/time_series/ts_delta.h +54 -0
- include/hgraph/types/time_series/ts_input/base_view.h +210 -0
- include/hgraph/types/time_series/ts_input/bundle_view.h +67 -0
- include/hgraph/types/time_series/ts_input/detail.h +113 -0
- include/hgraph/types/time_series/ts_input/dict_view.h +54 -0
- include/hgraph/types/time_series/ts_input/list_view.h +46 -0
- include/hgraph/types/time_series/ts_input/set_view.h +42 -0
- include/hgraph/types/time_series/ts_input/target_link.h +130 -0
- include/hgraph/types/time_series/ts_input/typed_view.h +36 -0
- include/hgraph/types/time_series/ts_input/view_common.h +23 -0
- include/hgraph/types/time_series/ts_input/window_view.h +48 -0
- include/hgraph/types/time_series/ts_input.h +167 -0
- include/hgraph/types/time_series/ts_output/alternative.h +121 -0
- include/hgraph/types/time_series/ts_output/base_view.h +166 -0
- include/hgraph/types/time_series/ts_output/bundle_view.h +54 -0
- include/hgraph/types/time_series/ts_output/dict_view.h +64 -0
- include/hgraph/types/time_series/ts_output/list_view.h +41 -0
- include/hgraph/types/time_series/ts_output/mutation_view.h +58 -0
- include/hgraph/types/time_series/ts_output/set_view.h +44 -0
- include/hgraph/types/time_series/ts_output/typed_view.h +37 -0
- include/hgraph/types/time_series/ts_output/view_common.h +35 -0
- include/hgraph/types/time_series/ts_output/window_view.h +50 -0
- include/hgraph/types/time_series/ts_output.h +107 -0
- include/hgraph/types/time_series/typed_view.h +38 -0
- include/hgraph/types/time_series_reference.h +190 -0
- include/hgraph/types/type_pattern.h +603 -0
- include/hgraph/types/type_resolution.h +652 -0
- include/hgraph/types/utils/intern_table.h +109 -0
- include/hgraph/types/utils/key_slot_store.h +644 -0
- include/hgraph/types/utils/memory_utils.h +1756 -0
- include/hgraph/types/utils/slot_observer.h +208 -0
- include/hgraph/types/utils/stable_slot_storage.h +249 -0
- include/hgraph/types/utils/value_slot_store.h +484 -0
- include/hgraph/types/value/any_ops.h +34 -0
- include/hgraph/types/value/compact_container_ops.h +1254 -0
- include/hgraph/types/value/compact_storage.h +1258 -0
- include/hgraph/types/value/container_ops.h +214 -0
- include/hgraph/types/value/json_codec.h +97 -0
- include/hgraph/types/value/mutable_container_ops.h +1254 -0
- include/hgraph/types/value/specialized_views.h +1168 -0
- include/hgraph/types/value/table_codec.h +123 -0
- include/hgraph/types/value/value.h +317 -0
- include/hgraph/types/value/value_builder.h +828 -0
- include/hgraph/types/value/value_ops.h +644 -0
- include/hgraph/types/value/value_range.h +179 -0
- include/hgraph/types/value/value_view.h +391 -0
- include/hgraph/types/wired_fn.h +579 -0
- include/hgraph/util/date_time.h +153 -0
- include/hgraph/util/scope.h +211 -0
- include/hgraph/util/tagged_ptr.h +604 -0
- include/hgraph/version.h +18 -0
- include/third_party/ankerl/stl.h +83 -0
- include/third_party/ankerl/unordered_dense.h +2239 -0
- include/third_party/sul/dynamic_bitset.hpp +3360 -0
- lib/cmake/hgraph/hgraphConfig.cmake +18 -0
- lib/cmake/hgraph/hgraphConfigVersion.cmake +65 -0
- lib/cmake/hgraph/hgraphTargets-release.cmake +39 -0
- lib/cmake/hgraph/hgraphTargets.cmake +138 -0
- lib/hgraph_runtime.lib +0 -0
- lib/hgraph_stdlib.lib +0 -0
- lib/hgraph_wiring.lib +0 -0
- msvcp140-f22b3317cfb3fad7db3a18f8f234f32b.dll +0 -0
- msvcp140_atomic_wait-a67379821634a4f3a32730b57a436c71.dll +0 -0
- share/hgraph/debugger/README.md +64 -0
- share/hgraph/debugger/hgraph_gdb.py +768 -0
- share/hgraph/debugger/hgraph_lldb.py +855 -0
_hgraph.pyd
ADDED
|
Binary file
|
arrow.dll
ADDED
|
Binary file
|
arrow_compute.dll
ADDED
|
Binary file
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: hg_cpp
|
|
3
|
+
Version: 0.3.0
|
|
4
|
+
Summary: Preview distribution of the C++ first hgraph runtime and Python compatibility bridge
|
|
5
|
+
Keywords: reactive,graph,forward propagating graph,time series,functional reactive programming,c++
|
|
6
|
+
Author-Email: Howard Henson <howard@henson.me.uk>
|
|
7
|
+
License: MIT
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: C++
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
15
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
16
|
+
Project-URL: Homepage, https://github.com/hhenson/hg_cpp
|
|
17
|
+
Project-URL: Repository, https://github.com/hhenson/hg_cpp.git
|
|
18
|
+
Requires-Python: >=3.12
|
|
19
|
+
Requires-Dist: numpy>=2.0
|
|
20
|
+
Requires-Dist: pyarrow<25,>=24
|
|
21
|
+
Provides-Extra: python
|
|
22
|
+
Requires-Dist: nanobind>=2.12; extra == "python"
|
|
23
|
+
Provides-Extra: test
|
|
24
|
+
Requires-Dist: frozendict>=2.4; extra == "test"
|
|
25
|
+
Requires-Dist: pytest>=8; extra == "test"
|
|
26
|
+
Requires-Dist: trove-classifiers; extra == "test"
|
|
27
|
+
Provides-Extra: docs
|
|
28
|
+
Requires-Dist: sphinx>=7.4; extra == "docs"
|
|
29
|
+
Requires-Dist: sphinx-rtd-theme>=2.0; extra == "docs"
|
|
30
|
+
Requires-Dist: myst-parser>=2.0; extra == "docs"
|
|
31
|
+
Requires-Dist: sphinxcontrib-mermaid>=1.0; extra == "docs"
|
|
32
|
+
Provides-Extra: dev
|
|
33
|
+
Requires-Dist: cmake>=3.26; extra == "dev"
|
|
34
|
+
Requires-Dist: ninja; extra == "dev"
|
|
35
|
+
Requires-Dist: nanobind>=2.12; extra == "dev"
|
|
36
|
+
Requires-Dist: pytest>=8; extra == "dev"
|
|
37
|
+
Requires-Dist: sphinx>=7.4; extra == "dev"
|
|
38
|
+
Requires-Dist: sphinx-rtd-theme>=2.0; extra == "dev"
|
|
39
|
+
Requires-Dist: myst-parser>=2.0; extra == "dev"
|
|
40
|
+
Requires-Dist: sphinxcontrib-mermaid>=1.0; extra == "dev"
|
|
41
|
+
Requires-Dist: scikit-build-core>=0.12; extra == "dev"
|
|
42
|
+
Requires-Dist: trove-classifiers; extra == "dev"
|
|
43
|
+
Description-Content-Type: text/markdown
|
|
44
|
+
|
|
45
|
+
# hg_cpp
|
|
46
|
+
|
|
47
|
+
A clean-slate, **C++-first** implementation of the
|
|
48
|
+
[hgraph](https://github.com/hgraph-io/hgraph) functional-reactive time-series
|
|
49
|
+
runtime. The C++ runtime is the source of truth. Python provides wiring
|
|
50
|
+
compatibility and supports Python-authored nodes running inside that runtime.
|
|
51
|
+
|
|
52
|
+
## Python preview
|
|
53
|
+
|
|
54
|
+
Preview builds are published under the `hg_cpp` distribution name:
|
|
55
|
+
|
|
56
|
+
```sh
|
|
57
|
+
python -m pip install hg_cpp
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
The distribution exposes the `hgraph` import package and the native `_hgraph`
|
|
61
|
+
extension. Install it in an isolated environment rather than alongside the
|
|
62
|
+
main `hgraph` distribution, since both provide the same Python import namespace.
|
|
63
|
+
One platform wheel supports CPython 3.12 and later through the CPython stable
|
|
64
|
+
ABI.
|
|
65
|
+
|
|
66
|
+
## Build & test
|
|
67
|
+
|
|
68
|
+
```sh
|
|
69
|
+
cmake -S . -B build # configure (fmt + Catch2 fetched if absent)
|
|
70
|
+
cmake --build build -j # build hgraph_core + tests
|
|
71
|
+
ctest --test-dir build --output-on-failure
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Requires a C++23 compiler and CMake >= 3.25. Python/nanobind are **not** needed
|
|
75
|
+
for the default build (bindings are opt-in via `-DHGRAPH_BUILD_PYTHON_BINDINGS=ON`).
|
|
76
|
+
|
|
77
|
+
## Documentation
|
|
78
|
+
|
|
79
|
+
Sphinx docs live under `docs/source` (`pip install -r docs/requirements.txt`,
|
|
80
|
+
then `sphinx-build -W -b html docs/source docs/_build/html`):
|
|
81
|
+
|
|
82
|
+
- **User guide** — start at `docs/source/user_guide/quick_start.rst`, then the
|
|
83
|
+
authoring/testing guides for nodes, graphs, and the `eval_node` harness.
|
|
84
|
+
- **Developer guide** — the authoritative design records
|
|
85
|
+
(`docs/source/developer_guide/`): architecture, data structures,
|
|
86
|
+
wiring, nested graphs, mesh, services, error handling, operators, roadmap.
|
|
87
|
+
|
|
88
|
+
## Contributing / AI sessions
|
|
89
|
+
|
|
90
|
+
- [`AGENTS.md`](AGENTS.md) — canonical project direction: goals, build
|
|
91
|
+
philosophy, source layout, dependency policy, git hygiene.
|
|
92
|
+
- [`CLAUDE.md`](CLAUDE.md) — the operational working guide: the enforced
|
|
93
|
+
design-first workflow (docs change in the same commit as code), guardrails,
|
|
94
|
+
architecture map, and current state.
|
|
95
|
+
- Reference trees under `ext/` are read-only: `ext/main` is the canonical
|
|
96
|
+
Python `hgraph` reference; `ext/2603` / `ext/2604` are earlier C++ snapshots.
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
_hgraph.pyd,sha256=yO-BdbPUyu0yD_7bLfUblIAMptj3ujiTeu9GMUECaCE,9495040
|
|
2
|
+
arrow.dll,sha256=uaIqVsLkwI5rE5JLZVUlMQdfZZEWc34KIkKySWx4iyQ,22129664
|
|
3
|
+
arrow_compute.dll,sha256=nqwM0jNzLgQb6afosuOIY56civG7z77y7KR09PDOR-8,9502208
|
|
4
|
+
hgraph/__init__.py,sha256=l62W-RoRkuPONOCE7RPv1RgHwyvhSWfaiZ78s5bW13M,3833
|
|
5
|
+
hgraph/_compat.py,sha256=7BFPjAqnEp5EPZv7h7hE-zoaTHmxzCiQfIe5RJt55sE,2803
|
|
6
|
+
hgraph/_operators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
hgraph/_operators/_stream.py,sha256=fNAsHGatOBLFFZqEcq5lPgzk80AXlER4wxQB_iSoDVo,206
|
|
8
|
+
hgraph/_runtime.py,sha256=1NHMqU63rSoGacmja_vaMjOB4q500YeviSJuYz_xwxA,79644
|
|
9
|
+
hgraph/_types.py,sha256=2YZ_afQnpxh51PiMZbRtloanf7DpMEqdh8Y57QRZFrg,27005
|
|
10
|
+
hgraph/arrow.py,sha256=W_MjRnAzbVDE1CKeOcZFapZbGB3sjJ7hGf3jDODPgMk,4544
|
|
11
|
+
hgraph/nodes.py,sha256=RlRdh7EgTPW4JzkxLS2gLmimgqjDSGcq8jkoIRvDhAg,2980
|
|
12
|
+
hgraph/test/__init__.py,sha256=WvfKWmcp5n8kOjDZSrtG5PRxA71_LK431A_g7wrIF1c,139
|
|
13
|
+
include/hgraph/config.h,sha256=HDuiGit7s1dDB4ZW0Y7L05N6qlyzpOp40ds2pN9U_nY,577
|
|
14
|
+
include/hgraph/hgraph.h,sha256=R6cplvkyNdXJQBRWylhBnCi-FCI8Xw3w1O_xkcwEXeM,507
|
|
15
|
+
include/hgraph/hgraph_export.h,sha256=-e64VX2wfHL6R9iHCVEBnhf0p5JmjVmmGfRHhmjCjps,695
|
|
16
|
+
include/hgraph/lib/std/component.h,sha256=2HK9GC1xuLF9GrYyirtLIJiEN313JpRH_wOOc7Q2IEg,8749
|
|
17
|
+
include/hgraph/lib/std/lifted_kernels.h,sha256=W_fu6I91uqPkx9lmvUhnTMv5pjr7DJ_EIu2nZh35M5c,20870
|
|
18
|
+
include/hgraph/lib/std/operators/arithmetic.h,sha256=KFkylyjTPlSO5cRzbm4Q4uL94mGRcKNQFHceKBW2QkA,5536
|
|
19
|
+
include/hgraph/lib/std/operators/collection.h,sha256=vLBdX3JW76K6O22aDtDXrhk5OHM4O7anx51nnt3h6aw,16111
|
|
20
|
+
include/hgraph/lib/std/operators/comparison.h,sha256=K18XZQPvDJcO8Ro9VZnrDuvnZ8z9q1sOpfj89cAlovY,3968
|
|
21
|
+
include/hgraph/lib/std/operators/container.h,sha256=W0mXy8952WuwIw4Lv5TeebagmhawdYJHTS9n4r1wuzY,2315
|
|
22
|
+
include/hgraph/lib/std/operators/control.h,sha256=XRkSF2za1zCrtjL3pr6Z_s0aaqNnUeUVIKlO07K-m4Y,10400
|
|
23
|
+
include/hgraph/lib/std/operators/conversion.h,sha256=gtxrI7bUlPhpZ-qmk7eaQ7tg57YQk-fto6rHbPmbph0,4502
|
|
24
|
+
include/hgraph/lib/std/operators/convert_target.h,sha256=cIDWnPCu1rUnzR_rP9uT7E-dYLPtHIy2Mh9NVUqZtlk,762
|
|
25
|
+
include/hgraph/lib/std/operators/higher_order.h,sha256=isinVnm9Ds11iQq2SNQlSgD2C4uRbJA8dSNqiSBw85w,12211
|
|
26
|
+
include/hgraph/lib/std/operators/impl/arithmetic_impl.h,sha256=kKvYr-aCqoo_dS9Jcg3u4rhWKgTGVixLoqXFEpV2k2M,46600
|
|
27
|
+
include/hgraph/lib/std/operators/impl/collection_impl.h,sha256=qeVBZmrt8ivt9Beij4dSOCd3Ome2G3EZGOeor9DEJQY,174390
|
|
28
|
+
include/hgraph/lib/std/operators/impl/comparison_impl.h,sha256=-IsD8VlrvrLytQp7uUVKJfZ3YCQ-ZAhQj2ow15jPG3M,13771
|
|
29
|
+
include/hgraph/lib/std/operators/impl/container_impl.h,sha256=AUFbz_VE9o19lfouIZIDs9EWGwqnRC6T7r1XeBQ2pAc,40725
|
|
30
|
+
include/hgraph/lib/std/operators/impl/control_impl.h,sha256=KpukWRKDCigHh5YYNTmhJUCK3HZB0-OjWp5wNBY80jQ,28250
|
|
31
|
+
include/hgraph/lib/std/operators/impl/conversion_impl.h,sha256=n7Yw2r8DKLJXpNmK3TFh_CfuOdRRcDvr_4L1T0ABBVI,106567
|
|
32
|
+
include/hgraph/lib/std/operators/impl/higher_order_impl.h,sha256=DsOBdlmrcHxwRA9ihJHYfjak025EoLjceiU68S99yZY,114552
|
|
33
|
+
include/hgraph/lib/std/operators/impl/io_impl.h,sha256=1eQPSCUtjOlqS4pxbSWn02p0RJf6AG1fEPD5VPtc2RI,2945
|
|
34
|
+
include/hgraph/lib/std/operators/impl/json_impl.h,sha256=kJ5m7Q24uoqXfntVPkwgqpB9IRjvKu6TbDJOcI4oToc,19193
|
|
35
|
+
include/hgraph/lib/std/operators/impl/logical_impl.h,sha256=tnDQMcqUscD5_Np6gjiiJlt5siv4ZST80_Guno0iyJg,1097
|
|
36
|
+
include/hgraph/lib/std/operators/impl/operators_impl.h,sha256=TPI38utJZwygOuaUDLhwJDTeMkPhVB2qFfPf6Utnduo,1896
|
|
37
|
+
include/hgraph/lib/std/operators/impl/record_replay_frame_impl.h,sha256=eS9mB7Mb03qDiA1esTyZJNUhjCXVt7Lw5peGFWc954g,13495
|
|
38
|
+
include/hgraph/lib/std/operators/impl/reduce_layout.h,sha256=Jzt63UhXil3vMr4IPfVizRDJtTPPr8Mro6fgR8MIqVs,2580
|
|
39
|
+
include/hgraph/lib/std/operators/impl/series_impl.h,sha256=48D1vtGy6E6gpHYptD1pjnIeNXhKzhH4LeU0Gs-8-ho,11927
|
|
40
|
+
include/hgraph/lib/std/operators/impl/stream_impl.h,sha256=W-9HG8u3uPHE1VphoaSXJTadq3x33RSKiVxRs_cb7PU,31023
|
|
41
|
+
include/hgraph/lib/std/operators/impl/string_impl.h,sha256=L4Wg9vcfGL4ixbTl6yx5aDq0ZvgINtTcdirrwNN3l4Y,23814
|
|
42
|
+
include/hgraph/lib/std/operators/impl/table_impl.h,sha256=nS1CU264XIHX1Q4XHiWC3cuvI5vuoUgaJ2k3ielqhtw,4853
|
|
43
|
+
include/hgraph/lib/std/operators/impl/temporal_impl.h,sha256=6WMJQsbX1fpdj4DuvJ9XvvvYy14emHuY_3cGZ-UronY,13345
|
|
44
|
+
include/hgraph/lib/std/operators/impl/tsb_itemwise_impl.h,sha256=eJSkQ5GYj8TTiN2IvrBCXoeJ_isDrW_SpBL8zjxmHRM,9808
|
|
45
|
+
include/hgraph/lib/std/operators/impl/tsl_itemwise_impl.h,sha256=d3kW9IEeJ7XmeGcRUidcq2V5cZV0-53E-403eFKOfm0,5710
|
|
46
|
+
include/hgraph/lib/std/operators/io.h,sha256=KsYrCMiTyp_KLiN45hpr9GTyXTP_P6DdolV0Ko0NDgo,2992
|
|
47
|
+
include/hgraph/lib/std/operators/json.h,sha256=ShEj7BQMNFTnKErJumYSU8PrXrIx382M2ZFFQwJJYuY,2830
|
|
48
|
+
include/hgraph/lib/std/operators/logical.h,sha256=fSK5JxRQsZTUpaCU8Pynb1L1uzSrg3sh9N5alkHEkuQ,2284
|
|
49
|
+
include/hgraph/lib/std/operators/operators.h,sha256=PvFADmW8rFAIGmhngqCP8EjukcNz_2HyZ0d7ex1l050,1529
|
|
50
|
+
include/hgraph/lib/std/operators/registration.h,sha256=-dI95VTYtqFgWSdnG-uh5wwnsDucVE0Y3bxj9Hc3Jlg,477
|
|
51
|
+
include/hgraph/lib/std/operators/stream.h,sha256=w0OjkOg17jxX-L1jSdaofhSIpOEBDBsQFt38fd1j0rc,5693
|
|
52
|
+
include/hgraph/lib/std/operators/string.h,sha256=5nkbe0YfslLUgx9Y2rNo-gcx9tp1h3BF8GTxFhPXexY,2207
|
|
53
|
+
include/hgraph/lib/std/operators/syntax.h,sha256=GRPb2qYmb2OhHQavHSDxx2Ahv5bhLP-lkTl77SORIlo,7722
|
|
54
|
+
include/hgraph/lib/std/operators/table.h,sha256=pY-7EHdERBT1oiScufHaESgUXKdAtuGLldk6Qaq58Go,1568
|
|
55
|
+
include/hgraph/lib/std/operators/temporal.h,sha256=OqrsLZbNPPnSUBcAzA8NX8D02SXw3lxQdPd7A_d4RfU,3504
|
|
56
|
+
include/hgraph/lib/std/standard_types.h,sha256=jTejn_cwYyl4usOxy-01JFTLnriHKGw-kjkG30wi7tk,11455
|
|
57
|
+
include/hgraph/lib/std/std_nodes.h,sha256=wfElAvxBhWTTk1Wd_ZRBOwlhBIAfF5i6p7Vhn-BH7q4,1399
|
|
58
|
+
include/hgraph/lib/std/std_operators.h,sha256=3nwOHlw-XUyWDL2b6TsKz-zQsUhbTZD9HRcoeLY9u5Q,1078
|
|
59
|
+
include/hgraph/lib/std/value_util.h,sha256=2XUMzX5kXmwUA6EQxb5dilXK3KVdFewwBh-YffAaSf0,5650
|
|
60
|
+
include/hgraph/lib/testing/check_output.h,sha256=d2hJRNa7DbCy089JcMLjMuWm04lyIrGZI09105F13z4,9944
|
|
61
|
+
include/hgraph/lib/testing/eval_node.h,sha256=rnVta3tIWz_AAVRacfs4BWuLdI1Fw7z99oODzWYCE4M,42944
|
|
62
|
+
include/hgraph/lib/testing/mock_runtime.h,sha256=ANMH3A0bdZCp-zJ2p3pyJ_-qPicJelTGluC3yaIFV5U,9834
|
|
63
|
+
include/hgraph/lib/testing/record_replay.h,sha256=cxY_ugoWPoj3Fb9LyjzPaoOeKnhWfwglz4hpkB40vY8,16040
|
|
64
|
+
include/hgraph/lib/testing/runtime_support.h,sha256=6M8DBbbqfpCIJDR6MsU8oxkL36o06fXrHQU1j_XQmf4,9694
|
|
65
|
+
include/hgraph/python/bridge_state.h,sha256=7jV1mMaIUgDKGxsQaUSaVbQ0dIKRIp8OxkHc1F6AmU4,1865
|
|
66
|
+
include/hgraph/python/chrono.h,sha256=6mPxhw4YfoIIX7sGqVnFvrPP0WcHQiQ7S99sAYPAEOE,11280
|
|
67
|
+
include/hgraph/runtime/context_node.h,sha256=uru36kJfQO4-djVh5kWTr25qvutsK03nBitnNSk1HIE,2393
|
|
68
|
+
include/hgraph/runtime/evaluation_clock.h,sha256=On2Zc1ewDQ9f-MpbW62d7i6Zf9i6L3hEO8ZPvdNbabQ,5362
|
|
69
|
+
include/hgraph/runtime/executor.h,sha256=jSocckcyTr7BBzNaqjaQpVpbYwfhfuKBsES0dSKbnxk,7999
|
|
70
|
+
include/hgraph/runtime/feedback_node.h,sha256=-dA4WEdccZFzxkbjJu3jh5GaQa9lR8pX9JCI6ZqtkYM,1006
|
|
71
|
+
include/hgraph/runtime/global_state.h,sha256=vdM6hJLNcW8nckclRjcwuR5Yd-8bAoPp4tHqXDrcptk,5730
|
|
72
|
+
include/hgraph/runtime/graph.h,sha256=xDn9zI0b-G1vFHAEISF4D_yfMF8oSaF-4YL0d3VlAEQ,17796
|
|
73
|
+
include/hgraph/runtime/lifecycle_observer.h,sha256=4eP3f8r6zrbiIbfTmtGp-a_vKV8JnGXYv0KjApmB1Ts,10298
|
|
74
|
+
include/hgraph/runtime/logger.h,sha256=62arm6Al_d_xzPYonYlLs1O1baQHyoxiBVUKpyRjT7Y,5290
|
|
75
|
+
include/hgraph/runtime/map_node.h,sha256=OP0HWYssdVU90uiCOASmh7ABoO0IUfyVfgNV8NanVFc,4671
|
|
76
|
+
include/hgraph/runtime/mesh_node.h,sha256=tpeE3HVUUORIWEsGTtj_ePQ-tWZ26OT733mhkOroUdU,5027
|
|
77
|
+
include/hgraph/runtime/nested_bindings.h,sha256=XB8y3PToB6w3TuU1AOUe6WR8RZisrMdZw70Gswh-24M,7294
|
|
78
|
+
include/hgraph/runtime/nested_graph_node.h,sha256=lFR13kefcRTvd5lvLgczgdBpoMcHbCK6Ut4VKiqQbP4,6282
|
|
79
|
+
include/hgraph/runtime/node.h,sha256=9zR27nd3IujRmpKGSFKmQBn1F1CI01utvJXs3O9z7ew,18910
|
|
80
|
+
include/hgraph/runtime/node_error.h,sha256=J-KjVsHSZhRYIrLUuvN6cwH92CN6XcYaHOm4PHDk0EA,2020
|
|
81
|
+
include/hgraph/runtime/node_fwd.h,sha256=r1THVUT075fZE-FHib2uc5PD-WNgxuuRx9G7k-tlsLc,422
|
|
82
|
+
include/hgraph/runtime/node_scheduler.h,sha256=w0LCanz_ypfOvXmSAXRIPSyz9f6uDqntsF8lP-avUb4,13286
|
|
83
|
+
include/hgraph/runtime/push_source_node.h,sha256=PdFlSM2VNoTxxM8Kkm9cX5I_bpJiYGaQQ5y1BiP_QrM,4639
|
|
84
|
+
include/hgraph/runtime/race_tsd_node.h,sha256=kW0TRfkrtNwVflKfLxWd78vKy6koJ1FuJkyQZZkQ_hc,1021
|
|
85
|
+
include/hgraph/runtime/reduce_node.h,sha256=VTrrtfumZnXd11oIhuOThCJkrRvCbUdBLtoRLpOECHg,2603
|
|
86
|
+
include/hgraph/runtime/runtime.h,sha256=ndsk6EU4BIX7rLoLSM3ZpVSkf6RL1-2faTUjeYo2NNQ,655
|
|
87
|
+
include/hgraph/runtime/service_node.h,sha256=wduepbvKBdmH7e9HaV-54ZbGm4g43Xusql7a844_qRk,2951
|
|
88
|
+
include/hgraph/runtime/shared_output_node.h,sha256=KyCDtrgy87IAJJ5mpRDSx7oyys_NDmSTsKTy643puvU,1777
|
|
89
|
+
include/hgraph/runtime/switch_node.h,sha256=DXyCEtu8UyR9S1dwFyuwwY7tr5D8fuZ0lGIzh5jeWZg,3147
|
|
90
|
+
include/hgraph/runtime/try_except_node.h,sha256=HkLJJFSJU-v5aiIvZsyIt2mQnU6UfDTyZG9vhT_g810,1264
|
|
91
|
+
include/hgraph/types/adaptor_wiring.h,sha256=q-JkRSGlpZ3jCD2lZofRzvs7KGDFeT0mpEo4L8GTbI0,26818
|
|
92
|
+
include/hgraph/types/call_args.h,sha256=jEMaWs_HFnLIls8J9h8Q5hpWTK4j32DetaUkBp0SeeE,24129
|
|
93
|
+
include/hgraph/types/context_wiring.h,sha256=jubEilAG6et_LJfB9koyrI7T90KXPZ_iThi477J7DcM,2497
|
|
94
|
+
include/hgraph/types/frame.h,sha256=rX32W9iRG0VOE7Inw0-D9AWq-W6KaG1FiMljvR549oQ,4061
|
|
95
|
+
include/hgraph/types/graph_wiring.h,sha256=7nlqYACIQSaSZtyL5KmNh6bj_w4F5wGnpPos9-meejA,141977
|
|
96
|
+
include/hgraph/types/lift.h,sha256=M5EmiqrKTt-ffghcwsm7r1zSsai2pukhIOlDhlbfkAg,20060
|
|
97
|
+
include/hgraph/types/metadata/ts_data_plan_factory.h,sha256=_b0TTYpTbLIZYcBnibv8l_ilTRzIvLz3tQOrvNRXfdI,4373
|
|
98
|
+
include/hgraph/types/metadata/ts_data_plan_factory_detail.h,sha256=FIap9aZG5msUxeIx6v0c8T9NhnUKQ4HM9QFBbg2paaw,4695
|
|
99
|
+
include/hgraph/types/metadata/ts_value_type_meta_data.h,sha256=CXb3H20CPacdOP1QFrkMPdAcXIg33bBLkaDsX5vZW_c,15949
|
|
100
|
+
include/hgraph/types/metadata/type_binding.h,sha256=VAu1ztb0cGuVMEAwVsrk6Xq1ifVl1lgOhuZbMhlGISo,7436
|
|
101
|
+
include/hgraph/types/metadata/type_meta_data.h,sha256=SGOHa8LhZvp4sFlJaFC4S6goNUwxnTVJ2bWDrYx5JM0,2378
|
|
102
|
+
include/hgraph/types/metadata/type_registry.h,sha256=u7szeOb_8qH22iCgYS0C2RBtB1CFfF5MZJQAPdT5pq0,28873
|
|
103
|
+
include/hgraph/types/metadata/value_plan_factory.h,sha256=8ayYvRzwODTxZgBeaTQnHl5bPXbNpMqKgVpnRgxn6Ro,5694
|
|
104
|
+
include/hgraph/types/metadata/value_type_meta_data.h,sha256=9f7-0jysn6qqyw99NgdRvBbSA_7jXOwyTbEY8mDyrJo,13198
|
|
105
|
+
include/hgraph/types/notifiable.h,sha256=ZKX6J560qt_X8YJOSxnistq2h1dq2NV_9nE4LANQcXM,883
|
|
106
|
+
include/hgraph/types/operator_dispatch.h,sha256=ztxZZqVahAWjYaEfn7aeR_9KBOU08w2gZaLiPK-WmUs,73918
|
|
107
|
+
include/hgraph/types/operator_type_resolution.h,sha256=XTQxDrwQZmSudSDFtgYMK-W_cqf2F7frFWfEWI_b3lQ,17314
|
|
108
|
+
include/hgraph/types/primitive_types.h,sha256=snrJt97Sj50i95Ywld7wmIxwZ3XyZMf9UxFysz9lny0,2779
|
|
109
|
+
include/hgraph/types/record_replay.h,sha256=tQdf_Ttv7ywWmB_XDT-Ivnu8uDhyugS3E2SBwDVjRsE,9495
|
|
110
|
+
include/hgraph/types/registry_reset.h,sha256=CrM5M2hKfo630RwCSTiYybpKG--Y4NODGE-n79C8bIU,1751
|
|
111
|
+
include/hgraph/types/series.h,sha256=eX_qgpYs5PW1v3PNtt-XzbaRmKZzmOfb0oAPbXhUfWk,3753
|
|
112
|
+
include/hgraph/types/service_runtime.h,sha256=QqNiPIeawE2czVWOeDuRQqxMygdmQ6SKG7lEdXSyRMI,6943
|
|
113
|
+
include/hgraph/types/service_wiring.h,sha256=pAbv_2VQ-1LcKeHJiY_D5i-qtDOgZReP3xwA1dTv9VI,91241
|
|
114
|
+
include/hgraph/types/static_node.h,sha256=IlwmzrIBJlvXb1rEqeuFONdikeDwXGhVbFL-VdcAW30,116293
|
|
115
|
+
include/hgraph/types/static_schema.h,sha256=aGd-T-a4evl0oQNwad1-LPXFoZDzNoXDv_nOczbbft8,29386
|
|
116
|
+
include/hgraph/types/subgraph_wiring.h,sha256=ust1GIR-mkTqh0DYTeXkrZoAa0aUtcLasASQ3CJTIB8,34586
|
|
117
|
+
include/hgraph/types/time_series/endpoint_owner.h,sha256=lMjec-B9oWe_xZymvjttkCBPwfNdcAvp00ETY6jOL88,929
|
|
118
|
+
include/hgraph/types/time_series/endpoint_schema.h,sha256=77F1DMC5_stAQfCiJllQkYfR2WPBL8JBcudlxeQQxwc,4608
|
|
119
|
+
include/hgraph/types/time_series/ts_data/base_view.h,sha256=yS01Yum0gpdXI7UMFXWNGaolrxy0o-3gxkY6yc9xtys,15670
|
|
120
|
+
include/hgraph/types/time_series/ts_data/dict_view.h,sha256=FEigluVt4FD_DWcmUKZ3l2F6cNJBIKIy3qDdT3GLxsU,6855
|
|
121
|
+
include/hgraph/types/time_series/ts_data/indexed_view.h,sha256=RgWVR44JXeWgLI5BLAqWZgoiAWi2eRRlbwzfs92arTg,7995
|
|
122
|
+
include/hgraph/types/time_series/ts_data/ops.h,sha256=h3rMM5byZ3i5Zz4eeB-DJYfq7EKNtqmMXtNmeDfxElk,20852
|
|
123
|
+
include/hgraph/types/time_series/ts_data/proxy.h,sha256=5a7Ck-waBF94_UL8VAdnQSlrIZgyZbQ66DTPjpZhm8I,7930
|
|
124
|
+
include/hgraph/types/time_series/ts_data/set_view.h,sha256=CcGHG2LRcsA3ypIwLBaB_ofL9tYZ8stHWrD6TEaovyk,4983
|
|
125
|
+
include/hgraph/types/time_series/ts_data/storage.h,sha256=DgUk4EbQSqe2x-p8Rguot3cNQtK-RuZ4aDc1XUN99AE,1142
|
|
126
|
+
include/hgraph/types/time_series/ts_data/types.h,sha256=tStlHPHBQtD4a6PWMbvX1tAi4J7QMS-XwGZDt5o6wtg,16677
|
|
127
|
+
include/hgraph/types/time_series/ts_data/window_view.h,sha256=wXUxvW49NCNeeQOehIRPvgFtPb4_thdZU11VH_2HDdA,5292
|
|
128
|
+
include/hgraph/types/time_series/ts_data.h,sha256=6GZSP9VJpWoJqp5JDwl_Qg40oHxMCyJhOfMhoNYNwcQ,1434
|
|
129
|
+
include/hgraph/types/time_series/ts_delta.h,sha256=QU_IwGQ_rySsDlusrsQ0c_Z4n9ViKQBD4U2t_ejkvQw,2612
|
|
130
|
+
include/hgraph/types/time_series/ts_input/base_view.h,sha256=4HVrAFBZhCSsz9wIPebXhqMw5csZwCiLL12CkNyXbkM,9538
|
|
131
|
+
include/hgraph/types/time_series/ts_input/bundle_view.h,sha256=3ZA1jgKxMJAW-IIM88a4jmzBSWI1BRt5eKi215Vg7qM,2892
|
|
132
|
+
include/hgraph/types/time_series/ts_input/detail.h,sha256=N48or9_eWFUFkzCjP2IkgCaJA2mePHIpANpx-cANIkc,4851
|
|
133
|
+
include/hgraph/types/time_series/ts_input/dict_view.h,sha256=TnY9GJ0X5c-6RenyKB4mA8jd59h_EHJcJaVNvilLgEU,2546
|
|
134
|
+
include/hgraph/types/time_series/ts_input/list_view.h,sha256=mqMqG8WZIW1ouceCoPjxc7JqMC9_LNUwx9KdbBiQrxE,1737
|
|
135
|
+
include/hgraph/types/time_series/ts_input/set_view.h,sha256=OBc91P9nyLrI0GumREdvjkJmxOOcA5F7cR-VvhkdLh4,1657
|
|
136
|
+
include/hgraph/types/time_series/ts_input/target_link.h,sha256=K_jJftMRpM1u0eak-3hePLiEVt76A2FkXhes9SNMIu8,6510
|
|
137
|
+
include/hgraph/types/time_series/ts_input/typed_view.h,sha256=ZzfJiGktmqBXAMOdEvfcdbI2Li9IW-PcazWgY8sHj0o,1196
|
|
138
|
+
include/hgraph/types/time_series/ts_input/view_common.h,sha256=H1WYRllODur8fTexiBkKgrHHM7CvH-meCqy64GhWKRk,763
|
|
139
|
+
include/hgraph/types/time_series/ts_input/window_view.h,sha256=m_jBZdNbNf4he-2KEsfZoEQ6JT38JOPMbWKJpWkanbw,1938
|
|
140
|
+
include/hgraph/types/time_series/ts_input.h,sha256=dtgEOZRPKy5nGQgM0A5by1i4o516FNcYN7sTsCTy7OM,6553
|
|
141
|
+
include/hgraph/types/time_series/ts_output/alternative.h,sha256=38M1dSHxkLS3dRgDqCDllgyZ3Sx_EBeyKyWQPWKxoRM,5539
|
|
142
|
+
include/hgraph/types/time_series/ts_output/base_view.h,sha256=Z4R2szGFknnytJm1KxkXrgQcrrz2yFzLJ3cNGMVFIrw,6934
|
|
143
|
+
include/hgraph/types/time_series/ts_output/bundle_view.h,sha256=vaKPAhzTET_2dvx5IdDf-sFKaJQ6UgjrvOBQba-mjRU,2385
|
|
144
|
+
include/hgraph/types/time_series/ts_output/dict_view.h,sha256=WjmJNg6rEX2lRi8KrBmAr5UpWzWmzjyfi8l13dOVWUE,3075
|
|
145
|
+
include/hgraph/types/time_series/ts_output/list_view.h,sha256=mRfg0bBbjnY5wGPsSnULiZfauZGZ1jGd5idCdxJlsMs,1591
|
|
146
|
+
include/hgraph/types/time_series/ts_output/mutation_view.h,sha256=hgB8VpjqkIxj2BviUmeHNGRWsPSmE6biMIIgP5bPv4A,2042
|
|
147
|
+
include/hgraph/types/time_series/ts_output/set_view.h,sha256=HPQ4VjDdWzcWYtijVDyXiD0cfQ_RuheBk9hAXOa3ga8,1797
|
|
148
|
+
include/hgraph/types/time_series/ts_output/typed_view.h,sha256=udB9Kai3A-EYZF3JHWhhMruLJU16wbR7RHg4SHKNOEc,1156
|
|
149
|
+
include/hgraph/types/time_series/ts_output/view_common.h,sha256=epb4e216oJjFkLCWCjC311yUpMv8cg13emC994cpfwY,1156
|
|
150
|
+
include/hgraph/types/time_series/ts_output/window_view.h,sha256=uo0uQymu6FEdke9Cd8p4HQR_7SdZ6H7CADib1xmbA84,2078
|
|
151
|
+
include/hgraph/types/time_series/ts_output.h,sha256=uWKaMl5jFTRHiDEnqU1gMi9pQCdV9dDmg0VFkrdQ6Ow,4728
|
|
152
|
+
include/hgraph/types/time_series/typed_view.h,sha256=OQaKR4u3IdAxdUMts7CPP1AXaemUsRRc8UmgQoIahZM,1570
|
|
153
|
+
include/hgraph/types/time_series_reference.h,sha256=PmB2_jU-ABMt-KVpUFB27xtA5I_1uRCGVecgK5oCYyA,8526
|
|
154
|
+
include/hgraph/types/type_pattern.h,sha256=PTQzZHeGUPMlFYI8uuAQIfIntrqO4rU8EKnuFB6DJGU,24246
|
|
155
|
+
include/hgraph/types/type_resolution.h,sha256=mDoIwjajEx7SBZ05ON2He14PBKOvRXKghKSt4ai0Yro,25055
|
|
156
|
+
include/hgraph/types/utils/intern_table.h,sha256=Pa9qP71KUGON7ZIpxfvBLLd0gC5CwsU-_3TvMAXo_t8,4559
|
|
157
|
+
include/hgraph/types/utils/key_slot_store.h,sha256=p2lLuytWHMpxPHp9uBo7aCp86a5HaW-OGQvPKL1Pa3g,28205
|
|
158
|
+
include/hgraph/types/utils/memory_utils.h,sha256=IP2vQaLUK2-tsTZ1M3IoDCdgKH6l_UYKQRSsB903hH4,90496
|
|
159
|
+
include/hgraph/types/utils/slot_observer.h,sha256=EtIe_nXtS5aVav7gZeM8e-isph71OHa_ymA0C2HYzYs,7530
|
|
160
|
+
include/hgraph/types/utils/stable_slot_storage.h,sha256=i_59DBKWezlYUIpKuBfrgBQ2_xpqf_8HfzCeTLwFFgU,10142
|
|
161
|
+
include/hgraph/types/utils/value_slot_store.h,sha256=PBw_lhsQFHBb4p3jQsO0fwmRRlT6vXoMZ2HTAsFfc9g,19080
|
|
162
|
+
include/hgraph/types/value/any_ops.h,sha256=3WzzvbL-WZbhjlGW-3XLL4yUNfEnHsJLrZicOyJLPwQ,1414
|
|
163
|
+
include/hgraph/types/value/compact_container_ops.h,sha256=YR3RP8yMAXfz9bPc4e_Z54H1aAgeIxz6pKFbxgFAllM,63293
|
|
164
|
+
include/hgraph/types/value/compact_storage.h,sha256=FTVohxVpyTvi3AynZPvaZ_r3rs9JCis1w1l1-IqaRSs,53763
|
|
165
|
+
include/hgraph/types/value/container_ops.h,sha256=NsiMddcmLH7hOPMQu1ViUyOizmsIxNvLwEyDPweEXEE,10962
|
|
166
|
+
include/hgraph/types/value/json_codec.h,sha256=-8I1CVarE5GDgzy0x8nXZtvIh3vw_A231gGNzkA2Tz0,4089
|
|
167
|
+
include/hgraph/types/value/mutable_container_ops.h,sha256=zHK_her-4079qSlig8go3dCiry5_z7TM11bEKvrcwh8,58166
|
|
168
|
+
include/hgraph/types/value/specialized_views.h,sha256=k3gSG_57xCvV4DPPz98qi-IdNX1cdpfC926klRE019Y,47376
|
|
169
|
+
include/hgraph/types/value/table_codec.h,sha256=hFIY23R3F4_K9lgw5b1KyMKjK48sPaM_8iH99Hh17Bc,5082
|
|
170
|
+
include/hgraph/types/value/value.h,sha256=3W5w6ZB4Y5wTtMiCZs-YexF4Qw327nA6wl6XUafqDWM,14755
|
|
171
|
+
include/hgraph/types/value/value_builder.h,sha256=zncENqiEseye98bxGJjgPK__eIpU0U1DGaUxVYLf5RE,33105
|
|
172
|
+
include/hgraph/types/value/value_ops.h,sha256=kajP40rUU-vvNgb5HyZP4zp7JVHA2p91H4woxj6-_SM,25896
|
|
173
|
+
include/hgraph/types/value/value_range.h,sha256=A4v8XxkZk8znYr6ysd6H9ezta9UC6zf5ntGgjutOn2Y,6543
|
|
174
|
+
include/hgraph/types/value/value_view.h,sha256=QCSMorCYQ6bCgchft-vvcWYmqiPq9pe9QnMopxO3n9E,17779
|
|
175
|
+
include/hgraph/types/wired_fn.h,sha256=Opb7k84aVD1aar__L1bq8yCVOighq8jKqEPHPsvDBoo,26476
|
|
176
|
+
include/hgraph/util/date_time.h,sha256=1lSJVzBlw-6NvHUykQBLO1zwjUWjUxmbZJ_hdoNrpH0,6611
|
|
177
|
+
include/hgraph/util/scope.h,sha256=jfWg14U8m5lOYK_UPy7HqsPkG24sL0Sqg-DhZrmqXN8,7547
|
|
178
|
+
include/hgraph/util/tagged_ptr.h,sha256=4u48lLQqHQ_NhrPZOx96fBfAzH9tIKksyrl5QgmWnaI,24404
|
|
179
|
+
include/hgraph/version.h,sha256=AmEV6fG9Zn0aVKIxLBLzhNnfp9ZhfwGp-68FxvfCnvY,557
|
|
180
|
+
include/third_party/ankerl/stl.h,sha256=57OA1w0xJ4bQszKr6Pc6b0rP5jO9nMuCvUysBX54oxc,4060
|
|
181
|
+
include/third_party/ankerl/unordered_dense.h,sha256=HTqbuWNdKINA89VOeK9nDt4CqqddKAQmNkkTLygpwME,90374
|
|
182
|
+
include/third_party/sul/dynamic_bitset.hpp,sha256=jguQHAKsel84GmeC6Y3LKuyD8h93PkhndEECGq23To4,112667
|
|
183
|
+
lib/cmake/hgraph/hgraphConfig.cmake,sha256=iAhJ3jaNZMPjr-wtw8eCwQHGVP6Dbc-bPJLsugnQh2I,819
|
|
184
|
+
lib/cmake/hgraph/hgraphConfigVersion.cmake,sha256=P3KkMnd1PmRQDRhF2eE_l8DDecGRGq304SdtPHtkvcE,2827
|
|
185
|
+
lib/cmake/hgraph/hgraphTargets-release.cmake,sha256=-l_sVNYTJ4vbKZ5jCcO-lHh_4AwZf3yE9gYlmr_r604,1855
|
|
186
|
+
lib/cmake/hgraph/hgraphTargets.cmake,sha256=Yv-kJG9i95AiDmgUzK_K3fBm2Xqpiil3Acxo_npdAgg,5466
|
|
187
|
+
lib/hgraph_runtime.lib,sha256=EvuUNnsKM4zyOe2Y3AgUedH15Y4Trg_Uo-f5N0boFWY,69546520
|
|
188
|
+
lib/hgraph_stdlib.lib,sha256=4M6LH55W6tKAscLQvUJzfKF-56wCvFaDuQy8GA-ZbfI,255815400
|
|
189
|
+
lib/hgraph_wiring.lib,sha256=B0wYF_mh-pqzhTWNzP28FJ4vV-kmOCEpKNK9CrDHVys,16234416
|
|
190
|
+
msvcp140-f22b3317cfb3fad7db3a18f8f234f32b.dll,sha256=8iszF8-z-tfbOhj48jTzKyTt9p4eTIHBHcU4tQU3yEE,557648
|
|
191
|
+
msvcp140_atomic_wait-a67379821634a4f3a32730b57a436c71.dll,sha256=0k9_6elwuk6xVyYB33t6tB0q2-1MAFNK5NfOSG4gbnc,29696
|
|
192
|
+
share/hgraph/debugger/hgraph_gdb.py,sha256=FdtXzEVcFU9BK0S6WS2SXXgnjh8oAQ8581VPxB5YGiA,26191
|
|
193
|
+
share/hgraph/debugger/hgraph_lldb.py,sha256=akAa-7I9GprKKOvyj-4MmlE4vI7zOs3cAxvr3FIYl10,30714
|
|
194
|
+
share/hgraph/debugger/README.md,sha256=PLDAE02G8W-lI2raec1ly8SBlDgg1jw8SV8EgUvHqg0,1981
|
|
195
|
+
hg_cpp-0.3.0.dist-info/METADATA,sha256=ht69OTDGwbjDbZDV-qHwwEs1Qq_Go4SGhaqdNJJElmM,4056
|
|
196
|
+
hg_cpp-0.3.0.dist-info/WHEEL,sha256=aam4k_2iUhy4hbA6lTLY_qyPIoXBcq-Q60k5d1zgEN4,104
|
|
197
|
+
hg_cpp-0.3.0.dist-info/RECORD,,
|
hgraph/__init__.py
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"""hgraph - the hgraph API over the C++ runtime.
|
|
2
|
+
|
|
3
|
+
Mirrors the Python hgraph package surface: TS/TSS/TSD/TSL/TSB types, the
|
|
4
|
+
@graph decorator, run_graph, eval_node, and every registered operator as a
|
|
5
|
+
module-level function (via PEP 562 - `from hgraph import add_, const,
|
|
6
|
+
filter_, ...` all resolve through the C++ operator registry).
|
|
7
|
+
|
|
8
|
+
Agreed divergences from Python hgraph are recorded in
|
|
9
|
+
docs/source/developer_guide/parity_matrix.rst (e.g. REF is value-only)."""
|
|
10
|
+
import _hgraph
|
|
11
|
+
|
|
12
|
+
from ._types import Series
|
|
13
|
+
from ._types import (TS, TSS, TSD, TSL, TSB, Size, TimeSeriesSchema, CONTEXT, REQUIRED, SCALAR, SCALAR_1, TSW, KeyValue, AUTO_RESOLVE,
|
|
14
|
+
KEYABLE_SCALAR, TIME_SERIES_TYPE, TIME_SERIES_TYPE_1, TIME_SERIES_TYPE_2, OUT, SIZE,
|
|
15
|
+
DEFAULT, REF, K, V, SCHEMA, TS_SCHEMA)
|
|
16
|
+
from ._compat import (CmpResult, DivideByZero, exception_time_series, OperatorWiringNodeClass, BoolResult,
|
|
17
|
+
CompoundScalar, JSON, TimeSeriesReference)
|
|
18
|
+
from ._runtime import filter_by
|
|
19
|
+
from ._runtime import convert
|
|
20
|
+
from ._runtime import collect
|
|
21
|
+
from ._runtime import emit
|
|
22
|
+
from ._runtime import cast_
|
|
23
|
+
from ._runtime import GlobalContext, GlobalState, set_record_replay_config, set_as_of, set_table_schema_date_key, set_table_schema_as_of_key, evaluate_const
|
|
24
|
+
from ._runtime import WiringPort, graph, run_graph, eval_node, wire, operator_function, map_, reduce, mesh_, mesh_ref, REMOVED, feedback, switch_, passive, compute_node, sink_node, generator, STATE, SCHEDULER, CLOCK, component, record_replay_scope, RecordReplayEnum, comparison_summary, push_queue, EvaluationMode, context, WiringError, reference_service, subscription_service, request_reply_service, register_service, service_impl, adaptor, adaptor_impl, register_adaptor, from_graph, to_graph, impl_input, impl_output, get_service_inputs, set_service_output
|
|
25
|
+
|
|
26
|
+
MIN_ST = _hgraph.MIN_ST
|
|
27
|
+
MIN_TD = _hgraph.MIN_TD
|
|
28
|
+
IN_MEMORY = _hgraph.IN_MEMORY
|
|
29
|
+
DATA_FRAME = _hgraph.DATA_FRAME
|
|
30
|
+
frame_store_contains = _hgraph.frame_store_contains
|
|
31
|
+
frame_store_read = _hgraph.frame_store_read
|
|
32
|
+
|
|
33
|
+
TimeSeries = _hgraph.TimeSeries
|
|
34
|
+
_hgraph._set_removed_sentinel(REMOVED)
|
|
35
|
+
_hgraph._set_cmp_result_enum(CmpResult)
|
|
36
|
+
_hgraph._set_divide_by_zero_enum(DivideByZero)
|
|
37
|
+
|
|
38
|
+
from ._runtime import _Combine as _CombineClass
|
|
39
|
+
combine = _CombineClass()
|
|
40
|
+
|
|
41
|
+
REMOVE = REMOVED # hgraph's TSD key-removal sentinel
|
|
42
|
+
from ._runtime import Removed
|
|
43
|
+
|
|
44
|
+
_OPERATOR_NAMES = frozenset(_hgraph.operator_names())
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def __getattr__(name):
|
|
48
|
+
if name in _OPERATOR_NAMES:
|
|
49
|
+
fn = operator_function(name)
|
|
50
|
+
globals()[name] = fn # cache
|
|
51
|
+
return fn
|
|
52
|
+
from ._compat import _KNOWN_GAPS, _gap
|
|
53
|
+
if name in _KNOWN_GAPS:
|
|
54
|
+
return _gap(name)
|
|
55
|
+
raise AttributeError(f"module 'hgraph' has no attribute '{name}'")
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
def __dir__():
|
|
59
|
+
return sorted(set(globals()) | _OPERATOR_NAMES)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
__all__ = [
|
|
63
|
+
"TS", "TSS", "TSD", "TSL", "TSB", "Size", "TimeSeriesSchema", "CONTEXT", "REQUIRED", "WiringError", "TimeSeries",
|
|
64
|
+
"WiringPort", "CmpResult", "DivideByZero", "exception_time_series", "OperatorWiringNodeClass", "graph", "run_graph", "eval_node", "wire", "map_", "reduce", "mesh_", "mesh_ref", "REMOVED", "feedback", "switch_", "passive", "compute_node", "sink_node", "generator", "STATE", "SCHEDULER", "CLOCK", "component", "record_replay_scope", "RecordReplayEnum", "comparison_summary", "push_queue", "EvaluationMode", "context",
|
|
65
|
+
"MIN_ST", "MIN_TD", "IN_MEMORY", "DATA_FRAME",
|
|
66
|
+
"GlobalContext", "GlobalState", "set_as_of", "set_table_schema_date_key", "set_table_schema_as_of_key",
|
|
67
|
+
"set_record_replay_config", "frame_store_contains", "frame_store_read", "evaluate_const",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
from ._runtime import set_delta, compute_set_delta
|
|
71
|
+
from ._types import K_1
|
|
72
|
+
default_path = "" # hgraph's default service path sentinel
|
hgraph/_compat.py
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
"""hgraph-parity names: enums, markers and thin aliases the ported test
|
|
2
|
+
suite imports. Real gaps raise at USE (never at import) with a "gap:"
|
|
3
|
+
message so ported tests can skip precisely."""
|
|
4
|
+
from enum import Enum
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class CmpResult(Enum):
|
|
8
|
+
LT = -1
|
|
9
|
+
EQ = 0
|
|
10
|
+
GT = 1
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class DivideByZero(Enum):
|
|
14
|
+
# Values match the C++ stdlib::DivideByZero scale.
|
|
15
|
+
ERROR = 0
|
|
16
|
+
NAN = 1
|
|
17
|
+
INF = 2
|
|
18
|
+
NONE = 3 # C++ NoTick: a zero divisor leaves the output un-ticked
|
|
19
|
+
ZERO = 4
|
|
20
|
+
ONE = 5
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def exception_time_series(ts):
|
|
24
|
+
raise NotImplementedError(
|
|
25
|
+
"gap: exception_time_series is not bridged yet (C++ error capture exists)")
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# The type of a module-level operator function (hgraph exposes the wiring
|
|
29
|
+
# node class; ours is the generated operator_function).
|
|
30
|
+
from ._runtime import operator_function as _operator_function
|
|
31
|
+
|
|
32
|
+
OperatorWiringNodeClass = type(_operator_function("add_"))
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
# Known GAPS: declared-only C++ operators and unbridged surface. Importable
|
|
36
|
+
# (the ported suite imports them at module load); raise at USE with a
|
|
37
|
+
# "gap:" message so tests skip precisely.
|
|
38
|
+
_KNOWN_GAPS = (
|
|
39
|
+
"json_encode", "json_decode",
|
|
40
|
+
"to_window", "window", "batch", "filter_by",
|
|
41
|
+
"convert", "collect", "emit",
|
|
42
|
+
"downcast_", "downcast_ref",
|
|
43
|
+
"collapse_keys", "flip_keys", "uncollapse_keys", "values_",
|
|
44
|
+
"assert_", "print_", "setattr_", "type_",
|
|
45
|
+
"evaluation_time_in_range", "round_",
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
def _gap(name):
|
|
50
|
+
def _raise(*args, **kwargs):
|
|
51
|
+
raise NotImplementedError(f"gap: '{name}' is not implemented yet")
|
|
52
|
+
|
|
53
|
+
_raise.__name__ = name
|
|
54
|
+
return _raise
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
class BoolResult:
|
|
58
|
+
"""hgraph's if_ result schema: {true: REF[T], false: REF[T]}."""
|
|
59
|
+
|
|
60
|
+
def __class_getitem__(cls, ts_type):
|
|
61
|
+
from ._types import REF
|
|
62
|
+
|
|
63
|
+
schema = type("BoolResult", (), {})
|
|
64
|
+
schema.__annotations__ = {"true": REF[ts_type], "false": REF[ts_type]}
|
|
65
|
+
return schema
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
class CompoundScalar:
|
|
69
|
+
"""Base class for compound scalars (dataclass-style). Instances are
|
|
70
|
+
first-class python-object scalars in this runtime."""
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
class JSON(str):
|
|
74
|
+
"""hgraph's JSON string newtype (a plain str scalar here)."""
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
class TimeSeriesReference:
|
|
78
|
+
"""The opaque reference-value API (Howard's ruling 2026-07-05):
|
|
79
|
+
references are values - store, emit, compare - never dereferenced
|
|
80
|
+
(.output is not exposed; code needing the dereferenced value accepts
|
|
81
|
+
it as an input)."""
|
|
82
|
+
|
|
83
|
+
def __init__(self, *args, **kwargs):
|
|
84
|
+
raise NotImplementedError(
|
|
85
|
+
"TimeSeriesReference instances come from REF inputs (ref.value) or make()")
|
|
86
|
+
|
|
87
|
+
@staticmethod
|
|
88
|
+
def make():
|
|
89
|
+
"""An EMPTY reference (binds nothing)."""
|
|
90
|
+
import _hgraph
|
|
91
|
+
|
|
92
|
+
return _hgraph.empty_time_series_reference()
|
|
File without changes
|