IBM 5250 Support (v1.7.0)#6
Open
el-dockerr wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces support for IBM 5250 protocol (AS/400) emulation alongside existing 3270 support, marking a significant feature expansion. The update includes a new 5250 data stream parser, a protocol-agnostic terminal session interface, and necessary build system updates. The project version is incremented to 1.7.0 to reflect these major changes.
5250 Protocol Support:
DataStream5250Parserclass to handle IBM 5250 data streams, including GDS header parsing, command and order dispatch, field attribute mapping, and color handling. (src/core/DataStream5250Parser.cpp,src/core/DataStream5250Parser.h) [1] [2]TN5250Session.cppsource file for managing 5250 terminal sessions, included in the build system. (CMakeLists.txt)Architecture and Interface Improvements:
ITerminalSessioninterface to support both TN3270 and TN5250 session implementations, allowing for cleaner abstraction and extensibility. (src/core/ITerminalSession.h)KeyboardState5250.cppto handle keyboard input specific to 5250 sessions. (CMakeLists.txt)Build and Versioning:
CMakeLists.txt, packaging scripts,Info.plist, and documentation. (CMakeLists.txt,package.sh,package_intel.sh,resources/Info.plist,docs/index.html) [1] [2] [3] [4] [5] [6]These changes lay the foundation for robust AS/400 terminal emulation and further protocol extensibility.