Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Break Apart Deframer #2763

Open
2 tasks
LeStarch opened this issue Jun 7, 2024 · 0 comments · May be fixed by #2900
Open
2 tasks

Break Apart Deframer #2763

LeStarch opened this issue Jun 7, 2024 · 0 comments · May be fixed by #2900
Assignees
Labels
enhancement EPIC Container for related issues

Comments

@LeStarch
Copy link
Collaborator

LeStarch commented Jun 7, 2024

F´ Version
Affected Component

Feature Description

The Deframer is performing several peices:

  1. It reassembles frames
  2. It calls custom deframing via a subclass
  3. It routes data to F´ components.

On modern projects, we have seen the following needs that the deframer cannot support.

  1. Custom deframing needs to use custom port calls (e.g. call out to a helper component, database component, etc)
  2. Routing to F´ components often needs to be customized
  3. Reassembly is optional (e.g. a packet radio is already produces complete frames)

Thus we will break the deframer into 3 F´ items:

  1. An optional accumulator that takes in byte streams and outputs complete frames in Fw::Buffer: Build A Frame Reassembler #2764
  2. A deframer interface that allows custom deframing to a standard component "drop in":
  3. A router implementation for basic F´ constructs:

EPIC Subtasks

@LeStarch LeStarch added the EPIC Container for related issues label Jun 7, 2024
@thomas-bc thomas-bc linked a pull request Sep 30, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement EPIC Container for related issues
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants