2023-01-11 10:30:03 +01:00
|
|
|
Change Log
|
|
|
|
=======
|
|
|
|
|
|
|
|
All notable changes to this project will be documented in this file.
|
|
|
|
|
|
|
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
|
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
|
|
|
|
|
# [unreleased]
|
2024-02-12 16:55:19 +01:00
|
|
|
|
2024-04-24 14:30:45 +02:00
|
|
|
# [v0.2.0-rc.5] 2024-04-23
|
|
|
|
|
|
|
|
## Changed
|
|
|
|
|
|
|
|
- Removed `MpscEventReceiver`, the `EventReceiveProvider` trait is implemented directly
|
|
|
|
on `mpsc::Receiver<EventMessage<Event>>`
|
|
|
|
- Renamed `PusEventDispatcher` to `PusEventTmCreatorWithMap`.
|
|
|
|
- Renamed `DefaultPusEventU32Dispatcher` to `DefaultPusEventU32EventCreator`.
|
|
|
|
- Renamed `PusEventMgmtBackendProvider` renamed to `PusEventReportingMap`.
|
|
|
|
|
2024-04-23 14:55:19 +02:00
|
|
|
# [v0.2.0-rc.4] 2024-04-23
|
2024-04-20 11:19:46 +02:00
|
|
|
|
|
|
|
## Changed
|
|
|
|
|
|
|
|
- The `parse_for_ccsds_space_packets` method now expects a non-mutable slice and does not copy
|
|
|
|
broken tail packets anymore. It also does not expect a mutable `next_write_idx` argument anymore.
|
|
|
|
Instead, a `ParseResult` structure is returned which contains the `packets_found` and an
|
|
|
|
optional `incomplete_tail_start` value.
|
|
|
|
|
|
|
|
## Fixed
|
|
|
|
|
|
|
|
- `parse_for_ccsds_space_packets` did not detect CCSDS space packets at the buffer end with the
|
|
|
|
smallest possible size of 7 bytes.
|
2024-04-23 11:23:00 +02:00
|
|
|
- TCP server component now re-registers the internal `mio::Poll` object if the client reset
|
|
|
|
the connection unexpectedly. Not doing so prevented the server from functioning properly
|
|
|
|
after a re-connect.
|
2024-04-20 11:19:46 +02:00
|
|
|
|
2024-04-17 20:41:30 +02:00
|
|
|
# [v0.2.0-rc.3] 2024-04-17
|
|
|
|
|
|
|
|
docs-rs hotfix 2
|
|
|
|
|
2024-04-17 17:19:38 +02:00
|
|
|
# [v0.2.0-rc.2] 2024-04-17
|
|
|
|
|
|
|
|
docs-rs hotfix
|
|
|
|
|
2024-04-17 10:03:17 +02:00
|
|
|
# [v0.2.0-rc.1] 2024-04-17
|
|
|
|
|
|
|
|
- `spacepackets` v0.11
|
2024-04-04 15:20:02 +02:00
|
|
|
|
2024-04-04 15:18:53 +02:00
|
|
|
## Added
|
|
|
|
|
|
|
|
- Added `params::WritableToBeBytes::to_vec`.
|
|
|
|
- New `ComponentId` (`u64` typedef for now) which replaces former `TargetId` as a generic
|
|
|
|
way to identify components.
|
|
|
|
- Various abstraction and objects for targeted requests. This includes mode request/reply
|
|
|
|
types for actions, HK and modes.
|
|
|
|
- `VerificationReportingProvider::owner_id` method.
|
|
|
|
- Introduced generic `EventMessage` which is generic over the event type and the additional
|
|
|
|
parameter type. This message also contains the sender ID which can be useful for debugging
|
|
|
|
or application layer / FDIR logic.
|
2024-04-09 17:21:43 +02:00
|
|
|
- Stop signal handling for the TCP servers.
|
2024-04-10 11:28:16 +02:00
|
|
|
- TCP server now uses `mio` crate to allow non-blocking operation. The server can now handle
|
|
|
|
multiple connections at once, and the context information about handled transfers is
|
|
|
|
passed via a callback which is inserted as a generic as well.
|
2024-04-04 15:18:53 +02:00
|
|
|
|
2024-02-23 14:19:30 +01:00
|
|
|
## Changed
|
|
|
|
|
2024-04-16 11:04:22 +02:00
|
|
|
- Renamed `ReceivesTcCore` to `PacketSenderRaw` to better show its primary purpose. It now contains
|
|
|
|
a `send_raw_tc` method which is not mutable anymore.
|
|
|
|
- Renamed `TmPacketSourceCore` to `TmPacketSource`.
|
|
|
|
- Renamed `EcssTmSenderCore` to `EcssTmSender`.
|
|
|
|
- Renamed `StoreAddr` to `PoolAddr`.
|
|
|
|
- Reanmed `StoreError` to `PoolError`.
|
2024-04-10 11:28:16 +02:00
|
|
|
- TCP server generics order. The error generics come last now.
|
2024-04-04 15:18:53 +02:00
|
|
|
- `encoding::ccsds::PacketIdValidator` renamed to `ValidatorU16Id`, which lives in the crate root.
|
|
|
|
It can be used for both CCSDS packet ID and CCSDS APID validation.
|
|
|
|
- `EventManager::try_event_handling` not expects a mutable error handling closure instead of
|
|
|
|
returning the occured errors.
|
|
|
|
- Renamed `EventManagerBase` to `EventReportCreator`
|
|
|
|
- Renamed `VerificationReporterCore` to `VerificationReportCreator`.
|
|
|
|
- Removed `VerificationReporterCore`. The high-level API exposed by `VerificationReporter` and
|
|
|
|
the low level API exposed by `VerificationReportCreator` should be sufficient for all use-cases.
|
2024-02-23 14:19:30 +01:00
|
|
|
- Refactored `EventManager` to heavily use generics instead of trait objects.
|
|
|
|
- `SendEventProvider` -> `EventSendProvider`. `id` trait method renamed to `channel_id`.
|
|
|
|
- `ListenerTable` -> `ListenerMapProvider`
|
|
|
|
- `SenderTable` -> `SenderMapProvider`
|
|
|
|
- There is an `EventManagerWithMpsc` and a `EventManagerWithBoundedMpsc` helper type now.
|
2024-02-26 11:41:42 +01:00
|
|
|
- Refactored ECSS TM sender abstractions to be generic over different message queue backends.
|
|
|
|
- Refactored Verification Reporter abstractions and implementation to be generic over the sender
|
|
|
|
instead of using trait objects.
|
2024-04-04 15:18:53 +02:00
|
|
|
- Renamed `WritableToBeBytes::raw_len` to `WritableToBeBytes::written_len` for consistency.
|
2024-03-04 16:26:34 +01:00
|
|
|
- `PusServiceProvider` renamed to `PusServiceDistributor` to make the purpose of the object
|
|
|
|
more clear
|
|
|
|
- `PusServiceProvider::handle_pus_tc_packet` renamed to `PusServiceDistributor::distribute_packet`.
|
|
|
|
- `PusServiceDistibutor` and `CcsdsDistributor` now use generics instead of trait objects.
|
|
|
|
This makes accessing the concrete trait implementations more easy as well.
|
2024-04-04 15:18:53 +02:00
|
|
|
- Major overhaul of the PUS handling module.
|
|
|
|
- Replace `TargetId` by `ComponentId`.
|
|
|
|
- Replace most usages of `ChannelId` by `ComponentId`. A dedicated channel ID has limited usage
|
|
|
|
due to the nature of typed channels in Rust.
|
|
|
|
- `CheckTimer` renamed to `CountdownProvider`.
|
|
|
|
- Renamed `TargetId` to `ComponentId`.
|
|
|
|
- Replaced most `ChannelId` occurences with `ComponentId`. For typed channels, there is generally
|
|
|
|
no need for dedicated channel IDs.
|
|
|
|
- Changed `params::WritableToBeBytes::raw_len` to `written_len` for consistency.
|
|
|
|
- `EventReporter` caches component ID.
|
|
|
|
- Renamed `PusService11SchedHandler` to `PusSchedServiceHandler`.
|
|
|
|
- Fixed general naming of PUS handlers from `handle_one_tc` to `poll_and_handle_next_tc`.
|
|
|
|
- Reworked verification module: The sender (`impl EcssTmSenderCore`)
|
|
|
|
now needs to be passed explicitely to the `VerificationReportingProvider` abstraction. This
|
|
|
|
allows easier sharing of the TM sender component.
|
2024-02-23 14:19:30 +01:00
|
|
|
|
2024-02-26 10:53:33 +01:00
|
|
|
## Fixed
|
|
|
|
|
|
|
|
- Update deprecated API for `PusScheduler::insert_wrapped_tc_cds_short`
|
|
|
|
and `PusScheduler::insert_wrapped_tc_cds_long`.
|
2024-04-04 15:18:53 +02:00
|
|
|
- `EventReporter` uses interior mutability pattern to allow non-mutable API.
|
|
|
|
|
|
|
|
## Removed
|
|
|
|
|
|
|
|
- Remove `objects` module.
|
2024-04-16 11:04:22 +02:00
|
|
|
- Removed CCSDS and PUS distributor modules. Their worth is questionable in an architecture
|
|
|
|
where routing traits are sufficient and the core logic to demultiplex and distribute packets
|
|
|
|
is simple enough to be application code.
|
2024-02-26 10:53:33 +01:00
|
|
|
|
2024-02-21 11:08:22 +01:00
|
|
|
# [v0.2.0-rc.0] 2024-02-21
|
2024-02-20 14:33:21 +01:00
|
|
|
|
|
|
|
## Added
|
|
|
|
|
|
|
|
- New PUS service abstractions for HK (PUS 3) and actions (PUS 8). Introducing new abstractions
|
|
|
|
allows to move some boilerplate code into the framework.
|
|
|
|
- New `VerificationReportingProvider` abstraction to avoid relying on a concrete verification
|
|
|
|
reporting provider.
|
|
|
|
|
2024-02-20 14:36:34 +01:00
|
|
|
## Changed
|
|
|
|
|
|
|
|
- Verification reporter API timestamp arguments are not `Option`al anymore. Empty timestamps
|
|
|
|
can be passed by simply specifying the `&[]` empty slice argument.
|
|
|
|
|
2024-02-12 17:56:01 +01:00
|
|
|
# [v0.1.1] 2024-02-12
|
|
|
|
|
|
|
|
- Minor fixes for crate config `homepage` entries and links in documentation.
|
|
|
|
|
2024-02-12 16:55:19 +01:00
|
|
|
# [v0.1.0] 2024-02-12
|
|
|
|
|
|
|
|
Initial release.
|