Vragen. Architecture presentations in practice. Some terms (from IEEE standard)
|
|
|
- Emily Curtis
- 10 years ago
- Views:
Transcription
1 Vragen Architecture presentations in practice Waarom is software architectuur belangrijk? Waarom schiet de volgende definitie tekort? The architecture of a software system defines that system in terms of computational ti components and interactions among those components. Waarom is het documenteren van ontwerpsbeslissingen belangrijk? Wat is de rol van UML met betrekking tot het beschrijven van een software architectuur? By and large two flavors: Powerpoint slides for managers, users, consultants, etc UML diagrams, for technicians / Faculteit Wiskunde en Informatica PAGE 0 SE, Software Architecture, Hans van Vliet, So, Some terms (from IEEE standard) Different representations For different people For different purposes These representations are both descriptive and prescriptive System stakeholder: an individual, team, or organization (or classes hereof) with interests in, or concerns relative to, a system. View: a representation of a whole system from the perspective of a related set of concerns. Viewpoint: A viewpoint establishes the purposes p and audience for a view and the techniques or methods employed in constructing a view. SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet,
2 Stakeholders Viewpoint specification Architect Requirements engineer Designer (also of other systems) Implementor Tester, integrator Maintainer Manager Quality assurance people Viewpoint name Stakeholders addressed Concerns addressed Language, modeling techniques SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet, Kruchten s 4+1 view model 4 + 1: Logical Viewpoint End-user Functionality Logical Viewpoint Programmers Software management Implementation Viewpoint The logical viewpoint supports the functional requirements, i.e., the services the system should provide to its end users. Process Viewpoint Scenarios Deployment Viewpoint Typically, it shows the key abstractions (e.g., classes and interactions amongst them). Integrators Performance Scalability System engineers Topology Communications SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet,
3 4 + 1: Process Viewpoint 4 + 1: Deployment Viewpoint Addresses concurrent aspects at runtime (tasks, threads, processes and their interactions) ti It takes into account some nonfunctional requirements, such as performance, system availability, concurrency and distribution, system integrity, and fault-tolerance. The deployment viewpoint defines how the various elements identified in the logical, process, and implementation viewpoints-networks, processes, tasks, and objects-must be mapped onto the various nodes. It takes into account the system's nonfunctional requirements such as system availability, reliability (fault-tolerance), performance (throughput), and scalability. SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet, : Implementation Viewpoint 4 + 1: Scenario Viewpoint The imlementation viewpoint focuses on the organization of the actual software modules in the software-development environment. The software is packaged in small chunks-program libraries or subsystems-that can be developed by one or more developers. The scenario viewpoint consists of a small subset of important scenarios (e.g., use cases) to show that the elements of the four viewpoints work together seamlessly. This viewpoint is redundant with the other ones (hence the "+1") ), but it plays two critical roles: it acts as a driver to help designers discover architectural elements during the architecture design; it validates and illustrates the architecture design, both on paper and as the starting point for the tests of an architectural prototype. SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet,
4 Architectural views from Bass et al (view = representation of a structure) Module views Module is unit of implementation Decomposition, uses, layered, class Component and connector (C & C) views These are runtime elements Process (communication), concurrency, shared data (repository), client-server Allocation views Relationship between software elements and environment Work assignment, deployment, implementation ti Module views Decomposition: units are related by is a submodule of, larger modules are composed of smaller ones Uses: relation is uses (calls, passes information to, etc). Important for modifiability Layered is special case of uses, layer n can only use modules from layers <n Class: generalization, relation inherits from SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet, Component and connector views Allocation views Process: units are processes, connected by communication or synchronization Concurrency: to determine opportunities for parallelism (connector = logical thread) Shared data: shows how data is produced and consumed Client-server: cooperating clients and servers Deployment: how software is assigned to hardware elements Implementation: how software is mapped onto file structures Work assignment: who is doing what SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet,
5 How to decide on which viewpoints A caveat on quality What are the stakeholders and their concerns? Which viewpoints address these concerns? Prioritize iti and possibly combine viewpoints i A view can be used to assess one or more quality attributes E.g., some type of module view can be used to assess modifiability It should then expose the design decisions that affect this quality attribute SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet, Specification of Software Architecture Based on Analysis of Software Requirements Specification of software components and interfaces Data interfaces Control interfaces Onboard interfaces Offboard interfaces Specification of software layers Specification of operating states normal operation parameterization updating AUTomotive Open System ARchitecture is an open and standardized automotive software architecture, jointly developed by automobile manufacturers, suppliers and tool developers Objective is to create and establish open standards for automotive Electrics/Electronics architectures that will provide a basic infrastructure to assist with developing vehicular software, user interfaces and management for all application domains A platform for future vehicle applications / Faculteit Wiskunde en Informatica PAGE 18 / Faculteit Wiskunde en Informatica PAGE 19
6 paves the way for innovative electronic systems that further improve performance, safety and environmental friendliness is a key enabling technology to manage the growing electrics/electronics complexity. aims to be prepared p for the upcoming technologies and to improve cost-efficiency without making any compromise with respect to quality facilitates the exchange and update of software and hardware over the service life of the vehicle Who? OEMs DaimlerChrysler, Volkwagen, PSA, Toyota, Ford, Opel, Fiat, Honda, Mazda, Renault, Nissan, etc. suppliers generic Tier 1 supplier: Bosch, Continental, SiemensVDO, Alpine, etc. standard software, tools and services semi-conductors / Faculteit Wiskunde en Informatica PAGE 20 / Faculteit Wiskunde en Informatica PAGE 21 Why? Increasing complexity of software in automotive systems No standardized software architecture Main motivations Management of E/E complexity associated with growth in functional scope Flexibility for product modification, upgrade and update Scalability of solutions within and across product lines Improved quality and reliability of E/E systems Main goals Fulfillment of future vehicle requirements, such as, availability and safety, SW upgrades/ updates and maintainability Increased scalability and flexibility to integrate and transfer functions Higher penetration of "Commercial off the Shelf" SW and HW components across product lines Improved containment of product and process complexity and risk Cost optimization of scalable systems / Faculteit Wiskunde en Informatica PAGE 22 / Faculteit Wiskunde en Informatica PAGE 23
7 software components Fundamental design concept is separation between infrastructure and application Application consists of interconnected software components Atomic software component: a software component can not be distributed ib d over several ECUs software component implementation is independent from the infrastructure Communication patterns Client Server Server: provider of service Client: user of service Client initiates communication Single component can be server and client Synchronous and asynchronous communication is possible / Faculteit Wiskunde en Informatica PAGE 24 / Faculteit Wiskunde en Informatica PAGE 25 Communication patterns Sender - Receiver Asynchronous distribution of information No response from receivers Sender does not know the number or identity of the receivers Layered Software Architecture / Faculteit Wiskunde en Informatica PAGE 26 / Faculteit Wiskunde en Informatica PAGE 27
8 Architectural styles Software Architecture An architectural style is a description of component and connector types and a pattern of their runtime control and/or data transfer. Examples: main program with subroutines data abstraction implicit invocation pipes and filters repository (blackboard) layers of abstraction / Faculteit Wiskunde en Informatica PAGE 28 SE, Software Architecture, Hans van Vliet, Components and Connectors Types of components Components are connected by connectors. They are the building blocks with which an architecture can be described. No standard notation has emerged yet. computational: does a computation of some sort. E.g. function, filter. memory: maintains a collection of persistent data. E.g. data base, file system, symbol table. manager: contains state + operations. State is retained between invocations of operations. E.g. adt, server. controller: governs time sequence of events. E.g. control module, scheduler. SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet,
9 Types of connectors procedure call (including RPC) data flow (e.g. pipes) implicit invocation message passing shared data (e.g. blackboard or shared data base) instantiation Framework for describing architectural styles problem: type of problem that the style addresses. Characteristics of the reqs s guide the designer in his choice for a particular style. context: characteristics of the environment that constrain the designer, req s imposed by the style. solution: in terms of components and connectors (choice not independent), and control structure (order of execution of components) variants examples SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet, Main-program-with-subroutines style Abstract-data-type style problem: hierarchy of functions; result of functional decomposition, single thread of control context: language with nested procedures solution: system model: modules in a hierarchy, may be weak or strong, coupling/cohesion arguments components: modules with local data, as well as global data connectors: procedure call control structure: single thread, centralized control: main program pulls the strings variants: OO versus non-oo problem: identify and protect related bodies of information. Data representations likely to change. context: OO-methods which guide the design, OO-languages which provide the class-concept solution: system model: component has its own local data (= secret it hides) components: managers (servers, objects, adt s) connectors: procedure call (message) control structure: single thread, usually; control is decentralized variants: caused by language facilities SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet,
10 Implicit-invocation style Pipes-and-filters style problem: loosely coupled collection of components. Useful for applications which must be reconfigurable. context: requires event handler, through OS or language. solution: system model: independent, reactive processes, invoked when an event is raised components: processes that signal events and react to events connectors: automatic invocation control structure: decentralized control. Components do not know who is going to react. variants: Tool-integration frameworks, and languages with special features. problem: independent, sequential ential transformations on ordered data. Usually incremental, Ascii pipes. context: series of incremental transformations. OS-functions transfer data between processes. Error-handling difficult. solution: system model: continuous data flow; components incrementally transform data components: filters for local processing connectors: data streams (usually plain ASCII) control structure: data flow between components; component has own flow variants: From pure filters with little internal state to batch processes SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet, Repository style Layered style Client Client Shared Data Client problem: manage richly structured information, to be manipulated in many different ways. Data is long-lived. context: shared data to be acted upon by multiple clients solution: system model: centralized body of information. Independent computational elements. components: one memory, many computational connectors: direct access or procedure call control structure: varies, may depend on input or state of computation variants: traditional data base systems, compilers, blackboard systems Layer n Layer 2 Layer 1 problem: distinct, hierarchical classes of services. Concentric circles of functionality context: a large system that requires decomposition (e.g., virtual machines, OSI model) solution: system model: hierarchy of layers, often limited visibility components: collections of procedures (module) connectors: (limited) procedure calls control structure: single or multiple threads variants: relaxed layering SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet,
11 Model-View-Controller (MVC) style Controller n View Model problem: separation of UI from application is desirable due to expected UI adaptations context: interactive applications with a flexible UI solution: system model: UI (View and Controller Component(s)) is decoupled from the application (Model component) components: collections of procedures (module) connectors: procedure calls control structure: single thread variants: Document-View n Architecture evaluation/analysis Assess whether architecture meets certain quality goals, such as those w.r.t. maintainability, modifiability, reliability, performance Mind: the architecture is assessed, while we hope the results will hold for a system yet to be built SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet, Software Architecture Analysis Analysis techniques Questioning techniques: how does the system react to various situations; often make use of scenarios Software architecture implementation System Measuring techniques: rely on quantitative measures; architecture metrics, simulation, etc Properties properties Qualities SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet,
12 Scenarios in Architecture Analysis Preconditions for successful assessment Different types of scenarios, e.g. use-cases, likely changes, stress situations, risks, far-into-the-future scenarios Which stakeholders to ask for scenarios? When do you have enough scenarios? Clear goals and requirements for the architecture Controlled scope Cost-effectiveness Key personnel availability Competent evaluation team Managed expectations ti SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet, Role of the software architect Summary Key technical consultant Make decisions Coach of development team Coordinate design Implement key parts Advocate software architecture t new and immature field proliferation of terms: architecture - design pattern - framework - idiom architectural t styles and design pattern describe (how are things done) as well as prescribe (how should things be done) stakeholder communication early evaluation of a design transferable abstraction SE, Software Architecture, Hans van Vliet, SE, Software Architecture, Hans van Vliet,
Software Architecture. New wine in old bottles? (i.e., software architecture global design?, architect designer)
Software Architecture New wine in old bottles? (i.e., software architecture global design?, architect designer) Overview What is it, why bother? Architecture Design Viewpoints and view models Architectural
Aerospace Software Engineering
16.35 Aerospace Software Engineering Software Architecture The 4+1 view Patterns Prof. Kristina Lundqvist Dept. of Aero/Astro, MIT Why Care About Software Architecture? An architecture provides a vehicle
Questions? Assignment. Techniques for Gathering Requirements. Gathering and Analysing Requirements
Questions? Assignment Why is proper project management important? What is goal of domain analysis? What is the difference between functional and non- functional requirements? Why is it important for requirements
Software Engineering
Software Engineering Lecture 06: Design an Overview Peter Thiemann University of Freiburg, Germany SS 2013 Peter Thiemann (Univ. Freiburg) Software Engineering SWT 1 / 35 The Design Phase Programming in
Design methods. List of possible design methods. Functional decomposition. Data flow design. Functional decomposition. Data Flow Design (SA/SD)
Design methods List of possible design methods Functional decomposition Data Flow Design (SA/SD) Design based on Data Structures (JSD/JSP) OO is good, isn t it Decision tables E-R Flowcharts FSM JSD JSP
Decomposition into Parts. Software Engineering, Lecture 4. Data and Function Cohesion. Allocation of Functions and Data. Component Interfaces
Software Engineering, Lecture 4 Decomposition into suitable parts Cross cutting concerns Design patterns I will also give an example scenario that you are supposed to analyse and make synthesis from The
Vragen en opdracht. Complexity. Modularity. Intra-modular complexity measures
Vragen en opdracht Complexity Wat wordt er bedoeld met design g defensively? Wat is het gevolg van hoge complexiteit icm ontwerp? Opdracht: http://www.win.tue.nl/~mvdbrand/courses/se/1011/opgaven.html
Safety and security related features in AUTOSAR
Safety and security related features in Dr. Stefan Bunzel Spokesperson (Continental) Co-Authors: S. Fürst, Dr. J. Wagenhuber (BMW), Dr. F. Stappert (Continental) Automotive - Safety & Security 2010 22
Architecture. Reda Bendraou reda.bendraou{{@}}lip6.fr http://pagesperso-systeme.lip6.fr/reda.bendraou/
Architecture Reda Bendraou reda.bendraou{{@}}lip6.fr http://pagesperso-systeme.lip6.fr/reda.bendraou/ Some slides were adapted from L. Osterweil, B. Meyer, and P. Müller material Reda Bendraou LI386-S1
Applying 4+1 View Architecture with UML 2. White Paper
Applying 4+1 View Architecture with UML 2 White Paper Copyright 2007 FCGSS, all rights reserved. www.fcgss.com Introduction Unified Modeling Language (UML) has been available since 1997, and UML 2 was
Architecture Design & Sequence Diagram. Week 7
Architecture Design & Sequence Diagram Week 7 Announcement Reminder Midterm I: 1:00 1:50 pm Wednesday 23 rd March Ch. 1, 2, 3 and 26.5 Hour 1, 6, 7 and 19 (pp.331 335) Multiple choice Agenda (Lecture)
An Approach to Software Architecture Description Using UML
An Approach to Software Architecture Description Using UML Henrik Bærbak Christensen, Aino Corry, and Klaus Marius Hansen Department of Computer Science, University of Aarhus Aabogade 34, 8200 Århus N,
High-level Design. What is software architecture?
High-level Design Software Architecture What is it? Examples of common architectures Parnas KWIK index example of information hiding Model view controller in high level layered design 1 What is software
Software Life-Cycle Management
Ingo Arnold Department Computer Science University of Basel Theory Software Life-Cycle Management Architecture Styles Overview An Architecture Style expresses a fundamental structural organization schema
COSC 3351 Software Design. Recap for the first quiz. Edgar Gabriel. Spring 2008. For the 1 st Quiz
COSC 3351 Software Design Recap for the first quiz Spring 2008 For the 1 st Quiz Three large topic areas: UML syntax and diagrams Software architectural styles Object oriented design principles A couple
What is Automotive Software Engineering? What is Automotive Software Engineering? What is Automotive Software Engineering?
Process models: Capability Maturity Model Integration (CMMI) Software Process Improvement and Capability Determination (SPICE) V-Model Standards: MISRA-C standard AUTOSAR Configuration management Product
What is a life cycle model?
What is a life cycle model? Framework under which a software product is going to be developed. Defines the phases that the product under development will go through. Identifies activities involved in each
SOFT 437. Software Performance Analysis. Ch 5:Web Applications and Other Distributed Systems
SOFT 437 Software Performance Analysis Ch 5:Web Applications and Other Distributed Systems Outline Overview of Web applications, distributed object technologies, and the important considerations for SPE
Information Systems Analysis and Design CSC340. 2004 John Mylopoulos. Software Architectures -- 1. Information Systems Analysis and Design CSC340
XIX. Software Architectures Software Architectures UML Packages Client- vs Peer-to-Peer Horizontal Layers and Vertical Partitions 3-Tier and 4-Tier Architectures The Model-View-Controller Architecture
ECU State Manager Module Development and Design for Automotive Platform Software Based on AUTOSAR 4.0
ECU State Manager Module Development and Design for Automotive Platform Software Based on AUTOSAR 4.0 Dhanamjayan P.R. 1, Kuruvilla Jose 2, Manjusree S. 3 1 PG Scholar, Embedded Systems, 2 Specialist,
The Role of the Software Architect
IBM Software Group The Role of the Software Architect Peter Eeles [email protected] 2004 IBM Corporation Agenda Architecture Architect Architecting Requirements Analysis and design Implementation
Software Architecture
Software Architecture Lecture 2 Basic Concepts Rob Pettit George Mason University What is Software Architecture?! Definition:! A software system s architecture is the set of principal design decisions
AUTOSAR Software Architecture
AUTOSAR Software Architecture Robert Warschofsky Hasso-Plattner-Institute für Softwaresystemtechnik Abstract. AUTOSAR supports the re-use of software and hardware components of automotive electronic systems.
Automotive Software Engineering
Automotive Software Engineering List of Chapters: 1. Introduction and Overview 1.1 The Driver Vehicle Environment System 1.1.1 Design and Method of Operation of Vehicle Electronic 1.1.2 Electronic of the
Introduction to software architecture
Learning Unit 1 Introduction to software architecture Contents Introduction............................................... 7 1.1 What is software architecture?................................. 7 1.1.1
KWIC Exercise. 6/18/2007 2007, Spencer Rugaber 1
KWIC Exercise On a subsequent slide, you will be given the description of a simple program for which you will be asked to devise two architectures. For the purposes of this exercise, you should imagine
Software Quality Factors OOA, OOD, and OOP Object-oriented techniques enhance key external and internal software quality factors, e.g., 1. External (v
Object-Oriented Design and Programming Deja Vu? In the past: Structured = Good Overview of Object-Oriented Design Principles and Techniques Today: Object-Oriented = Good e.g., Douglas C. Schmidt www.cs.wustl.edu/schmidt/
PIE. Internal Structure
PIE Internal Structure PIE Composition PIE (Processware Integration Environment) is a set of programs for integration of heterogeneous applications. The final set depends on the purposes of a solution
An Introduction to Software Architecture
An Introduction to Software Architecture David Garlan and Mary Shaw January 1994 CMU-CS-94-166 School of Computer Science Carnegie Mellon University Pittsburgh, PA 15213-3890 Also published as An Introduction
Stock Trader System. Architecture Description
Stock Trader System Architecture Description Michael Stevens [email protected] http://www.mestevens.com Table of Contents 1. Purpose of Document 2 2. System Synopsis 2 3. Current Situation and Environment
Web Application Architectures
Web Engineering Web Application Architectures Copyright 2013 Ioan Toma & Srdjan Komazec 1 Where we are? # Date Title 1 5 th March Web Engineering Introduction and Overview 2 12 th March Requirements Engineering
Software design (Cont.)
Package diagrams Architectural styles Software design (Cont.) Design modelling technique: Package Diagrams Package: A module containing any number of classes Packages can be nested arbitrarily E.g.: Java
Monitoring Infrastructure (MIS) Software Architecture Document. Version 1.1
Monitoring Infrastructure (MIS) Software Architecture Document Version 1.1 Revision History Date Version Description Author 28-9-2004 1.0 Created Peter Fennema 8-10-2004 1.1 Processed review comments Peter
2.1 What are distributed systems? What are systems? Different kind of systems How to distribute systems? 2.2 Communication concepts
Chapter 2 Introduction to Distributed systems 1 Chapter 2 2.1 What are distributed systems? What are systems? Different kind of systems How to distribute systems? 2.2 Communication concepts Client-Server
Software Architecture. Schahram Dustdar Distributed Systems Group TU Wien
Software Architecture Schahram Dustdar Distributed Systems Group TU Wien 1 Main Topics Software Architecture: Introduction Architecture and Architecture Disciplines Architectural Requirements Architectural
A Template for Documenting Software and Firmware Architectures
A Template for Documenting Software and Firmware Architectures Version 1.3, 15-Mar-00 Michael A. Ogush, Derek Coleman, Dorothea Beringer Hewlett-Packard Product Generation Solutions [email protected] [email protected]
Viewpoint Modeling. Agenda. 1. Viewpoint Modeling 2. ODS, Enterprise Architecture, Viewpoints, Models 3. Modeling approaches and standards
Viewpoint Modeling Antonio Vallecillo Universidad de Málaga Dpto. Lenguajes y Ciencias de la Computación [email protected] http://www.lcc.uma.es/~av Master en Ingeniería del Software e Inteligencia Artificial
Six Strategies for Building High Performance SOA Applications
Six Strategies for Building High Performance SOA Applications Uwe Breitenbücher, Oliver Kopp, Frank Leymann, Michael Reiter, Dieter Roller, and Tobias Unger University of Stuttgart, Institute of Architecture
Chap 1. Introduction to Software Architecture
Chap 1. Introduction to Software Architecture 1. Introduction 2. IEEE Recommended Practice for Architecture Modeling 3. Architecture Description Language: the UML 4. The Rational Unified Process (RUP)
Development of AUTOSAR Software Components within Model-Based Design
2008-01-0383 Development of AUTOSAR Software Components within Model-Based Design Copyright 2008 The MathWorks, Inc. Guido Sandmann Automotive Marketing Manager, EMEA The MathWorks Richard Thompson Senior
Advanced Analysis and Design
Advanced Analysis and Design Architectural Styles Professor David S. Rosenblum Department of Computer Science http://www.cs.ucl.ac.uk/staff/d.rosenblum/ Architectural Styles A set of design rules that
Patterns in Software Engineering
Patterns in Software Engineering Lecturer: Raman Ramsin Lecture 7 GoV Patterns Architectural Part 1 1 GoV Patterns for Software Architecture According to Buschmann et al.: A pattern for software architecture
KWIC Implemented with Pipe Filter Architectural Style
KWIC Implemented with Pipe Filter Architectural Style KWIC Implemented with Pipe Filter Architectural Style... 2 1 Pipe Filter Systems in General... 2 2 Architecture... 3 2.1 Pipes in KWIC system... 3
Managing Variability in Software Architectures 1 Felix Bachmann*
Managing Variability in Software Architectures Felix Bachmann* Carnegie Bosch Institute Carnegie Mellon University Pittsburgh, Pa 523, USA [email protected] Len Bass Software Engineering Institute Carnegie
How To Understand The Concept Of A Distributed System
Distributed Operating Systems Introduction Ewa Niewiadomska-Szynkiewicz and Adam Kozakiewicz [email protected], [email protected] Institute of Control and Computation Engineering Warsaw University of
Glossary of Object Oriented Terms
Appendix E Glossary of Object Oriented Terms abstract class: A class primarily intended to define an instance, but can not be instantiated without additional methods. abstract data type: An abstraction
Group 24. (Testability) Amin Ben Karroum Magnus Raaum Sibte-Haider Syed Mari Asplem Hansen. Architecture Document. Android Sosial application
Group 24 (Testability) Amin Ben Karroum Magnus Raaum Sibte-Haider Syed Mari Asplem Hansen Architecture Document Android Sosial application Konnichiwa TABLE OF CONTENTS 1. Introduction 3 2. Architectural
Architectural Patterns. Layers: Pattern. Architectural Pattern Examples. Layer 3. Component 3.1. Layer 2. Component 2.1 Component 2.2.
Architectural Patterns Architectural Patterns Dr. James A. Bednar [email protected] http://homepages.inf.ed.ac.uk/jbednar Dr. David Robertson [email protected] http://www.inf.ed.ac.uk/ssp/members/dave.htm
Software Engineering Reference Framework
Software Engineering Reference Framework Michel Chaudron, Jan Friso Groote, Kees van Hee, Kees Hemerik, Lou Somers, Tom Verhoeff. Department of Mathematics and Computer Science Eindhoven University of
Automated Virtual Cloud Management: The need of future
Automated Virtual Cloud Management: The need of future Prof. (Ms) Manisha Shinde-Pawar Faculty of Management (Information Technology), Bharati Vidyapeeth Univerisity, Pune, IMRDA, SANGLI Abstract: With
A new approach to automotive electric/electronic engineering life-cycle management
IBM Software Automotive A new approach to automotive electric/electronic engineering life-cycle management Managing engineering data and processes using a single source of truth 2 A new approach to automotive
Engineering Design. Software. Theory and Practice. Carlos E. Otero. CRC Press. Taylor & Francis Croup. Taylor St Francis Croup, an Informa business
Software Engineering Design Theory and Practice Carlos E. Otero CRC Press Taylor & Francis Croup Boca Raton London New York CRC Press is an imprint of the Taylor St Francis Croup, an Informa business AN
Software Service Engineering Architect s Dream or Developer s Nightmare?
Software Service Engineering Architect s Dream or Developer s Nightmare? Gregor Hohpe Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043 [email protected] Abstract. Architectural principles such
OPEN DATA CENTER ALLIANCE Usage Model: Guide to Interoperability Across Clouds
sm OPEN DATA CENTER ALLIANCE Usage Model: Guide to Interoperability Across Clouds SM Table of Contents Legal Notice... 3 Executive Summary... 4 Purpose... 5 Overview... 5 Interoperability... 6 Service
Di 6.1a. Warum naive SOA scheitert Ein Erfahrungsbericht. Adam Bien. January 26-30, 2009, Munich, Germany ICM - International Congress Centre Munich
Di 6.1a January 26-30, 2009, Munich, Germany ICM - International Congress Centre Munich Warum naive SOA scheitert Ein Erfahrungsbericht Adam Bien How To Kill a SOA Project Early? [Warum naive SOA scheitert]
Introduction to software architecture
Open Learning Universiteit Unit 1 Learning Unit 1 Introduction to software architecture Contents Introduction............................................... 7 1.1 What is softwarearchitecture?.................................
Web Application Development for the SOA Age Thinking in XML
Web Application Development for the SOA Age Thinking in XML Enterprise Web 2.0 >>> FAST White Paper August 2007 Abstract Whether you are building a complete SOA architecture or seeking to use SOA services
JOURNAL OF OBJECT TECHNOLOGY
JOURNAL OF OBJECT TECHNOLOGY Online at www.jot.fm. Published by ETH Zurich, Chair of Software Engineering JOT, 2008 Vol. 7 No. 7, September-October 2008 Applications At Your Service Mahesh H. Dodani, IBM,
A distributed system is defined as
A distributed system is defined as A collection of independent computers that appears to its users as a single coherent system CS550: Advanced Operating Systems 2 Resource sharing Openness Concurrency
Real Time Programming: Concepts
Real Time Programming: Concepts Radek Pelánek Plan at first we will study basic concepts related to real time programming then we will have a look at specific programming languages and study how they realize
Programming Without a Call Stack: Event-driven Architectures
Gregor Hohpe Google Programming Without a Call Stack: -driven Architectures www.eaipatterns.com Who's Gregor? Distributed systems, enterprise integration, service-oriented architectures MQ, MSMQ, JMS,
A standards-based approach to application integration
A standards-based approach to application integration An introduction to IBM s WebSphere ESB product Jim MacNair Senior Consulting IT Specialist [email protected] Copyright IBM Corporation 2005. All rights
Software Architecture Document
Software Architecture Document Project Management Cell 1.0 1 of 16 Abstract: This is a software architecture document for Project Management(PM ) cell. It identifies and explains important architectural
Introduction to Embedded Systems. Software Update Problem
Introduction to Embedded Systems CS/ECE 6780/5780 Al Davis logistics minor Today s topics: more software development issues 1 CS 5780 Software Update Problem Lab machines work let us know if they don t
Vragen. Software development model. Software development model. Software development model
Vragen Noem de belangrijkste activiteiten in een software engineeringsproject Welke vormen van onderhoud kan men onderscheiden? Karakteriseer het waterval model Waterfall model Document oriented Suited
Oracle Identity Analytics Architecture. An Oracle White Paper July 2010
Oracle Identity Analytics Architecture An Oracle White Paper July 2010 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may
CS411 Software Architecture Design Final Project Group 10 Customer Relationship Management System
CS411 Software Architecture Design Final Project Group 10 Customer Relationship Management System Ali Ozcan Fuat Basik M. Yusuf Ertekin M. Emre Nevayeshirazi 20700687 20701411 20702750 20701946 Customer
Client/Server Computing Distributed Processing, Client/Server, and Clusters
Client/Server Computing Distributed Processing, Client/Server, and Clusters Chapter 13 Client machines are generally single-user PCs or workstations that provide a highly userfriendly interface to the
Hypervisors. Introduction. Introduction. Introduction. Introduction. Introduction. Credits:
Hypervisors Credits: P. Chaganti Xen Virtualization A practical handbook D. Chisnall The definitive guide to Xen Hypervisor G. Kesden Lect. 25 CS 15-440 G. Heiser UNSW/NICTA/OKL Virtualization is a technique
Developing the Architectural Framework for SOA Adoption
Developing the Architectural Framework for SOA Adoption Oliver Sims Enterprise Architect [email protected] Copyright Open-IT Limited 2005 Agenda Service Orientation just a good technology? The
Rational Unified Process for Systems Engineering RUP SE1.1. A Rational Software White Paper TP 165A, 5/02
Rational Unified Process for Systems Engineering RUP SE1.1 A Rational Software White Paper TP 165A, 5/02 Table of Contents INTRODUCTION...1 BUSINESS MODELING...3 SYSTEM ARCHITECTURE...4 SYSTEM ARCHITECTURE
IBM RATIONAL PERFORMANCE TESTER
IBM RATIONAL PERFORMANCE TESTER Today, a major portion of newly developed enterprise applications is based on Internet connectivity of a geographically distributed work force that all need on-line access
Mobile application architectures
Mobile application architectures Pasi Alatalo*, Jarkko Järvenoja*, Jari Karvonen**, Ari Keronen*, Pasi Kuvaja* *Department of Information Processing Science, University of Oulu, P.O.Box3000, FIN-90014
E-Commerce Supply Chain Management Domain Research and Standard Architectures Kunal Chopra, Jeff Elrod, Bill Glenn, Barry Jones.
E-Commerce Supply Chain Management Domain Research and Standard Architectures Kunal Chopra, Jeff Elrod, Bill Glenn, Barry Jones Introduction E-Commerce Supply Chain Management involves the co-ordination
Motivation Definitions EAI Architectures Elements Integration Technologies. Part I. EAI: Foundations, Concepts, and Architectures
Part I EAI: Foundations, Concepts, and Architectures 5 Example: Mail-order Company Mail order Company IS Invoicing Windows, standard software IS Order Processing Linux, C++, Oracle IS Accounts Receivable
The Service Availability Forum Specification for High Availability Middleware
The Availability Forum Specification for High Availability Middleware Timo Jokiaho, Fred Herrmann, Dave Penkler, Manfred Reitenspiess, Louise Moser Availability Forum [email protected], [email protected],
Programming in C# with Microsoft Visual Studio 2010
Introducción a la Programación Web con C# en Visual Studio 2010 Curso: Introduction to Web development Programming in C# with Microsoft Visual Studio 2010 Introduction to Web Development with Microsoft
Software Defined Security Mechanisms for Critical Infrastructure Management
Software Defined Security Mechanisms for Critical Infrastructure Management SESSION: CRITICAL INFRASTRUCTURE PROTECTION Dr. Anastasios Zafeiropoulos, Senior R&D Architect, Contact: [email protected]
Holistic Performance Analysis of J2EE Applications
Holistic Performance Analysis of J2EE Applications By Madhu Tanikella In order to identify and resolve performance problems of enterprise Java Applications and reduce the time-to-market, performance analysis
Deploying Rule Applications
White Paper Deploying Rule Applications with ILOG JRules Deploying Rule Applications with ILOG JRules White Paper ILOG, September 2006 Do not duplicate without permission. ILOG, CPLEX and their respective
Introduction to Service Oriented Architectures (SOA)
Introduction to Service Oriented Architectures (SOA) Responsible Institutions: ETHZ (Concept) ETHZ (Overall) ETHZ (Revision) http://www.eu-orchestra.org - Version from: 26.10.2007 1 Content 1. Introduction
SECTION 2 PROGRAMMING & DEVELOPMENT
Page 1 SECTION 2 PROGRAMMING & DEVELOPMENT DEVELOPMENT METHODOLOGY THE WATERFALL APPROACH The Waterfall model of software development is a top-down, sequential approach to the design, development, testing
Java Application Developer Certificate Program Competencies
Java Application Developer Certificate Program Competencies After completing the following units, you will be able to: Basic Programming Logic Explain the steps involved in the program development cycle
BSC vision on Big Data and extreme scale computing
BSC vision on Big Data and extreme scale computing Jesus Labarta, Eduard Ayguade,, Fabrizio Gagliardi, Rosa M. Badia, Toni Cortes, Jordi Torres, Adrian Cristal, Osman Unsal, David Carrera, Yolanda Becerra,
Object Oriented Design
Object Oriented Design Kenneth M. Anderson Lecture 20 CSCI 5828: Foundations of Software Engineering OO Design 1 Object-Oriented Design Traditional procedural systems separate data and procedures, and
Architectural patterns
Open Learning Universiteit Unit 3 Learning Unit 3 Architectural patterns Contents Introduction............................................... 35 3.1 Patterns..............................................
Automotive System and Software Architecture
Automotive System and Software Architecture Yanja Dajsuren 2IW80 Software specification and architecture March 25, 2014 Which one has more software? Chevrolet Volt, an example modern day car Boeing 787,
Use Cases. Massimo Felici. Massimo Felici Use Cases c 2004 2011
Use Cases Massimo Felici Use Cases 1 Support requirements engineering activities and the requirement process Capture what a system is supposed to do, i.e., systems functional requirements Describe sequences
Service Oriented Architecture Based Integration. Mike Rosen CTO, AZORA Technologies, Inc. [email protected]
Service Oriented Architecture Based Integration Mike Rosen CTO, AZORA Technologies, Inc. [email protected] Mike Rosen ACCESS TO THE EXPERTS Consultant Chief Enterprise Architect for service and
