OrionPlanning: Improving Modularization and Checking Consistency on Software Architecture
|
|
|
- Moses Rodgers
- 10 years ago
- Views:
Transcription
1 OrionPlanning: Improving Modularization and Checking Consistency on Software Architecture Gustavo Santos, Nicolas Anquetil, Anne Etien, and Stéphane Ducasse RMoD Team INRIA, Lille, France Marco Tulio Valente Department of Computer Science UFMG, Belo Horizonte, Brazil Abstract Many techniques have been proposed in the literature to support architecture definition, conformance, and analysis. However, there is a lack of adoption of such techniques by the industry. Previous work have analyzed this poor support. Specifically, former approaches lack proper analysis techniques (e.g., detection of architectural inconsistencies), and they do not provide extension and addition of new features. In this paper, we present ORIONPLANNING, a prototype tool to assist refactorings at large scale. The tool provides support for modelbased refactoring operations. These operations are performed in an interactive visualization. The contributions of the tool consist in: (i) providing iterative modifications in the architecture, and (ii) providing an environment for architecture inspection and definition of dependency rules. We evaluate ORIONPLANNING against practitioners requirements on architecture definition listed in a previous survey. We also evaluate the tool in a concrete example of software remodularization. Demonstration video URL: Index Terms Software Architecture; Software Maintenance; Architecture Description Language; Architecture Conformance; Remodularization; Rearchitecting. I. INTRODUCTION The definition of the software architecture 1 in early stages of development is of utmost importance as a communication mechanism between stakeholders. It does not only involve the decisions and guidelines that must be followed during the software evolution, but also provides discussion about the requirements (and conflicting parts of them) that the software might have. Inconsistent architectural decisions might deeply compromise the success of a software project [3]. Although many techniques on architecture definition have been proposed in the literature, there is still little adoption of such techniques in industry. Previous work analyzed this gap between research and practitioners needs [4, 7, 15]. Recently, Malavolta et al., [9] conducted a study on practitioners needs in architectural languages (i.e., any form of expression, informal or formal, for architecture description) and which features might be useful for industry projects. They identified seven main features which were useful in past projects: Tool Support: the availability of a mature architecture description tool for a given architectural language. 1 In this paper, we consider the definition of Garlan and Perry: the structure of components of a program, their relationships, and principles and guidelines governing their design and evolution over time [6]. Iterative Architecting: the ability to refine the architecture from a general description. The language should not require the stakeholders to fully describe the architecture. Analysis: the ability to extract and analyze information from the architecture for testing, simulation, and consistency checking, for example. One of the most clear results from the study is the need for proper analysis techniques to detect inconsistencies in the architecture before it would be applied. Multiple Architectural Views: the ability to provide different representations based on different architecture attributes. Some examples of views include structural, behavioural, data-flow, and semantic views. Versioning: the ability to store, keep track of changes, and share a given description. Graphical Syntax: the ability to provide non-textual representations focusing on a different properties of the architecture. Well-defined Semantics: the ability to provide the definition of extra-functional properties. In this paper, we present ORIONPLANNING, a prototype tool to support architecture definition. The user can create an architecture definition from scratch (Section II-A) or iteratively modify a current modularization extracted automatically from source code (Section II-B). ORIONPLANNING provides a simple and interactive visualization to assist remodularization 2 (Section II-C) and an analysis environment to check whether the current architecture is consistent according to user defined restrictions (Section II-D). We evaluate this tool in a specific case of software evolution (Section III), and we compare the tool to previous work on practitioners needs for architecture definition tools (Section IV). Section V presents related work and Section VI concludes this paper. II. ORIONPLANNING IN ACTION Figure 1 depicts the main user interface of ORIONPLANNING. It is build on top of the MOOSE platform [2]. The panel in Figure 1.A shows the systems under analysis and their versions, followed by a panel for color captions (Figure 1.B), and the list of model changes in the selected version (Figure 1.C). On the 2 We consider remodularization a sequence of transformations (not necessarily behavioral preserving) restricted to the architecture /15 c 2015 IEEE 190 VISSOFT 2015, Bremen, Germany Accepted for publication by IEEE. c 2015 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media, including reprinting/ republishing this material for advertising or promotional purposes, creating new collective works, for resale or redistribution to servers or lists, or reuse of any copyrighted component of this work in other works.
2 right side of the window, ORIONPLANNING generates a simple visualization of model entities and dependencies (Figure 1.D) and a list of dependency constraints which will be evaluated when the model changes (Figure 1.E). A Fig. 2. ORIONPLANNING s model selection menu B C Fig. 1. ORIONPLANNING overview. The panel (D) shows three packages A. Loading Code To modify an existing project with ORIONPLANNING, the MOOSE platform already provides support to import code written in C++, Java, Smalltalk, Ada, Cobol, and other languages. The result is an instance of the FAMIX meta-model [5]. FAMIX is a family of meta-models that represent source code entities and relationships of multiple languages in a uniform way. We chose FAMIX because MOOSE already provides inspection and analysis tools which can be extensible for our work (see Section II-D). Details on how to import models in MOOSE are provided in The Moose Book [10]. After importing the code, a new model appears in the model selection panel (Figure 1.A). B. Versioning We use ORION [8] to perform changes on the FAMIX model extracted in the previous step. ORION is a reengineering tool that simulates changes in multiple versions of the same source code model. ORION efficiently handles the creation of children models. A child model has one reference to its parent version and a list of changes that were made in it. We use ORION because it manages modifications in multiple versions, including merging and resolving conflicts, without creating copies of the source code models. Figure 2 shows the panel for model management. In practice, from a given model, the user can (i) inspect the changes in the current version, i.e., check the list of changes and modified entities (see also Section II-D); (ii) eventually create a new child version and make changes in it (see Section II-C); and/or (iii) discard the current version for different reasons. When the user is modifying a child model, the original one is not modified and no copies of this model are created. The list of changes is also displayed in OrionPlanning s main window (see Figure 1.C). D E C. Remodularization and Visualization In order to provide architecture visualization, we use a visualization engine called TELESCOPE. Figure 3 illustrates a visualization of a Java project. Packages are rectangles with classes represented as squares inside the package. Both packages and classes are expandable by mouse click. After expansion, a class shows its methods as small squares. In general, entities that were changed in the current model have their borders colored in blue, and the borders of entities created in the current model are colored in green. Fig. 3. ORIONPLANNING s interactive visualization (right click on a class) The visualization displays three types of dependencies: (i) the package dependency summarizes all dependencies (i.e.,, accesses, references, invocations, etc.) at a package level; (ii) the class dependency basically shows inheritance dependencies between classes inside one package; and (iii) the method dependency shows invocations between methods of different classes. We decided to show a fraction of all the dependencies to not overload the visualization with edges. Refactoring operators (e.g.,, add, paste attribute, and remove entities) are accessible by right click menu, as shown in Figure
3 D. Model Analysis According to previous survey with practitioners, the feature they missed the most in past projects was the support for architectural analyses [9]. Some of suggested analyses include dependency analysis between entities in an architecture, and consistency of architectural constraints [11]. In this section, we describe our work on extending ORIONPLANNING to provide dependency checking constraints defined by the user. MOOSE provides a set of metrics for software, such as size, cohesion, coupling, and complexity metrics. From the visualization provided by ORIONPLANNING, any entity can be inspected and evaluated at any time (right click, Inspect). ORIONPLANNING allows the user to define rules based on these metrics. A possible example consists in restricting the number of classes in a package to less than 20. Due to space constraints, we do not show this feature in this paper. ORIONPLANNING also supports the definition of dependency constraints. The definition uses the same syntax of DCL [12], a DSL for conformance checking originally proposed to Java systems. In ORIONPLANNING, the user first defined logical modules as a set of classes. These classes can be selected by matching a property (e.g., a regular expression), or by manually selecting them into the module. Figure 4 depicts the module definition browser, in which the user selected (by regular expression) all classes which name ends with Action. Other properties can be easily extended to the model. Fig. 5. ORIONPLANNING s dependency constraint browser In order to check the conformance between a model and the defined constraints, ORIONPLANNING queries all the dependencies in the current model. The dependency checker analyzes each dependency with each constraint. Violations to the constraint are highlighted in the visualization with a red color (see Section III in our concrete example). Finally, the dependency checker listens to changes in the current model and checks all the dependencies when a change is performed. III. EVALUATION Fig. 4. ORIONPLANNING s model definition browser Finally, a dependency rule depends on two logical modules, which are defined in the previous step. Given two modules A and B, the user can define the following constraints: only A can depend on B; A can only depend on B; A cannot depend on B; or A must depend on B. The types of constraints are predefined in the DCL language. Dependencies include access to variables, references to class, invocation to methods, and inheritance to classes. Figure 5 shows the rule definition panel, in which the user selects the source module, the type of constraint, the type of dependency to be analyzed, and the target module. In this example, the user defined that all Action classes cannot inherit from classes in the original monolithic package (named classes). To illustrate the use of ORIONPLANNING, we use a simple e-commerce system, called MYWEBMARKET. This system was created independently by another research group to illustrate a case of architectural erosion and the analysis of architectural violations [12]. This system was developed in a sequence of versions. The first one follows a very naive implementation and successive versions improved the modularization to correct specific dependency constraints. In our evaluation, we imported the first version of MYWEB- MARKET, consisting of only one package and performed in ORIONPLANNING the changes that had been made on the actual system (i.e., directly in the code, without any form of modelbased support). We observed a sequence of refactorings steps repeatedly applied on MYWEBMARKET that would therefore be interesting to perform using ORIONPLANNING. Listing I presents an informal description of these refactorings. The goal was to isolate the dependencies to a framework (e.g., HIBER- NATE) into a new package. Furthermore, it was decided to use the Factory design pattern. During the replication study, ORIONPLANNING had the limitation of not supporting the Extract Method refactoring (line 6). This limitation is due to the fact that ORION does not yet handle model information at the level of statements (i.e., using an Abstract Syntax Tree). Such support is work in progress [14]. We intend to include finer granularity refactorings in both ORION and ORIONPLANNING. Despite this limitation, all of the other refactorings were performed successfully. 192
4 LISTING I SYSTEMATIC REFACTORINGS IN MYWEBMARKET S REMODULARIZATION (A PACKAGE PHib WAS CREATED TO HOLD DEPENDENCIES TO HIBERNATE, AFACTORYCLASSFHib WAS CREATED IN PHib) For each class C /2 package PHib that depends on Hibernate 1. create an interface IC in PHib 2. create a class C in PHib implementing IC 3. Create a method public C getc () in the factory FHib 4. 9 method M in C 5. and 9 S statements 2 M creating the dependence on Hibernate 6. extract statements S to a new method M in C 7. replace statements S by a call FHib.getC ().M () Additional to the replication study, we defined a dependency constraint on the resulting model. We performed the constraint definition discussed in Section II-D, i.e., prohibit Action classes to inherit non-action classes. In order to simplify the visualization, we previously moved all the Action classes to a new package, named action. Figure 6 shows the dependency analysis in ORIONPLANNING in two views. The first view (Figure 6.a) shows the package visualization in which the edge between the packages action and classes is red. This property means that this dependency is a constraint violation. The second view (Figure 6.b) shows the list of constraint violations in the version under analysis. In this case, all of the Action classes extend a common class, named ExampleSupport, which does not follow the name convention. In order to fix this violation, the user shall move ExampleSupport to the action package, and optionally change the class name to the * Action name convention. (a) Constraint violation in package visualization IV. DISCUSSION In this section, we evaluate ORIONPLANNING according to previous work on industrial needs on architectural languages (see Section I) as follows: Tool Support: our tool is currently a prototype and it provides support to (i) generate a new architecture from scratch; and (ii) modify an existing architecture by refactorings; Iterative Architecting: our tool accepts that the architecture definition might be incomplete. It provides an environment for incremental changes; Analysis: our tool provides support for inspection of any model entity at any time. It also provides support to define modules, dependency constraints between them and also constraints based on metrics. Constraints can be evaluated on any model after a change; Multiple Architectural Views: currently, ORIONPLANNING relies on the visualization of structural dependencies in an explorative view through packages, classes, and methods. There is work on progress to visualize module definitions (see Section II-D) and conceptual relationships between model entities based on their vocabulary; (b) Violations List Fig. 6. ORIONPLANNING s dependency rules visualization Versioning: the tool allows the user to create child versions and modify them separately, without creating copies of the working model; Graphical Syntax: both architecture definition and refactoring operations are performed in a graphical and interactive visualization; Well defined Semantics: Such semantics are difficult to achieve because they depend on specific project needs. In ORIONPLANNING, we focus on the structural (modular) quality of the code. We recommend that extra-functional aspects of the architecture shall be put into discussion with the stakeholders. V. RELATED WORK A considerable amount of tools for architectural description, software visualization, and architectural conformance have been proposed in the literature in the past decades. The survey to which this work is inspired cites architectural languages such as UML and AADL [9]. However, most of the proposed 193
5 tools lack proper analysis and they do not provide extension in order to add features specific to practitioners needs. In this section, we selected work on architectural languages that applies to two main conditions: (i) these work must provide a tool to support architecture description, and (ii) they also must provide analysis on the proposed architecture. That et al. [13] use a model-based approach to document architectural decisions as architectural patterns. An architectural pattern defines architectural entities, properties of these entities, and rules that these properties must conform. The approach provides analysis by checking the conformance between an existing architecture definition and a set of userdefined architectural patterns. In ORIONPLANNING, the dependency constraints are similar to the definition of an architectural pattern. However, the architecture definition in our tool is not limited to conform to an architectural decision, i.e., our approach is extensible enough to provide other types of analysis and model transformation. Baroni et al. [1] also use a model-based approach and extend it to provide semantic information. With assistance of a wiki environment, additional information is automatically synchronized and integrated with the working model. The analysis consists in checking which architectural entities are specified in the wiki. One critical point of this approach is that the information might be scattered in different documents, which can be difficult to maintain. In ORIONPLANNING, both the working model and the tool itself can be easily extended. In fact, the dependency constraint checking (see Section II-D) extends (i) the model to define logical modules, and (ii) it also extends the visualization to define and automatically check constraint violations. VI. CONCLUSION In this paper, we presented ORIONPLANNING, a prototype tool for iterative architecture description. ORIONPLANNING relies on FAMIX meta-model to describe the architecture as a set of packages and logical modules. Changes to the resulting model are performed by user-interface refactoring operators. We compared the tool with a survey on practitioners needs in architecture languages. We showed the extensibility of the tool by implementing a conformance checking extension based on dependency and metric constraints. We also evaluated the tool with a concrete example which is specific to software evolution. Our study showed the potential of ORIONPLANNING to perform model and analysisbased transformations. In this example, we were able to (i) replicate most of the evolution scenario, (ii) define and check dependency constraints, and (iii) observe refactoring patterns that can be replicated to other cases (the HIBERNATE case). Future work include modifications to the usability of the tool. For example, we would like to make some actions more intuitive by using drag-and-drop instead of menus. Further work also include generating partial source code from an ORION model. The goal is to generate code snippets, following the assumption that the architecture might not be fully described. However, the snippets would have enough information for developers to further complete them. An important improvement would be to include Abstract Syntax Tree modeling to ORIONPLANNING, in order for it to handle more fine-grained operators (e.g., Extract Method). REFERENCES [1] Alessandro Baroni, Henry Muccini, Ivano Malavolta, and Eoin Woods. Architecture description leveraging model driven engineering and semantic wikis. In 11th Conference on Software Architecture, pages , [2] Muhammad U. Bhatti, Nicolas Anquetil, and Stéphane Ducasse. An environment for dedicated software analysis tools. ERCIM News, 88:12 13, [3] Jan Bosch. Architecture challenges for software ecosystems. In 4th European Conference on Software Architecture, pages 93 95, [4] Paul C. Clements. A survey of architecture description languages. In 8th International Workshop on Software Specification and Design, pages 16, [5] Stéphane Ducasse, Nicolas Anquetil, Muhammad Usman Bhatti, Andre Cavalcante Hora, Jannik Laval, and Tudor Girba. MSE and FAMIX 3.0: an Interexchange Format and Source Code Model Family. Research report, URL https: //hal.inria.fr/hal [6] David Garlan, Robert Allen, and John Ockerbloom. Architectural mismatch: Why reuse is so hard. IEEE Software, 12(6): 17 26, [7] Rich Hilliard and Tim Rice. Expressiveness in architecture description languages. In 3rd International Workshop on Software Architecture, pages 65 68, [8] Jannik Laval, Simon Denier, Stéphane Ducasse, and Jean-Rémy Falleri. Supporting simultaneous versions for software evolution assessment. Journal of Science of Computer Programming, 76 (12): , [9] I. Malavolta, P. Lago, H. Muccini, P. Pelliccione, and A. Tang. What industry needs from architectural languages: A survey. IEEE Transactions on Software Engineering, 39(6): , [10] Moose. Importing and Exporting MSE Files. http: // Accessed: [11] Dewayne E. Perry and Alexander L. Wolf. Foundations for the study of software architecture. Software Engineering Notes, 17 (4):40 52, [12] Ricardo Terra, Marco Tulio Valente, Krzysztof Czarnecki, and Roberto S. Bigonha. Recommending refactorings to reverse software architecture erosion. In 16th European Conference on Software Maintenance and Reengineering, pages , [13] Minh Tu Ton That, S. Sadou, and F. Oquendo. Using architectural patterns to define architectural decisions. In Conference on Software Architecture and European Conference on Software Architecture, pages , [14] Yuriy Tymchuk. Extending FAMIX metamodel to generate ASTs for Java and Smalltalk applications. Master s thesis, National University of Lviv, Ukraine, [15] Pengcheng Zhang, Henry Muccini, and Bixin Li. A classification and comparison of model checking software architecture techniques. Journal of Systems and Software, 83(5): ,
BugMaps-Granger: A Tool for Causality Analysis between Source Code Metrics and Bugs
BugMaps-Granger: A Tool for Causality Analysis between Source Code Metrics and Bugs César Couto 1,2, Pedro Pires 1, Marco Túlio Valente 1, Roberto S. Bigonha 1, Andre Hora 3, Nicolas Anquetil 3 1 Department
BugMaps-Granger: a tool for visualizing and predicting bugs using Granger causality tests
Couto et al. Journal of Software Engineering Research and Development 2014, 2:1 SOFTWARE Open Access BugMaps-Granger: a tool for visualizing and predicting bugs using Granger causality tests Cesar Couto
JSClassFinder: A Tool to Detect Class-like Structures in JavaScript
JSClassFinder: A Tool to Detect Class-like Structures in JavaScript Leonardo Humberto Silva 1, Daniel Hovadick 2, Marco Tulio Valente 2, Alexandre Bergel 3,Nicolas Anquetil 4, Anne Etien 4 1 Department
ProGUM-Web: Tool Support for Model-Based Development of Web Applications
ProGUM-Web: Tool Support for Model-Based Development of Web Applications Marc Lohmann 1, Stefan Sauer 1, and Tim Schattkowsky 2 1 University of Paderborn, Computer Science, D 33095 Paderborn, Germany {mlohmann,sauer}@upb.de
A Variability Viewpoint for Enterprise Software Systems
2012 Joint Working Conference on Software Architecture & 6th European Conference on Software Architecture A Variability Viewpoint for Enterprise Software Systems Matthias Galster University of Groningen,
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)
Program Understanding with Code Visualization
Program Understanding with Code Visualization Arif Iftikhar Department of Computer Science National University of Computer and Emerging Sciences 852-B Faisal Town, Lahore, Pakistan [email protected]
SCADE System 17.0. Technical Data Sheet. System Requirements Analysis. Technical Data Sheet SCADE System 17.0 1
SCADE System 17.0 SCADE System is the product line of the ANSYS Embedded software family of products and solutions that empowers users with a systems design environment for use on systems with high dependability
Modeling the User Interface of Web Applications with UML
Modeling the User Interface of Web Applications with UML Rolf Hennicker,Nora Koch,2 Institute of Computer Science Ludwig-Maximilians-University Munich Oettingenstr. 67 80538 München, Germany {kochn,hennicke}@informatik.uni-muenchen.de
Component visualization methods for large legacy software in C/C++
Annales Mathematicae et Informaticae 44 (2015) pp. 23 33 http://ami.ektf.hu Component visualization methods for large legacy software in C/C++ Máté Cserép a, Dániel Krupp b a Eötvös Loránd University [email protected]
Software Analysis Visualization
28th International Conference on Software Engineering Software Analysis Visualization Harald Gall and Michele Lanza !oftware Visualiza"o# Tutorial F7 Software Evolution: Analysis and Visualization 2006
Tool Support for Software Variability Management and Product Derivation in Software Product Lines
Tool Support for Software Variability Management and Product Derivation in Software s Hassan Gomaa 1, Michael E. Shin 2 1 Dept. of Information and Software Engineering, George Mason University, Fairfax,
A Model-based Software Architecture for XML Data and Metadata Integration in Data Warehouse Systems
Proceedings of the Postgraduate Annual Research Seminar 2005 68 A Model-based Software Architecture for XML and Metadata Integration in Warehouse Systems Abstract Wan Mohd Haffiz Mohd Nasir, Shamsul Sahibuddin
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
Contents. Introduction and System Engineering 1. Introduction 2. Software Process and Methodology 16. System Engineering 53
Preface xvi Part I Introduction and System Engineering 1 Chapter 1 Introduction 2 1.1 What Is Software Engineering? 2 1.2 Why Software Engineering? 3 1.3 Software Life-Cycle Activities 4 1.3.1 Software
Tool Support for Model Checking of Web application designs *
Tool Support for Model Checking of Web application designs * Marco Brambilla 1, Jordi Cabot 2 and Nathalie Moreno 3 1 Dipartimento di Elettronica e Informazione, Politecnico di Milano Piazza L. Da Vinci,
The Class Blueprint A Visualization of the Internal Structure of Classes
The Class Blueprint A Visualization of the Internal Structure of Classes Michele Lanza Software Composition Group University Of Bern Bern, Switzerland [email protected] Stéphane Ducasse Software Composition
Table of Contents. CHAPTER 1 Web-Based Systems 1. CHAPTER 2 Web Engineering 12. CHAPTER 3 A Web Engineering Process 24
Table of Contents CHAPTER 1 Web-Based Systems 1 The Web 1 Web Applications 2 Let s Introduce a Case Study 3 Are WebApps Really Computer Software? 4 Are the Attributes of WebApps Different from the Attributes
Integrating TAU With Eclipse: A Performance Analysis System in an Integrated Development Environment
Integrating TAU With Eclipse: A Performance Analysis System in an Integrated Development Environment Wyatt Spear, Allen Malony, Alan Morris, Sameer Shende {wspear, malony, amorris, sameer}@cs.uoregon.edu
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
An Aspect-Oriented Product Line Framework to Support the Development of Software Product Lines of Web Applications
An Aspect-Oriented Product Line Framework to Support the Development of Software Product Lines of Web Applications Germán Harvey Alférez Salinas Department of Computer Information Systems, Mission College,
BCS THE CHARTERED INSTITUTE FOR IT. BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT SOFTWARE ENGINEERING 2
BCS THE CHARTERED INSTITUTE FOR IT BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT SOFTWARE ENGINEERING 2 EXAMINERS REPORT Friday 2 nd October 2015 Answer any THREE
A Case Study on Model-Driven and Conventional Software Development: The Palladio Editor
A Case Study on Model-Driven and Conventional Software Development: The Palladio Editor Klaus Krogmann, Steffen Becker University of Karlsruhe (TH) {krogmann, sbecker}@ipd.uka.de Abstract: The actual benefits
Training Management System for Aircraft Engineering: indexing and retrieval of Corporate Learning Object
Training Management System for Aircraft Engineering: indexing and retrieval of Corporate Learning Object Anne Monceaux 1, Joanna Guss 1 1 EADS-CCR, Centreda 1, 4 Avenue Didier Daurat 31700 Blagnac France
Software Engineering & Architecture
Software Engineering & Architecture 11. QUALITY METRICS AND VISUALIZATION Martin Kropp University of Applied Sciences Northwestern Switzerland Institute for Mobile and Distributed Systems References Some
The Concern-Oriented Software Architecture Analysis Method
The Concern-Oriented Software Architecture Analysis Method Author: E-mail: Student number: Supervisor: Graduation committee members: Frank Scholten [email protected] s0002550 Dr. ir. Bedir Tekinerdoǧan
Business Process Management Enabled by SOA
Business Process Management Enabled by SOA Jyväskylä 8.5.2007 Kimmo Kaskikallio IT Architect IBM Software Brands Five middleware product lines designed to work together Service-Oriented Architecture (SOA)
sql-schema-comparer: Support of Multi-Language Refactoring with Relational Databases
sql-schema-comparer: Support of Multi-Language Refactoring with Relational Databases Hagen Schink Institute of Technical and Business Information Systems Otto-von-Guericke-University Magdeburg, Germany
Revel8or: Model Driven Capacity Planning Tool Suite
Revel8or: Model Driven Capacity Planning Tool Suite Liming Zhu 1,2, Yan Liu 1,2, Ngoc Bao Bui 1,2,Ian Gorton 3 1 Empirical Software Engineering Program, National ICT Australia Ltd. 2 School of Computer
Business Modeling with UML
Business Modeling with UML Hans-Erik Eriksson and Magnus Penker, Open Training Hans-Erik In order to keep up and be competitive, all companies Ericsson is and enterprises must assess the quality of their
A Framework of Model-Driven Web Application Testing
A Framework of Model-Driven Web Application Testing Nuo Li, Qin-qin Ma, Ji Wu, Mao-zhong Jin, Chao Liu Software Engineering Institute, School of Computer Science and Engineering, Beihang University, China
Baseline Code Analysis Using McCabe IQ
White Paper Table of Contents What is Baseline Code Analysis?.....2 Importance of Baseline Code Analysis...2 The Objectives of Baseline Code Analysis...4 Best Practices for Baseline Code Analysis...4 Challenges
Modernized and Maintainable Code. Frank Weil, Ph.D. UniqueSoft, LLC
Modernized and Maintainable Code Frank Weil, Ph.D. UniqueSoft, LLC UniqueSoft is a provider of next-generation software development tools and services specializing in modernizing legacy software using
Customer Bank Account Management System Technical Specification Document
Customer Bank Account Management System Technical Specification Document Technical Specification Document Page 1 of 15 Table of Contents Contents 1 Introduction 3 2 Design Overview 4 3 Topology Diagram.6
In the case of the online marketing of Jaro Development Corporation, it
Chapter 2 THEORETICAL FRAMEWORK 2.1 Introduction Information System is processing of information received and transmitted to produce an efficient and effective process. One of the most typical information
Program Understanding in Software Engineering
Taming the complexity: The need for program understanding in software engineering Raghvinder S. Sangwan, Ph.D. Pennsylvania State University, Great Valley School of Graduate Professional Studies Robert
Evaluating OO-CASE tools: OO research meets practice
Evaluating OO-CASE tools: OO research meets practice Danny Greefhorst, Matthijs Maat, Rob Maijers {greefhorst, maat, maijers}@serc.nl Software Engineering Research Centre - SERC PO Box 424 3500 AK Utrecht
How to realize software evolution of existing BOSS via ZTE SEEM
How to realize software evolution of existing BOSS via ZTE SEEM Zhan Zhang Abstract Due to long-term construction and accumulation for different purposes, telecom carriers normally have very complex IT
Towards Collaborative Requirements Engineering Tool for ERP product customization
Towards Collaborative Requirements Engineering Tool for ERP product customization Boban Celebic, Ruth Breu, Michael Felderer, Florian Häser Institute of Computer Science, University of Innsbruck 6020 Innsbruck,
Bringing Business Objects into ETL Technology
Bringing Business Objects into ETL Technology Jing Shan Ryan Wisnesky Phay Lau Eugene Kawamoto Huong Morris Sriram Srinivasn Hui Liao 1. Northeastern University, [email protected] 2. Stanford University,
VISUALIZATION APPROACH FOR SOFTWARE PROJECTS
Canadian Journal of Pure and Applied Sciences Vol. 9, No. 2, pp. 3431-3439, June 2015 Online ISSN: 1920-3853; Print ISSN: 1715-9997 Available online at www.cjpas.net VISUALIZATION APPROACH FOR SOFTWARE
WebSphere Business Modeler
Discovering the Value of SOA WebSphere Process Integration WebSphere Business Modeler Workshop SOA on your terms and our expertise Soudabeh Javadi Consulting Technical Sales Support WebSphere Process Integration
VDM vs. Programming Language Extensions or their Integration
VDM vs. Programming Language Extensions or their Integration Alexander A. Koptelov and Alexander K. Petrenko Institute for System Programming of Russian Academy of Sciences (ISPRAS), B. Communisticheskaya,
MiniDraw Introducing a framework... and a few patterns
MiniDraw Introducing a framework... and a few patterns What is it? [Demo] 2 1 What do I get? MiniDraw helps you building apps that have 2D image based graphics GIF files Optimized repainting Direct manipulation
GECKO Software. Introducing FACTORY SCHEMES. Adaptable software factory Patterns
Introducing FACTORY SCHEMES Adaptable software factory Patterns FACTORY SCHEMES 3 Standard Edition Community & Enterprise Key Benefits and Features GECKO Software http://consulting.bygecko.com Email: [email protected]
Overview. Software engineering and the design process for interactive systems. Standards and guidelines as design rules
Overview Software engineering and the design process for interactive systems Standards and guidelines as design rules Usability engineering Iterative design and prototyping Design rationale A. Dix, J.
Chapter 7: Software Engineering
Chapter 7: Software Engineering Computer Science: An Overview Eleventh Edition by J. Glenn Brookshear Copyright 2012 Pearson Education, Inc. Chapter 7: Software Engineering 7.1 The Software Engineering
A Technology Based Solution to Move Client Server Applications to Java /.NET in Native 3-Tier Web Code Structures
A Technology Based Solution to Move Client Server Applications to Java /.NET in Native 3-Tier Web Code Structures Accelerated Application Modernization (AAM) Page 1 of 16 Table of Contents TABLE OF CONTENTS...
NASCIO EA Development Tool-Kit Solution Architecture. Version 3.0
NASCIO EA Development Tool-Kit Solution Architecture Version 3.0 October 2004 TABLE OF CONTENTS SOLUTION ARCHITECTURE...1 Introduction...1 Benefits...3 Link to Implementation Planning...4 Definitions...5
Source Code Translation
Source Code Translation Everyone who writes computer software eventually faces the requirement of converting a large code base from one programming language to another. That requirement is sometimes driven
Whitepaper Data Governance Roadmap for IT Executives Valeh Nazemoff
Whitepaper Data Governance Roadmap for IT Executives Valeh Nazemoff The Challenge IT Executives are challenged with issues around data, compliancy, regulation and making confident decisions on their business
Unit I. Introduction
Unit I Introduction Product Life Cycles Products also have life cycles The Systems Development Life Cycle (SDLC) is a framework for describing the phases involved in developing and maintaining information
COURSE CODE : 4072 COURSE CATEGORY : A PERIODS / WEEK : 4 PERIODS / SEMESTER : 72 CREDITS : 4
COURSE TITLE : SOFTWARE ENGINEERING COURSE CODE : 4072 COURSE CATEGORY : A PERIODS / WEEK : 4 PERIODS / SEMESTER : 72 CREDITS : 4 TIME SCHEDULE MODULE TOPICS PERIODS 1 Software engineering discipline evolution
An Eclipse Plug-In for Visualizing Java Code Dependencies on Relational Databases
An Eclipse Plug-In for Visualizing Java Code Dependencies on Relational Databases Paul L. Bergstein, Priyanka Gariba, Vaibhavi Pisolkar, and Sheetal Subbanwad Dept. of Computer and Information Science,
IndustrialIT System 800xA Engineering
IndustrialIT System 800xA Engineering Overview Features and Benefits Integrated Engineering Environment: Supports the engineering of the entire extended automation system from field devices to plant management
Increasing Development Knowledge with EPFC
The Eclipse Process Framework Composer Increasing Development Knowledge with EPFC Are all your developers on the same page? Are they all using the best practices and the same best practices for agile,
WHITEPAPER. Managing Design Changes in Enterprise SBM Installations
WHITEPAPER Managing Design Changes in Enterprise SBM Installations By Tom Clement Serena Software, Inc. October 2013 Summary This document explains how to organize your SBM maintenance and development
How To Design An Information System
Information system for production and mounting of plastic windows MARCEL, MELIŠ Slovak University of Technology - Faculty of Material Sciences and Technology in Trnava, Paulínska 16 street, Trnava, 917
Background: Business Value of Enterprise Architecture TOGAF Architectures and the Business Services Architecture
Business Business Services Services and Enterprise and Enterprise This Workshop Two parts Background: Business Value of Enterprise TOGAF s and the Business Services We will use the key steps, methods and
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
Traceability Method for Software Engineering Documentation
www.ijcsi.org 216 Traceability Method for Software Engineering Documentation Nur Adila Azram 1 and Rodziah Atan 2 1 Department of Information System, Universiti Putra Malaysia, Company Serdang, Selangor,
Systems Integration: Co C mp m onent- t bas a e s d s o s ftw ft a w r a e r e ngin i eeri r n i g
Systems Integration: Component-based software engineering Objectives To explain that CBSE is concerned with developing standardised components and composing these into applications To describe components
Chapter 4 Software Lifecycle and Performance Analysis
Chapter 4 Software Lifecycle and Performance Analysis This chapter is aimed at illustrating performance modeling and analysis issues within the software lifecycle. After having introduced software and
11 Tips to make the requirements definition process more effective and results more usable
1 11 Tips to make the s definition process more effective and results more usable This article discusses what I believe are the key techniques for making s definition process repeatable from project to
Péter Hegedűs, István Siket MTA-SZTE Research Group on Artificial Intelligence, Szeged, Hungary {hpeter,siket}@inf.u-szeged.hu
QualityGate SourceAudit: A Tool for Assessing the Technical Quality of Software Tibor Bakota FrontEndART Software Ltd. Zászló u. 3 I./5. H-6722 Szeged, Hungary [email protected] Péter Hegedűs, István
Software Engineering. Software Development Process Models. Lecturer: Giuseppe Santucci
Software Engineering Software Development Process Models Lecturer: Giuseppe Santucci Summary Modeling the Software Process Generic Software Process Models Waterfall model Process Iteration Incremental
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
Tool Support for Inspecting the Code Quality of HPC Applications
Tool Support for Inspecting the Code Quality of HPC Applications Thomas Panas Dan Quinlan Richard Vuduc Center for Applied Scientific Computing Lawrence Livermore National Laboratory P.O. Box 808, L-550
BCS HIGHER EDUCATION QUALIFICATIONS Level 6 Professional Graduate Diploma in IT. March 2013 EXAMINERS REPORT. Software Engineering 2
BCS HIGHER EDUCATION QUALIFICATIONS Level 6 Professional Graduate Diploma in IT March 2013 EXAMINERS REPORT Software Engineering 2 General Comments The pass rate this year was significantly better than
Oracle Service Bus Examples and Tutorials
March 2011 Contents 1 Oracle Service Bus Examples... 2 2 Introduction to the Oracle Service Bus Tutorials... 5 3 Getting Started with the Oracle Service Bus Tutorials... 12 4 Tutorial 1. Routing a Loan
CS 389 Software Engineering. Lecture 2 Chapter 2 Software Processes. Adapted from: Chap 1. Sommerville 9 th ed. Chap 1. Pressman 6 th ed.
CS 389 Software Engineering Lecture 2 Chapter 2 Software Processes Adapted from: Chap 1. Sommerville 9 th ed. Chap 1. Pressman 6 th ed. Topics covered Software process models Process activities Coping
Development of Enterprise Architecture of PPDR Organisations W. Müller, F. Reinert
Int'l Conf. Software Eng. Research and Practice SERP'15 225 Development of Enterprise Architecture of PPDR Organisations W. Müller, F. Reinert Fraunhofer Institute of Optronics, System Technologies and
CodeCrawler An Extensible and Language Independent 2D and 3D Software Visualization Tool
CodeCrawler An Extensible and Language Independent 2D and 3D Software Visualization Tool Michele Lanza Software Engineering Group Department of Informatics University of Zurich, Switzerland Stéphane Ducasse
Generating Aspect Code from UML Models
Generating Aspect Code from UML Models Iris Groher Siemens AG, CT SE 2 Otto-Hahn-Ring 6 81739 Munich, Germany [email protected] Stefan Schulze Siemens AG, CT SE 2 Otto-Hahn-Ring 6 81739 Munich,
Developing SOA solutions using IBM SOA Foundation
Developing SOA solutions using IBM SOA Foundation Course materials may not be reproduced in whole or in part without the prior written permission of IBM. 4.0.3 4.0.3 Unit objectives After completing this
A Monitored Student Testing Application Using Cloud Computing
A Monitored Student Testing Application Using Cloud Computing R. Mullapudi and G. Hsieh Department of Computer Science, Norfolk State University, Norfolk, Virginia, USA [email protected], [email protected]
Basic Concepts. Software Architecture Lecture 3. Copyright Richard N. Taylor, Nenad Medvidovic, and Eric M. Dashofy. All rights reserved.
Basic Concepts Software Architecture Lecture 3 Copyright Richard N. Taylor, Nenad Medvidovic, and Eric M. Dashofy. All rights reserved. Learning Objectives Formally define software architecture Distinguish
The ADOxx Metamodelling Platform Workshop "Methods as Plug-Ins for Meta-Modelling" in conjunction with "Modellierung 2010", Klagenfurt
The ADOxx Metamodelling Platform Workshop "Methods as Plug-Ins for Meta-Modelling" in conjunction with "Modellierung 2010", Klagenfurt Dr. Harald Kühn 24.03.2010 Agenda 1 Overview 2 Deployment and Integration
Some Methodological Clues for Defining a Unified Enterprise Modelling Language
Some Methodological Clues for Defining a Unified Enterprise Modelling Language Michaël Petit University of Namur, Belgium, [email protected] Abstract The need for a Unified Enterprise Modelling Language
Model Simulation in Rational Software Architect: Business Process Simulation
Model Simulation in Rational Software Architect: Business Process Simulation Mattias Mohlin Senior Software Architect IBM The BPMN (Business Process Model and Notation) is the industry standard notation
Service-oriented architecture in e-commerce applications
Service-oriented architecture in e-commerce applications What is a Service Oriented Architecture? Depends on who you ask Web Services A technical architecture An evolution of distributed computing and
Linking BPMN, ArchiMate, and BWW: Perfect Match for Complete and Lawful Business Process Models?
Linking BPMN, ArchiMate, and BWW: Perfect Match for Complete and Lawful Business Process Models? Ludmila Penicina Institute of Applied Computer Systems, Riga Technical University, 1 Kalku, Riga, LV-1658,
Rational Team Concert. Guido Salvaneschi Dipartimento di Elettronica e Informazione Politecnico di Milano [email protected].
Rational Team Concert Guido Salvaneschi Dipartimento di Elettronica e Informazione Politecnico di Milano [email protected] Project Areas The project area is the system's representation of a software
Development of Tool Extensions with MOFLON
Development of Tool Extensions with MOFLON Ingo Weisemöller, Felix Klar, and Andy Schürr Fachgebiet Echtzeitsysteme Technische Universität Darmstadt D-64283 Darmstadt, Germany {weisemoeller klar schuerr}@es.tu-darmstadt.de
Component-based Development Process and Component Lifecycle Ivica Crnkovic 1, Stig Larsson 2, Michel Chaudron 3
Component-based Development Process and Component Lifecycle Ivica Crnkovic 1, Stig Larsson 2, Michel Chaudron 3 1 Mälardalen University, Västerås, Sweden, [email protected] 2 ABB Corporate Research,
Teamstudio USER GUIDE
Teamstudio Software Engineering Tools for IBM Lotus Notes and Domino USER GUIDE Edition 30 Copyright Notice This User Guide documents the entire Teamstudio product suite, including: Teamstudio Analyzer
Winery A Modeling Tool for TOSCA-based Cloud Applications
Institute of Architecture of Application Systems Winery A Modeling Tool for TOSCA-based Cloud Applications Oliver Kopp 1,2, Tobias Binz 2, Uwe Breitenbücher 2, and Frank Leymann 2 1 IPVS, 2 IAAS, University
