1 / 21

Architectural design

Architectural design. Nicolas Teirlinckx Made for Software Engineering Groep 1 (2009 – 2010). Software Architecture. Highest level design. Structure of the system. Reuse of patterns. Comprise software components and relationship between them. Strategic design.

tao
Télécharger la présentation

Architectural design

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. Architectural design Nicolas Teirlinckx Made for Software Engineering Groep 1 (2009 – 2010)

  2. Software Architecture • Highest level design. • Structure of the system. • Reuse of patterns. • Comprise software components and relationship between them. • Strategic design. • Architectural layer. Build application layer by layer. • Qualities (extensible, flexible, reusable,…)

  3. SDD Sections about architecture in Software Design Document.

  4. 1. System structuring • Principal subsystems and their communications • Block-diagram with overview system structure.

  5. 2. Control Modeling • General model of control relationships between the subsystems. • UML, other tools (Rational Rose, Together).

  6. 3. Comparing Architecture Alternatives • Give each category a score for the qualities. • And compare total scores. • Each quality has weight too.

  7. 4. Architecture inspection • Use cases to check against requirements. • Can domain model be mapped to components? • All components necessary? • Defect detection.

  8. Categorization of Architectures Choosing an architecture for our auction website.

  9. 1. Data flow architecture Data processing. Series of transformations on pieces of input data. Final destination: output.

  10. 1.1 Pipeline architecture • Chain of processing elements. • No cycle of dataflow. • Output each element is input next.

  11. 1.2 Batch sequential dataflow • Finite number of steps linearly connected. • Components are independent programs. • One complement runs completely before other starts.

  12. For auction website… • There will be dataflow… • To limited to be used as architecture. • Can’t be used as highest level design.

  13. 2. Multi-tier architecture - (n-tier architecture) - Client – server architecture. - Presentation, application processing and data management is separate. - Most widely used: three-tier.

  14. 2.1 Client – Server Partitions tasks between service providers and requesters. Providers = servers, requesters = client. Clients: web browser, email clients, … Providers: web servers, ftp servers, database servers, … Independent components: strong reuse. Interesting for auction site!

  15. 2.1.1 Three- tier architecture • A good alternative for our project. • Software architecture and design pattern. • Middle tier can be multi tiered. • Three tiers can be upgraded independently.

  16. Three-tier architecture • Presentation tier: Website interface. • Logic tier: Give me all the items with layer “Lamp”. • Data tier: Item database.

  17. 2.2 Model View Controller • MVC architecture. • Often seen in web applications.

  18. 3. Others Virtual machines (interpreters, …) Repository architecture. Event-driven architecture. Real architecture are mix. …

  19. Choosing MVC vs. Three-tier • Topologically different. • Three-tier: client never communicates with data. • MVC is triangular. • Three-tier: concept emerged 1990’s. • MVC: late 70’s.

  20. dISCUSS Choose alternative between MVC and Three-tier for auction website!

More Related