Institutionen För Datavetenskap Department of Computer and Information Science

Total Page:16

File Type:pdf, Size:1020Kb

Institutionen För Datavetenskap Department of Computer and Information Science Institutionen för datavetenskap Department of Computer and Information Science Master’s Thesis Implementation and evaluation of data persistence tools for temporal versioned data models Tor Knutsson Reg Nr: LIU-IDA/LITH-EX-A–09/032–SE Linköping 2009 Department of Computer and Information Science Linköpings universitet SE-581 83 Linköping, Sweden Institutionen för datavetenskap Department of Computer and Information Science Master’s Thesis Implementation and evaluation of data persistence tools for temporal versioned data models Tor Knutsson Reg Nr: LIU-IDA/LITH-EX-A–09/032–SE Linköping 2009 Supervisor: Pascal Muller Wealth CCC S.A Examiner: Lena Strömbäck ida, Linköping University Department of Computer and Information Science Linköpings universitet SE-581 83 Linköping, Sweden Avdelning, Institution Datum Division, Department Date Division for Databases and Information Techniques Department of Computer and Information Science 2009-26-005 Linköpings universitet SE-581 83 Linköping, Sweden Språk Rapporttyp ISBN Language Report category — Svenska/Swedish Licentiatavhandling ISRN Engelska/English Examensarbete LIU-IDA/LITH-EX-A–09/032–SE C-uppsats Serietitel och serienummer ISSN D-uppsats Title of series, numbering — Övrig rapport URL för elektronisk version http://urn.kb.se/resolve?urn=urn:nbn:se:liu:diva-19979 Titel Implementation och utvärdering av persistensverktyg för temporala version- Title shanterade datamodeller Implementation and evaluation of data persistence tools for temporal versioned data models Författare Tor Knutsson Author Sammanfattning Abstract The purpose of this thesis was to investigate different concepts and tools which could support the development of a middleware which persists a temporal and ver- sioned relational data model in an enterprise environment. Further requirements for the target application was that changes to the data model had to be facili- tated, so that a small change to the model would not result in changes in several files and application layers. Other requirements include permissioning and audit tracing. In the thesis the reader is presented with a comparison of a set of tools for enterprise development and object/relational mapping. One of the tools, a code generator, is chosen as a good candidate to match the requirements of the project. An implementation is presented, where the chosen tool is used. An XML- based language which is used to define a data model and to provide input data for the tool is presented. Other concepts concerning the implementation is then described in detail. Finally, the author discusses alternative solutions and future improvements. Nyckelord Keywords object/relational mapping, database structure, code generation, n-tier develop- ment, enterprise applications, software engineering, model driven architecture Abstract The purpose of this thesis was to investigate different concepts and tools which could support the development of a middleware which persists a temporal and versioned relational data model in an enterprise environment. Further require- ments for the target application was that changes to the data model had to be facilitated, so that a small change to the model would not result in changes in several files and application layers. Other requirements include permissioning and audit tracing. In the thesis the reader is presented with a comparison of a set of tools for enterprise development and object/relational mapping. One of the tools, a code generator, is chosen as a good candidate to match the requirements of the project. An implementation is presented, where the chosen tool is used. An XML-based language which is used to define a data model and to provide input data for the tool is presented. Other concepts concerning the implementation is then described in detail. Finally, the author discusses alternative solutions and future improvements. Sammanfattning Syftet med detta exjobb var att undersöka olika koncept och verktyg som kunde underlätta utvecklandet av ett mellanlager för permanent lagring av en temporell och versionshanterad relationell datamodell i enterprise-miljö. Kraven på applika- tionsstödet var bland annat att underlätta förändringar av datamodellen så att en liten förändring av själva modellen inte skulle behöva resultera i småändringar över flera filer och applikationslager. Andra krav på produkten var implementation av en säkerhetsmodell och revisionsverktyg. I exjobbet kan läsaren se en jämförelse av olika verktyg för persistens, object/relational mapping, och enterpriseutveckling. Ett av verktygen, en kodgenerator, väljs som en god kandidat för projektets krav. En implementation presenteras, där verktyget används. Ett XML-baserat språk för att definiera en datamodell och driva kodgeneratorn presenteras. Andra de- lar av implementationen redovisas också i detalj. Slutligen diskuterar författaren alternativa och framtida lösningar. v Acknowledgments Many thanks to Dominique Portal for giving me the opportunity to come to Switzerland and carry out this thesis project. I would also like to thank Pascal Muller for taking the time and showing a great interest in the project and for the many discussions about everything relating to it. Special thanks also goes to to my colleagues Guillaume and Laurent for helping me out with tricky technicalities, and to my friend Marcus Frödin for his support and motivation. Thank you to my examiner Lena Strömbäck for showing patience and providing a lot of feedback when writing this report. Finally, a big thank you to my parents for pushing me and a huge eulogy to Albane for showing patience and motivating me during late nights and weekends. Genève, May 2009 Tor Knutsson vii Contents 1 Introduction 1 1.1 Prerequisites . .1 1.2 Problem statement . .1 1.3 Overview . .2 1.4 Method . .3 1.5 Glossary . .3 2 Literature Study 5 2.1 Overview . .5 2.2 Problem description . .6 2.2.1 Scope . .6 2.3 Software patterns . .7 2.4 Object/Relational Mapping . .8 2.5 Database efforts . 10 2.5.1 Object-relational databases . 10 2.5.2 Object-oriented databases . 11 2.5.3 Reflections . 12 2.6 Temporality . 12 2.6.1 Thoughts on revision control . 14 3 Requirements 15 3.1 Functional requirements . 16 3.1.1 Object/Relational Mapping to Temporal and Versioned en- tities . 16 3.1.2 Permissioning . 16 3.1.3 Audit Tracing . 17 3.1.4 Adjacent database identifiers . 17 3.1.5 Variable Cache . 17 3.1.6 Compile-time error prevention . 18 3.1.7 Environment . 18 3.2 Non-Functional Requirements . 18 ix x Contents 4 The Temporal and Versioned Properties 19 4.1 Temporal entity . 19 4.2 Versioned entity . 20 4.3 Temporal Versioned entity . 20 4.4 Comparing the definitions with literature . 22 5 Available Tools 23 5.1 Model Driven Architecture . 23 5.2 Availability . 25 5.3 Coverage, compliance, artifacts . 26 5.4 Discussion . 26 5.5 Conclusion . 29 5.6 Criticism . 29 6 Architecture Proposals 31 6.1 Layers and Tiers . 31 6.2 Direct Stakeholders . 31 6.3 Database Representation . 32 6.3.1 Linked lists approach . 32 6.3.2 Property separation . 33 6.3.3 Summary . 34 7 Implementation 35 7.1 Creation process . 35 7.1.1 The modeling language . 36 7.2 Overview . 37 7.3 Code generation . 38 7.4 The mockup model . 39 7.4.1 Database Tier . 39 7.4.2 Database Access Layer . 45 7.4.3 Communications and Helper layer . 45 7.4.4 Persistence Layer . 46 7.4.5 Domain Layer . 47 8 Performance Test 51 8.1 Environment . 52 8.2 Test data . 52 8.3 Test results . 53 8.4 Criticism . 54 9 Discussion 55 9.1 Alternative solutions . 55 9.2 Future Work . 56 9.2.1 Dynamic Queries . 56 9.2.2 Extended Properties . 56 9.2.3 Scalability and distribution . 56 Contents xi Bibliography 59 A The Mockup Model 63 B The Model Languange 66 Chapter 1 Introduction WealthCCC implements and maintains a large financial consolidation system called Atrium. Atrium is a strongly data-driven multi-tiered application which uses re- lationally stored data from multiple sources, to generate reports, analysis and projections. This thesis investigates and reflects over persistence tools and their different properties, to find out if or how each tool can be of use when creat- ing a middleware solution that can be used by WealthCCC and other enterprise application developers with similar requirements. 1.1 Prerequisites The reader of this rapport should have a good knowledge of object-oriented pro- gramming, database programming, and the concept of relational databases and the relational model. Furthermore, basic knowledge of XML, XML-related technolo- gies and the programming language Visual Basic.NET may facilitate the reading experience. 1.2 Problem statement The purpose of this thesis is to investigate object/relational mapping concepts, tools, and patterns in order to create the foundation of a generic middleware layer for a relational database that handles persistent data connections. Enterprise ap- plications tend to grow large due to their complexity. To enhance readability and maintainability, the application can be divided into layers. Each layer handles spe- cific tasks. By dividing the tasks this way, the layers become more interchangeable [39]. Secondly, enterprise applications can be divided into tiers. The thought ap- plication is divided in at least three tiers. The data model in the scope of this thesis has specific characteristics, such as high data contention, versioned storage and values which vary over time. The need for an automatized tool that handles data persistence arises from maintainability, something which is increasingly com- plex with each factor mentioned above. A small change to the data model may 1 2 Introduction result in a large number of changes throughout several layers of an application [16]. The problem statement is as follows: “What are the requirements for a generic middleware layer providing support for temporal and versioned relational data, and how can it be implemented in a way that facilitates change?” 1.3 Overview Chapter 1: Introduction In this chapter, the reader is presented with a quick description of the project as well as the problem statement.
Recommended publications
  • Mastering JEE Design Patterns
    "Charting the Course ... ... to Your Success!" Mastering JEE Design Patterns Course Summary Description Geared for experienced enterprise Java (JEE) developers, Mastering JEE Design Patterns is a lab- intensive Java / JEE design patterns training course which explores the many sophisticated JEE-oriented design patterns and how to use these patterns to develop solid, robust and reusable JEE applications. Technologies such as JPA and EJB3, as well as frameworks such as Spring, web services and rich interfaces, have significantly impacted previous generations of design patterns. Many of these technologies were heavily influenced by the very problems that previous design patterns addressed. While the basic patterns still ring true, the more advanced patterns have evolved into more robust solutions for secure, stable and scalable enterprise applications. Working in a hands-on environment, developers will explore key patterns in each of the different JEE layers and how they are used most effectively in building robust, reusable JEE applications. Objectives Working in a dynamic, interactive discussion and hands-on programming environment, let by our JEE expert team, students will explore the following pattern categories: Crosscutting Business Tier Presentation Tier Integration Tier Topics Introduction to Design Patterns Integration Tier Patterns “Gang of Four” Design Patterns Presentation Tier Patterns Base Patterns Crosscutting Patterns Business Tier Patterns Working with Patterns Audience This is an intermediate level Java EE (JEE) developer course, designed for experienced Java developers, new to JEE, that need to further extend their skills in web development and Struts. Prerequisites Attendees should have an extensive working knowledge in developing basic Java applications. Duration Five days Due to the nature of this material, this document refers to numerous hardware and software products by their trade names.
    [Show full text]
  • Design Optimizations of Enterprise Applications – a Literature Survey
    Design Optimizations of Enterprise Applications – A Literature Survey Willie (Phong) Tu Dept. of Computer Science, University of Calgary [email protected] Abstract Another dimension is the performance improvement for the single user versus multiple users, in other words, Software design patterns have been defined as scalability. The design optimization patterns noted here possible solutions to reoccurring problems. One aspect will focus on actual running time of operations for of the problems is performance. This can be arguably single user performance and multi-user scalability true in high volume enterprise applications. This paper improvements. will explore the current discussions and research in The organization of the findings is categorized utilization of software design patterns to optimize through the usage of an architectural pattern, which is enterprise applications. defined as layer [5]. The layers used are the primary three-layer architecture for information systems [10,21], which includes the data access layer, domain layer, and 1. Introduction presentation layer. Design optimization patterns that spans layers will be elaborated first, then a bottom up First, let’s define what is design optimization. In this approach starting with the data access layer, followed by context, design optimization is the improvement of an the domain layer, and finally the presentation layer. We application’s design and performance using software will then continue on with findings from different design patterns. Design improvements can be subjective, enterprise applications. After which, we will summarize thus the main qualifier is the utilization of software the current state in design optimizations of enterprise design patterns to improve the performance of an applications based on the findings.
    [Show full text]
  • Enterprise Application Design Patterns: Improved and Applied
    Enterprise Application Design Patterns: Improved and Applied Stuart Thiel A Thesis in The Department of Computer Science and Software Engineering Presented in Partial Fulfillment of the Requirements for the Degree of Master of Computer Science at Concordia University Montreal, Quebec, Canada January 2010 © Stuart Thiel, 2010 i CONCORDIA UNIVERSITY School of Graduate Studies This is to certify that the thesis prepared By: Stuart Thiel Entitled: Enterprise Application Design Patterns: Improved and Applied and submitted in partial fulfillment of the requirements for the degree of Master of Computer Science complies with the regulations of the University and meets the accepted standards with respect to originality and quality. Signed by the final examining committee: ______________________________________________Chair Dr. Nematollaah Shiri ______________________________________________Examiner Dr. Greg Butler ______________________________________________Examiner Dr. Yuhong Yan ______________________________________________Supervisor Dr. Patrice Chalin Approved by __________________________________________ Chair of Department or Graduate Program Director _____________________________________ Dr. Robin Drew, Dean Faculty of Engineering and Computer Science Date ______________________________________________ i ii Abstract Enterprise Application Design Patterns: Improved and Applied Stuart Thiel Providing developers with proper tools is of ever increasing importance as software integrates itself further into all aspects of our lives. Aside from conventional hardware and software tools, architectural and design patterns have been identified over the years as a means to communicate knowledge of known problems and their solutions. In this thesis, we present several refinements and additions to these patterns, building primarily on Martin Fowler’s Patterns of Enterprise Application Architecture (2003). We present a practical implementation approach to using these patterns and discuss a framework that we have developed to aid practitioners in following this methodology.
    [Show full text]
  • A Solution to the Object-Relational Mismatch
    Universidade do Minho Escola de Engenharia Miguel Esteves CazDataProvider: A solution to the object-relational mismatch Outubro de 2012 Universidade do Minho Escola de Engenharia Departamento de Informática Miguel Esteves CazDataProvider: A solution to the object-relational mismatch Dissertação de Mestrado Mestrado em Engenharia Informática Trabalho realizado sob orientação de Professor José Creissac Campos Outubro de 2012 To my parents... \Each pattern describes a problem which occurs over and over again in our environment, and then describes the core of the solution to that problem, in such a way that you can use this solution a million times over, without ever doing it the same way twice." Christopher Alexander Abstract Today, most software applications require mechanisms to store information persistently. For decades, Relational Database Management Systems (RDBMSs) have been the most common technology to provide efficient and reliable persistence. Due to the object-relational paradigm mismatch, object oriented applications that store data in relational databases have to deal with Object Relational Mapping (ORM) problems. Since the emerging of new ORM frameworks, there has been an attempt to lure developers for a radical paradigm shift. However, they still often have troubles finding the best persistence mechanism for their applications, especially when they have to bear with legacy database systems. The aim of this dissertation is to discuss the persistence problem on object oriented applications and find the best solutions. The main focus lies on the ORM limitations, patterns, technologies and alternatives. The project supporting this dissertation was implemented at Cachapuz under the Project Global Weighting Solutions (GWS). Essentially, the objectives of GWS were centred on finding the optimal persistence layer for CazFramework, mostly providing database interoperability with close-to-Structured Query Language (SQL) querying.
    [Show full text]
  • Architects and Architecture Today
    PUBLISHED BY Microsoft Press A Division of Microsoft Corporation One Microsoft Way Redmond, Washington 98052-6399 Copyright © 2009 by Andrea Saltarello and Dino Esposito All rights reserved. No part of the contents of this book may be reproduced or transmitted in any form or by any means without the written permission of the publisher. Library of Congress Control Number: 2008935425 Printed and bound in the United States of America. 1 2 3 4 5 6 7 8 9 QWT 3 2 1 0 9 8 Distributed in Canada by H.B. Fenn and Company Ltd. A CIP catalogue record for this book is available from the British Library. Microsoft Press books are available through booksellers and distributors worldwide. For further infor mation about international editions, contact your local Microsoft Corporation office or contact Microsoft Press International directly at fax (425) 936-7329. Visit our Web site at www.microsoft.com/mspress. Send comments to [email protected]. Microsoft, Microsoft Press, Access, ActiveX, IntelliSense, MS, MSDN, MS-DOS, PowerPoint, Silverlight, SQL Server, Visio, Visual Basic, Visual C#, Visual Studio, Windows, and Windows Vista are either registered trademarks or trademarks of the Microsoft group of companies. Other product and company names mentioned herein may be the trademarks of their respective owners. The example companies, organizations, products, domain names, e-mail addresses, logos, people, places, and events depicted herein are fictitious. No association with any real company, organization, product, domain name, e-mail address, logo, person, place, or event is intended or should be inferred. This book expresses the author’s views and opinions.
    [Show full text]
  • Doctrine 2 ORM Documentation Release 2
    Doctrine 2 ORM Documentation Release 2 Doctrine Project Team June 11, 2015 Contents 1 Getting Help 3 2 Getting Started 5 3 Mapping Objects onto a Database7 4 Working with Objects 9 5 Advanced Topics 11 6 Tutorials 13 7 Changelogs 15 8 Cookbook 17 9 Welcome to Doctrine 2 ORM’s documentation! 19 9.1 Tutorials................................................. 19 9.2 Reference Guide............................................. 60 9.3 Cookbook................................................ 278 i ii Doctrine 2 ORM Documentation, Release 2 The Doctrine documentation is comprised of tutorials, a reference section and cookbook articles that explain different parts of the Object Relational mapper. Doctrine DBAL and Doctrine Common both have their own documentation. Contents 1 Doctrine 2 ORM Documentation, Release 2 2 Contents CHAPTER 1 Getting Help If this documentation is not helping to answer questions you have about Doctrine ORM don’t panic. You can get help from different sources: • There is a FAQ with answers to frequent questions. • The Doctrine Mailing List • Internet Relay Chat (IRC) in #doctrine on Freenode • Report a bug on JIRA. • On Twitter with #doctrine2 • On StackOverflow If you need more structure over the different topics you can browse the table of contents. 3 Doctrine 2 ORM Documentation, Release 2 4 Chapter 1. Getting Help CHAPTER 2 Getting Started • Tutorial: Getting Started with Doctrine • Setup: Installation & Configuration 5 Doctrine 2 ORM Documentation, Release 2 6 Chapter 2. Getting Started CHAPTER 3 Mapping Objects onto a Database • Mapping: Objects| Associations| Inheritance • Drivers: Docblock Annotations| XML| YAML| PHP 7 Doctrine 2 ORM Documentation, Release 2 8 Chapter 3. Mapping Objects onto a Database CHAPTER 4 Working with Objects • Basic Reference: Entities| Associations| Events • Query Reference: DQL| QueryBuilder| Native SQL • Internals: Internals explained| Associations 9 Doctrine 2 ORM Documentation, Release 2 10 Chapter 4.
    [Show full text]
  • SAMPLE CHAPTER Nhibernate in Action
    SAMPLE CHAPTER NHibernate in Action Pierre Henri Kuaté Tobin Harris Christian Bauer Gavin King Chapter 1 Copyright 2009 Manning Publications brief contents PART 1DISCOVERING ORM WITH NHIBERNATE............................. 1 1 ■ Object/relational persistence in .NET 3 2 ■ Hello NHibernate! 24 PART 2NHIBERNATE DEEP DIVE ................................................. 49 3 ■ Writing and mapping classes 51 4 ■ Working with persistent objects 100 5 ■ Transactions, concurrency, and caching 134 6 ■ Advanced mapping concepts 166 7 ■ Retrieving objects efficiently 207 PART 3NHIBERNATE IN THE REAL WORLD.................................. 257 8 ■ Developing NHibernate applications 259 9 ■ Writing real-world domain models 286 10 ■ Architectural patterns for persistence 319 1 Part 1 Discovering ORM with NHibernate The first part of the book provides insights into what ORM is, why it exists, and how it fits in a typical .NET application. We then introduce NHibernate, using a clear and simple example to help you understand how the various pieces of an NHibernate application fit together. Object/relational persistence in .NET This chapter covers ■ .NET persistence and relational databases ■ Layering .NET applications ■ Approaches to implementing persistence in .NET ■ How NHibernate solves persistence of objects in relational databases ■ Advanced persistence features Software development is an ever-changing discipline in which new techniques and technologies are constantly emerging. As software developers, we have an enor- mous array of tools and practices available, and picking the right ones can often make or break a project. One choice that is thought to be particularly critical is how to manage persistent data—or, more simply, how to load and save data. Almost endless options are available. You can store data in binary or text files on a disk.
    [Show full text]
  • Microsoft .NET: Architecting Applications for the Enterprise Ebook
    PUBLISHED BY Microsoft Press A Division of Microsoft Corporation One Microsoft Way Redmond, Washington 98052-6399 Copyright © 2009 by Andrea Saltarello and Dino Esposito All rights reserved. No part of the contents of this book may be reproduced or transmitted in any form or by any means without the written permission of the publisher. Library of Congress Control Number: 2008935425 Printed and bound in the United States of America. 1 2 3 4 5 6 7 8 9 QWT 3 2 1 0 9 8 Distributed in Canada by H.B. Fenn and Company Ltd. A CIP catalogue record for this book is available from the British Library. Microsoft Press books are available through booksellers and distributors worldwide. For further infor mation about international editions, contact your local Microsoft Corporation office or contact Microsoft Press International directly at fax (425) 936-7329. Visit our Web site at www.microsoft.com/mspress. Send comments to [email protected]. Microsoft, Microsoft Press, Access, ActiveX, IntelliSense, MS, MSDN, MS-DOS, PowerPoint, Silverlight, SQL Server, Visio, Visual Basic, Visual C#, Visual Studio, Windows, and Windows Vista are either registered trademarks or trademarks of the Microsoft group of companies. Other product and company names mentioned herein may be the trademarks of their respective owners. The example companies, organizations, products, domain names, e-mail addresses, logos, people, places, and events depicted herein are fictitious. No association with any real company, organization, product, domain name, e-mail address, logo, person, place, or event is intended or should be inferred. This book expresses the author’s views and opinions.
    [Show full text]
  • Design Patterns and Coldfusion Sean a Corfield Chief Systems Architect Broadchoice, Inc
    Design Patterns and ColdFusion Sean A Corfield Chief Systems Architect Broadchoice, Inc. Patterns describe problems and solutions “Each pattern describes a problem which occurs over and over again in our environment, and then describes the core of the solution to that problem, in such a way that you can use this solution a million times over, without ever doing it the same way twice.” -- Christopher Alexander, architect Alexander is not a software architect - he is a building architect! 1. Hierarchy of Open Space - big space in front, small space behind 2. Intimacy Gradient - enter into public areas, navigate into private areas Who am I? VP Engineering, Broadchoice Previously: Mgr, Adobe Hosted Services Sr Architect, Macromedia IT Sr Consultant, various web co. Architect / Developer: ColdFusion since 2001 Java since 1997 (Groovy since 2008!) Also manager of Bay Area ColdFusion User Group! What is this about? Common problems Common solutions Trade offs Show of hands: 1. Who’s using ColdFusion 8? 7? 6.1? 5 or earlier? 2. Who’s using CFCs? Who thinks they’re writing OO code? Patterns? I want to remove some of the mystery around patterns by showing you how pervasive they are - you're probably already using some patterns without even realizing it. I hope that you will come out of this session with a better understanding of what patterns are how they can help you in your day-to-day programming work - and that you will be inspired to learn more about patterns and extend yourself to become a better developer. Our roadmap Some simple, common patterns Patterns and languages Selecting and using patterns Frameworks and patterns Recommended reading Simple, common pattern examples A common problem My web site has the same stuff at the top and bottom of each page and I don't want to duplicate that in every page! A common solution Put the common stuff in separate files (header.cfm and footer.cfm) and include them on every page.
    [Show full text]
  • Migration of Applications Across Object-Oriented Apis
    Migration of Applications across Object-Oriented APIs by Thiago Tonelli Bartolomei A thesis presented to the University of Waterloo in fulfillment of the thesis requirement for the degree of Doctor of Philosophy in Electrical and Computer Engineering Waterloo, Ontario, Canada, 2012 c Thiago Tonelli Bartolomei 2012 I hereby declare that I am the sole author of this thesis. This is a true copy of the thesis, including any required final revisions, as accepted by my examiners. I understand that my thesis may be made electronically available to the public. ii Abstract Software developers often encapsulate reusable code as Application Programming Inter- faces (APIs). The co-evolution of applications and APIs may motivate an API migration: the replacement of application dependencies to an original API by dependencies to an alternative API that provides similar functionality and abstractions. In this dissertation, we investigate issues associated with API migration in object- oriented systems, with special focus on wrapping approaches. We present two studies and a set of developer interviews that elicit issues in the process and techniques used in API migration in practice. The results suggest that the most pressing issues relate to discovery and specification of differences between APIs, and to assessment of migration correctness. This dissertation introduces techniques and a method to address these issues. We propose the use of design patterns to support the specification of API wrappers. API wrapping design patterns encode solutions to common wrapping design problems. We present an initial catalog of such patterns that were abstracted from programming idioms found in existing API wrappers. We introduce the concept of compliance testing for API migration, a form of automated testing.
    [Show full text]
  • Patterns for API Migration by Wrapping
    Swing to SWT and Back: Patterns for API Migration by Wrapping Thiago Tonelli Bartolomei and Krzysztof Czarnecki Ralf Lammel¨ University of Waterloo University of Koblenz-Landau Waterloo, Canada Koblenz, Germany Abstract—Evolving requirements may necessitate API migra- In terms of their interfaces, the chosen APIs are very similar, tion—re-engineering an application to replace its dependence on but the actual implementations differ systematically in the one API with the dependence on another API for the same contracts for many methods. Our study was meant to measure domain. One approach to API migration is to replace the original API by a wrapper-based re-implementation that makes reuse of the effort needed to develop a sufficiently compliant wrapper the other API. Wrapper-based migration is attractive because in such a situation. The overall result of that work is twofold: application code is left untouched and wrappers can be reused a) wrappers need to involve a lot of tuning in order to achieve across applications. The design of such wrappers is challenging semantical equivalence in terms of pre- and post-conditions; though if the two involved APIs were developed independently, b) full compliance of the wrapper’s implementation with the in which case the APIs tend to differ significantly. We identify the challenges faced by developers when designing wrappers original API may be impractical; compliance relative to an for object-oriented APIs, and we recover the solutions used in ‘application of interest’ is achievable though. practice. To this end, we analyze two large, open-source GUI In this paper, we address a different aspect of API migration wrappers and compile a set of issues pervasive in their designs.
    [Show full text]
  • Software Architecture Design Architectural Patterns Readings
    Software Architecture Design Architectural Patterns Matthew Dailey Computer Science and Information Management Asian Institute of Technology Matthew Dailey (CSIM-AIT) Patterns 1 / 193 Readings Readings for these lecture notes: - Fowler (2002), Patterns of Enterprise Application Architecture, Addison-Wesley, Ch. 1–3, 9–11. Some material c Fowler (2002). Matthew Dailey (CSIM-AIT) Patterns 2 / 193 Outline 1 Introduction 2 Domain logic patterns 3 Mapping to relational databases 4 Web presentation 5 Concurrency 6 Session state 7 Distribution strategies Matthew Dailey (CSIM-AIT) Patterns 3 / 193 Introduction Fowler (2002) opens with a quote from Christopher Alexander: Each pattern describes a problem which occurs over and over again in our environment, then describes the core of the solution to that problem, in such a way that you can use this solution a million times over, without ever doing it the same way twice. Alexander was actually a (building) architect, but the same idea is relevant in software system architecture. Patterns represent best practices we can apply to ensure we don’t make the same mistakes the pioneers did. Matthew Dailey (CSIM-AIT) Patterns 4 / 193 Introduction In software architecture as in building architecture, patterns are references forming a common vocabulary for design. Patterns are not recipes! You can never blindly apply them, since they are always incomplete to some degree. Matthew Dailey (CSIM-AIT) Patterns 5 / 193 Introduction We begin with Fowler’s (2002) patterns, which share a common structure: Each pattern has a carefully chosen name. Each pattern has an intent summing up the pattern in a sentence or two. Each pattern has a sketch representing it visually, in UML or otherwise.
    [Show full text]