1 / 29

The Role of Coordination A nalysis in Software I ntegration P rojects

The Role of Coordination A nalysis in Software I ntegration P rojects. Nuno F. Rodrigues Nuno Oliveira Luís S. Barbosa. University of Minho Portugal. October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking. Adicionar printscreen do CoordInspector

sarila
Download Presentation

The Role of Coordination A nalysis in Software I ntegration P rojects

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

E N D

Presentation Transcript


  1. The Role of Coordination Analysis in Software Integration Projects Nuno F. Rodrigues Nuno Oliveira Luís S. Barbosa University of Minho Portugal October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  2. Adicionar printscreen do CoordInspector • Trabalhar melhor a maneira de passar do contexto para a motivação • Explicar melhor o que é a coordination no nosso ponto de vista • Introduzir melhor o que se entende por fazer perguntas aos developers…

  3. Introduction Microsoft Legacy Companies Skype Software Google Acquisition Evolution Hotmail Youtube Fusion Picasa Blogger October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  4. Introduction • Composition of Different Software Systems • To obtain a Coherent Enterprise Solution Software Solutions Integration Enterprise Application Integration (EAI) October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  5. Introduction Forrest Research October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  6. Motivation Main Conceptual Issue: Definition Implementation COORDINATION MODEL (Between Systems) • Which sub-systems are connected? • How do they communicate? • Which dependencies do exist? Behaviour concerning Network of Interactions Helps Architects Answering Questions October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  7. Problem Initial Strategy Final Implementation Significant Difference C C B B D A D A E F E F October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  8. Objective Reconstructed Coordination Model Final Implementation Validation of (coordination component) Integration Process Feedback Suggestion of Alternatives October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  9. Outline • CoordInspector • Methodology • Coordination Patterns • Extracting Strategy • Integration Analysis Strategy • Integration Analysis - Example • Conclusion October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  10. CoordInspector • Tool to extract (from source code) the network of interactions • Coordination Layer • Extraction based on • Slicing Techniques • Graph algorithms • Search for Coordination Patterns

  11. CoordInspector • Accepts CIL code • Analyses systems developed in (combinations of) more than 40 languages compliant with the .NET platform Transforms in into: • Managed System Dependence Graphs (MSDG) • Coordination Dependence Graphs (CDG) • Hold information about coordination

  12. Outline • CoordInspector • Methodology • Coordination Patterns • Extracting Strategy • Integration Analysis Strategy • Integration Analysis - Example • Conclusion October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  13. Coordination Pattern A Coordination Pattern is an equivalence class, a shape or sub-graph of a Coordination Dependence Graph, corresponding to a trace of coordination policies left in the system code. October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  14. Coordination Pattern CoordL Aqpcm( n1 | n3, n4) { node n1, n2, n3, n4 = {…}; fork f; root n1; {f -(x,y)-> (n3,n4)}@[n4 | ] {n1 –x-> f, n4 -y-> n2, n2 –y-> n4} } • Client orders execution of an operation in a thread x • Launches thread y to retrieve results • Performs service call until result arrives (loop) Asynchronous Query Pattern With Client Multithreading October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  15. Extracting Strategy Source Code MSDG (labeling) (pruning) CDG (search for coordination patterns) Source Code (Coordination Layer) October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  16. Outline • CoordInspector • Methodology • Coordination Patterns • Extracting Strategy • Integration Analysis Strategy • Integration Analysis - Example • Conclusion October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  17. Integration Analysis Strategy • Post-Integration • Analysis of post-integration coordination model • Comparison with pre-integration coordination model • 4-steps Strategy October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  18. Integration Analysis Strategy 1. Identify basic coordination solutions (patterns) used during integration Documentation Analysis Developers Interview 2. Specify each coordination pattern (identified in step 1) CoordL notation Diagrammatical notation October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  19. Integration Analysis Strategy 3. Search for each coordination pattern in source code of Integrated System CoordInspector 4. Identify cases of mismatch between pre- and post-integration models Analyse Document Discuss Alternatives October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  20. Outline • CoordInspector • Methodology • Coordination Patterns • Extracting Strategy • Integration Analysis Strategy • Integration Analysis - Example • Conclusion October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  21. Integration Analysis - Example • Professional training company • 6 facilities distributed in the country • 4 (isolated) base components • ERP - Enterprise Resource Planner • CRM - Costumer Relationship Management • TS - Training Server • DSM - Document Management System • Objective: • Web-Portal for online selling of training courses October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  22. Integration Analysis - Example Problem found: inconsistent User Update Component: Web-Portal Pattern: User Update Operation October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  23. Integration Analysis - Example October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  24. Outline • CoordInspector • Methodology • Coordination Patterns • Extracting Strategy • Integration Analysis Strategy • Integration Analysis - Example • Conclusion October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  25. Conclusion Tool-based methodology to extract Coordination Model based on Slicing Techniques and on identifying Coordination Patterns October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  26. Conclusion Integrated in a strategy for Software Integration Analysis which provides useful Feedback and allows for the suggestion of Improvement Alternatives October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  27. Conclusion In case study Identified and Corrected coordination problems: - Unwanted multiple creations of users - Lack of parallelism leading to delays - Deadlocks October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  28. Conclusion (Future Work) • CoordInspector • Live modification of source code by edition of extracted graphs • Performance study concerning different integration scenarios October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

  29. The Role of Coordination Analysis in Software Integration Projects Nuno F. Rodrigues Nuno Oliveira Luís S. Barbosa October 19-20, 2011 EI2N - Enterprise Integration, Interoperability and Networking

More Related