1 / 6

Assignment 2

Design and implement the interface for NetworkManager to invoke DataConverter in the ScanView workstation. Use dynamic loading of classes to convert images from various vendor scanner models. Provide a test scaffolding implementation for Scanstore.

hauk
Download Presentation

Assignment 2

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Assignment 2 CSC407

  2. Background • You are a designer/programmer working on the DataConverter sub-system of the ScanView workstation. • ScanView is a workstation used by medical professionals to view images from a large variety of medical scanning devices throughout a hospital (and even potentially across hospital sites). • The various scanner systems store and archive the image data in proprietary formats and using their own storage systems (often optical). • ScanView is used to grab the scans from these devices across a network, convert them into a standardized format, cache them in a local database, and allow medical professionals to view the images and manipulate the views quickly (e.g., zoom, rotate, transpose, …) CSC407

  3. Systems Architecture archival storage Scanner Scanner(brand X) Scanner(brand Y) Scanner(remote) tcp/ip network ScanView ScanView cache storage CSC407

  4. ScanView Thread & Module Architecture NetworkManager UI tcp/ip network Sockets images (serialized) events DataConverter Scanstore ? JDBC RDBMS CSC407

  5. What You Have To Do • Design the interface that NetworkManager uses to invoke DataConverter • NetworkManager is by no means fully designed at this point either. • Issue: multiple network manager threads have the potential to invoke DataConverter. • May be one class, may be multiple classes, however you choose. • Must be super flexible wrt number of fields, datatypes, … • Implement DataConverter • must use dynamic loading of classes that know how to convert images from all sorts of vendor scanner models. • Provide a test scaffold implementation for Scanstore that just writes everything it gets to a text file. CSC407

  6. How To Do It • Start with an OOA of the concepts relevant to DataConverter (UML + text) • will be quite small • will guide you in suitable choice of classes • Design DataConverter (UML + diagrams + text) • Implement DataConverter and required test scaffolding in Java. (no javadoc requirement this time around) • Test (hand in a document describing how you tested and the results) CSC407

More Related