https://github.com/ardoco/traceview-ai
Only for demo purposes
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (13.4%) to scientific vocabulary
Repository
Only for demo purposes
Basic Info
- Host: GitHub
- Owner: ArDoCo
- License: mit
- Language: TypeScript
- Default Branch: main-ai
- Homepage: http://ardoco.de/TraceView-AI/
- Size: 3.12 MB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
- Releases: 0
Metadata Files
README.md
Traceability Link Visualization
Welcome to the repository for ArDoCo TraceView. TraceView is intended to visualize artifacts at different levels of abstraction during the software development process and the "implements" relationship between them called a traceability link (TL). TraceView does this by displaying visualizations of each level of abstraction (natural language description, UML, code model, diagrams) and indicating relationships by highlighting related artifacts using unique colors for each traceability link. Additionally artifacts that are not part of any TL relationship are displayed differently than those that are, allowing the user to distinguish them at a glance. The lack of any TL relationship may indicate a superflous implementation, unrealized parts of the software architecture of missing documentation.
Design Goals
Our central design goals in designing ArDoCo TraceView were to create an application that ...
- ... is easy and comfortable to use
- ... can be extended to support new types of artifacts and visualizations
Our first goal is what lead us to implement the application as a static web application. Through this approach no local installation of the the application is necessary and it is independent of the user's development environment or OS and since the web application is static, no dedicated backend server needs to be developed and maintained. Secondly we wanted to make sure that the user's interaction with the application is comfortable as well. To this end TraceView supports different color schemes that can be switched easily via a dropdown menu in the page header and every displayed visualization can be resized to fill as little or as much of the screen as the user desires.
Architecture Design Decisions
A Traceability Link (TL) is a relationship between two artifacts at different levels of abstraction. In TraceView each level of abstraction corresponds to a visualization and each TL is represented as a 4-tuple consisting of the unique identifiers of source and target artifact and unique identifiers of source and target visualization. They key advantage and reason for this representation of TLs is that it does not require artifacts identifier to be unique across all levels of abstraction. When adding a new level of abstraction and corresponding set of artifact identifier and TLs it is not necessary to scan all previously added identifiers to avoid creating ambiguous TLs.
It is important to note that TraceView manages artifacts and TLs in very different ways: The application delegates the management of the active and inactive TLs to the VisualizationObserver, which explicitly stores them in one of its member variables. This is not the case for artifacts.\ By selecting the desired files to instantiate a visualization from the user decides which raw string file contents are passed to the VisualizationFactory which will attempt to parse them into artifacts of the type specified by the user.\ If successful, the artifacts are used in the initialization of a visualization and as the VisualizationFactory is stateless, discarded after calling the visualization's constructor.\ Visualizations may store their artifacts, but in our implementations we found this unnecessary and discard them after the corresponding elements of a visualization (i.e. nodes in a graph) have been created.\ Per the interface of a HighlightingVisualization which is the only interface that will be used to interact with visualization objects beyond their instantiation, visualizations only need to maintain a list of currently highlightable identifiers.
The key characteristic of ArDoCo TraceView's architecture is the extensive use of the observer pattern: Firstly, the application receives user input via listeners attached to the Document Object Model (DOM) as is usually the case with web based applications. Secondly each visualization is observed by the aforementioned VisualizationObserver which holds the TLs known to the application and sets each visualizations highlighting based on the received inputs from its observation subjects. \
Owner
- Name: ArDoCo
- Login: ArDoCo
- Kind: organization
- Location: Germany
- Website: https://ardoco.github.io/
- Repositories: 15
- Profile: https://github.com/ArDoCo
Architecture Documentation Consistency - Aiming to provide consistency analyses between formal models and informal (textual) documentation
GitHub Events
Total
- Delete event: 5
- Issue comment event: 6
- Public event: 1
- Push event: 10
- Pull request event: 9
- Create event: 8
Last Year
- Delete event: 5
- Issue comment event: 6
- Public event: 1
- Push event: 10
- Pull request event: 9
- Create event: 8
Issues and Pull Requests
Last synced: 7 months ago
All Time
- Total issues: 0
- Total pull requests: 11
- Average time to close issues: N/A
- Average time to close pull requests: 28 days
- Total issue authors: 0
- Total pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.45
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 11
Past Year
- Issues: 0
- Pull requests: 11
- Average time to close issues: N/A
- Average time to close pull requests: 28 days
- Issue authors: 0
- Pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.45
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 11
Top Authors
Issue Authors
Pull Request Authors
- dependabot[bot] (11)
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- JamesIves/github-pages-deploy-action v4.5.0 composite
- actions/checkout v4 composite
- actions/setup-node v4 composite
- actions/checkout v4 composite
- actions/setup-node v4 composite
- 490 dependencies
- @microsoft/tsdoc ^0.14.2 development
- @types/d3 ^7.4.3 development
- copy-webpack-plugin ^12.0.2 development
- css-loader ^7.1.2 development
- d3 ^7.9.0 development
- eslint-plugin-tsdoc ^0.2.17 development
- file-loader ^6.2.0 development
- html-webpack-plugin ^5.6.0 development
- style-loader ^4.0.0 development
- ts-loader ^9.5.1 development
- typedoc ^0.25.12 development
- typescript ^5.4.2 development
- webpack ^5.89.0 development
- webpack-cli ^5.1.4 development
- webpack-dev-server ^5.0.3 development
- node-fetch ^3.3.2