software taxonomies patterns styles tactics
play

Software taxonomies Patterns, styles, tactics,... School of - PowerPoint PPT Presentation

Software Architecture University of Oviedo Software taxonomies Patterns, styles, tactics,... School of Computer Science Jose E. Labra Gayo Course 2018/2019 Software Architecture Software taxonomies University of Oviedo Construction &


  1. Software Architecture University of Oviedo Continuous Integration Best practices: Maintain code repository Automate the build Make the build self testing Everyone commits to the baseline Every commit should be built Keep the build fast Test in a clone of the production environment Make it easy to get the latest deliverables School of Computer Science Everyone can see the results of the latest build Automate deployment

  2. Software Architecture Continuous integration University of Oviedo Continuous integration tools Hudson, Jenkins, Travis, Bamboo Reports Continuous Integration Web Interface School of Computer Science checkout/commit Development Central Code Team repository

  3. Software Architecture On-place customer University of Oviedo Customer available to clarify user stories and help taking critical business decisions Advantages Developers don't do guesses Developers don't have to wait for decisions Improves communication School of Computer Science

  4. Software Architecture Continous delivery University of Oviedo Small releases Small enough while offering value to the user Releases are not, for example, implement DB Obtain feedback soon from client Plan next release after each iteration Try to release something every week School of Computer Science

  5. Software Architecture Sustainable pace University of Oviedo Avoid extra-work loads 40h/week = 40h/week Tired programmers write bad code It will slow the development at long time School of Computer Science

  6. Software Architecture Clean code & code conventions University of Oviedo Facilitate code refactoring by other people Use good practices Code styles and guidelines Avoid code smells software craftmanship manifest Clean Code (Robert C. Martin) School of Computer Science Fuente: Clean Code. Robert Martin

  7. Software Architecture Some agile methods University of Oviedo Variants Scrum Project/people management Divide work in sprints 15' daily meetings Product Backlog Kanban Lean model Just in Time Development School of Computer Science Limit workloads

  8. Software Architecture Configuration Management University of Oviedo Different software versions New or different functionalities Issues and bugs management New execution environments Configuration management Manage software evolution System changes = team activities Imply cost and effort School of Computer Science

  9. Software Architecture Version control University of Oviedo Systems that manage different code versions Be able to Access all the system versions Easy to rollback Differences between versions Collaborative development Branch management Metadata Author of a version, update date, who to blame, etc. School of Computer Science

  10. Software Architecture Releases and versions University of Oviedo Version: instance of a system which has a different functionality to other instances Release (deliverable): instance of a system which is distributed to external people outside to development team. It can be seen as a final product at some point School of Computer Science

  11. Software Architecture Version naming - some conventions University of Oviedo Pre-alpha Before testing Alpha During testing Beta (or prototype) Testing made by some users Beta-tester: user that does the testing Release-candidate School of Computer Science Beta version that could become final product

  12. Software Architecture Other schema namings University of Oviedo Using some attributes Date, creator, language, client, state,... Recognizable Names Ganimede, Galileo, Helios, Indigo, Juno,... Precise Pangolin, Quantal Quetzal,... Semantic Versioning (http://semver.org) MAJOR.MINOR.PATCH (2.3.5) MAJOR: changes incompatible with previous versions MINOR: new functionality compatible with previous versions School of Computer Science PATH: Bugfix compatible with previous versions Version 0 (inestable) Pre-releases (names added at the end): 2.3.5-alpha

  13. Software Architecture Publishing releases University of Oviedo A release implies functionality changes Planning Publishing a release has costs Usually, current users don't want new releases External factors: Marketing, clients, hardware, ... Agile model: frequent releases Continuous integration minimizes risk School of Computer Science

  14. Software Architecture Publishing Releases University of Oviedo A release is more than just software Configuration files Some needed data files Installation programs Documentation Publicity and packaging Distribution channels: School of Computer Science Physical (CDs, DVDs), Web (download), stores ...See later...

  15. Software Architecture Continuous delivery University of Oviedo Continuous delivery Frequent releases to obtain feedback as soon as possible TDD & continuous integration Deployment pipeline Advantages: Embrace change Minimize integration risks School of Computer Science Wabi-sabi philosophy Accept imperfection Software that is not finnished: Good enough

  16. Software Architecture DevOps University of Oviedo Merge dev elopment and op eration s Cultural change where the same team participates in: Code: Development and code review, continuous integration Build: Version control, building and integration Test Package: Artifact management Release: version automation Configuration and management Monitorization: performance, user experience School of Computer Science

  17. School of Computer Science University of Oviedo Software Architecture

  18. Software Architecture Construction languages University of Oviedo Configuration languages Resource definitions (Json, XML, Turtle) Examples: .travis.yml, package.json, pom.xml Scripting languages Shell/batch scripts Lenguajes de programación Examples: Java, Javascript,... Visual languages Examples: scratch, blender, ... School of Computer Science Formal Examples: B-trees, Z language, OCL, ...

  19. Software Architecture Coding aspects University of Oviedo Naming conventions Important for other programmers, maintainers... Classes, types, variables, named constants, ... Error handling Source code organization Program Program Packages, folders, ... Dependencies Computer Programmer Libraries imported School of Computer Science Code documentation Javadocs, jsdoc... Other programmers & maintainers

  20. Software Architecture Testing University of Oviedo Unit testing Integration testing Load testing Regression testing . . . Best practice: Separate testing code and dependencies from production code School of Computer Science

  21. Software Architecture Construction for reuse University of Oviedo Parameterization Add parameters Common error: magical numbers in code Configuration/resource files Conditional compilation Encapsulation Separate interface from implementation Common error: internal parts public in libraries School of Computer Science Packaging Common error: manual tasks for packaging Documentation API documentation

  22. Software Architecture Construction with reuse University of Oviedo Selection of reusable units Externally developed components (COTS, FOSS) Handling dependencies <See later> Handling updates What happens when other libraries are updated? Legal issues Can I really use that library? School of Computer Science For commercial software? Be careful with GNU libraries Is the library well maintained?

  23. Software Architecture Construction tools University of Oviedo Text editors vi, emacs, Visual Studio Code, Sublime,.... Integrated Development Environments (IDEs) Examples: IntelliJ, Eclipse Graphical User Interface (GUI) builders Android Studio UI Editor, QtEditor,... Quality assurance (QA) tools Test, analysis, ...<See next slide> School of Computer Science

  24. Software Architecture Software Quality Assurance University of Oviedo Tests xUnit, test frameworks (mocha) Assertion languages (chai) Test coverage tools Assertions Pre-conditions asserted on methods Inspections & code reviews Pull requests with code reviews School of Computer Science Code Analysis tools <See next slide>

  25. Software Architecture Code analysis tools University of Oviedo Static vs dynamic code analysis Without running the code (or at runtime) Examples: PMD, SonarCube,... (Codacy) Debuggers Interactive vs static, Tracers & logging Profilers Information about resource usage Memory, CPU, method calls, etc. Test coverage tools School of Computer Science Report which lines of code have been run during tests Program slicing Program fragment (slice) that has been run Examples: CodeSurfer, Indus-kaveri,...

  26. School of Computer Science University of Oviedo Software Architecture

  27. Software Architecture Version control University of Oviedo Systems that manage different code versions Be able to Access all the system versions Easy to rollback Differences between versions Collaborative development Branch management Metadata Author of a version, update date, who to blame, etc. School of Computer Science

  28. Software Architecture Releases and versions University of Oviedo Version: instance of a system which has a different functionality to other instances Release (deliverable): instance of a system which is distributed to external people outside to development team. It could be considered a final product at some point of time School of Computer Science

  29. Software Architecture Version naming - some conventions University of Oviedo Pre-alpha Before testing Alpha During testing Beta (or prototype) Testing made by some users Beta-tester: user that does the testing Release-candidate School of Computer Science Beta version that could become final product

  30. Software Architecture Other schema namings University of Oviedo Simple numbering 1.1, 1.1-alpha Using attributes Date, creator, language, client, state,... Recognizable Names Ganimede, Galileo, Helios, Indigo, Juno,... Precise Pangolin, Quantal Quetzal,... School of Computer Science

  31. Software Architecture Publishing releases University of Oviedo A release implies functionality changes Planning Publishing a release has costs Usually, current users don't want new releases External factors: Marketing, clients, hardware, ... Agile model: frequent releases Continuous integration minimizes risk School of Computer Science

  32. Software Architecture Publishing Releases University of Oviedo A release is more than just software Configuration files Some needed data files Installation programs Documentation Publicity and packaging Distribution channels: School of Computer Science Physical (CDs, DVDs), Web (download), stores

  33. Software Architecture Baseline Version control University of Oviedo 1 2 Definitions Trunk Branchs 3 Repository: where changes are stored 4 merge Tags Baseline: Initial version T1 Delta: changes from one version 5 6 to other Trunk (master): Main branch in a 7 system School of Computer Science 8 Branch: deviation from main 9 branch 10 T2 Tag: Marks a line of versions

  34. Software Architecture Baseline Version control University of Oviedo 1 2 Trunk Branchs 3 Definitions Checkout: Working Local copy from a 4 merge given branch Tags T1 Commit: Introduce current changes in 5 the control version system. 6 Merge : Combine two sets of changes 7 Branching styles: by feature, by team, by version School of Computer Science 8 9 10 T2

  35. Software Architecture Version control University of Oviedo 2 types Centralized Centralized repository for all the code Centralized administration CVS, Subversion, ... Distributed Each user has its own repository Git, Mercurial School of Computer Science

  36. Software Architecture Git University of Oviedo Designed by Linus Torvalds (Linux), 2005 Goals: Applications with large number of source code files Efficiency Distributed work Each development has its own repository Local copy of all the changes history It is possible to do commits even without internet connection School of Computer Science Support for non-lineal development (branching)

  37. Software Architecture Local components University of Oviedo 3 local components: Local working directory Index (stage area). Also called cache Project history: Stores versions or commits HEAD (most recent version) add commit rm School of Computer Science Local Index HEAD working stage Project directory area History Commits

  38. Software Architecture Branches University of Oviedo Branches tags feature-2 develop hotfix-1 master feature-1 0.1 Git facilitates branch management master = initial branch Operations: Create branches ( branch ) 0.2 Change branch ( checkout ) Combine ( merge ) School of Computer Science Tag branches ( tag ) Multiple branching styles 1.0

  39. Software Architecture Remote repositories University of Oviedo Connect with remote repositories origin = initial push add commit rm Remote clone repository HEAD fetch Index Local origin School of Computer Science History pull stage working Commits area directory Local Machine

  40. Software Architecture Git - usual commands University of Oviedo init : initialize repository clone : clone a repository add : add contents to index commit : record changes status : check state of repository pull : get changes from an external repository push : put changes in an external repository branch : manage branches (list, create, delete) merge : combine two branches School of Computer Science checkout : recover a given branch rm : delete files mv : move files .gitignore file indicates which files are not going to be tracked by version control system

  41. School of Computer Science University of Oviedo Software Architecture

  42. Software Architecture Dependency management University of Oviedo Library: Collection of functionalities used by the system that is being developed System depends on that library Library can depend on other libraries Library can evolve Incompatible versions appear Dependency graph School of Computer Science Mozilla Firefox dependency graph Source: The purely functional deployment model. E. Dolstra (PhdThesis, 2006)

  43. Software Architecture Dependency graph University of Oviedo Graph G = (V,E) where V = Vertex (components/packages) E = Edges (u,v) that indicate that u depends on v CCD metric (cumulative component dependency) Sum of every component dependency Each component depends on itself A School of Computer Science In the example: CCD=7+3+4+1+1+1+1=18 B C D G E F

  44. Software Architecture Cyclic dependencies problem University of Oviedo The dependency graph should not have cycles Adding a cycle can damage CCD Example: A School of Computer Science CCD = 7+7+7+1+7+1+1=31 B C D G E F

  45. Software Architecture Dependency management University of Oviedo Different models Local installation: libraries are installed for all the system Example: Ruby Gems Embed external libraries in the system (version control) Ensures a correct version External link External repository that contains the libraries Depends on Internet and on library evolution School of Computer Science

  46. Software Architecture Build management University of Oviedo Automate building tasks Some quality attributes: Correctness: Avoid mistakes (minimize " bad builds ") Eliminate repetitive and redundant tasks Simplicity: Handle complexity Automation & releasability Have history of builds and releases Continuous integration School of Computer Science Cost Save time & money

  47. Software Architecture Types of build automation University of Oviedo On-demand A user running a script at the command line Scheduled Automatically run at certain hours Continuous integration server Example: nightly builds Triggered At every commit to a version control system Continuous integration server linked to version School of Computer Science control system

  48. Software Architecture Build Automation Tools University of Oviedo Makefile (C world) Ant (Java) Maven (Java) SBT (Scala, JVM languages) Gradle (Groovy, JVM languages) rake (Ruby) npm, grunt, gulp (Javascript) etc. School of Computer Science

  49. Software Architecture Automate building University of Oviedo make : Included in Unix Product oriented Declarative language based on rules When the Project is complex, configuration files can be difficult to manage/debug Several versions: BSD, GNU, Microsoft School of Computer Science Very popular in C, C++, etc.

  50. Software Architecture Automate building University of Oviedo ant : Java Platform Task oriented XML syntax (build.xml) School of Computer Science

  51. Software Architecture Automate building University of Oviedo maven : Java Platform Convention over configuration Manage project lifecycle Dependency management XML syntax (pom.xml) School of Computer Science

  52. Software Architecture Automate building University of Oviedo Embedded languages Domain specific languages embedded in higher level ones Great versatility Examples: gradle (Groovy) sbt (Scala) rake (Ruby) School of Computer Science Buildr (Ruby) gulp (Javascript) …

  53. Software Architecture New tools University of Oviedo Pants (Foursquare, twitter) https://pantsbuild.github.io/ Bazel (Google) http://bazel.io/ Buck (Facebook) https://buckbuild.com/ School of Computer Science

  54. Software Architecture Maven University of Oviedo Build automation tool Describes how software is built Describes software dependencies Principle: Convention over configuration School of Computer Science Jason van Zyl Creator of Maven

  55. Software Architecture Maven University of Oviedo Typical development phases: clean, compile, build, test, package, install, deploy Module identification 3 coordinates: Group, Artifact, Version Dependencies between modules Configuration: XML file (Project Object Model) pom.xml School of Computer Science

  56. Software Architecture Maven University of Oviedo Artifact repositories Store different types of artifacts JAR, EAR, WAR, ZIP, plugins, etc. Every interaction is made through the repository No relative paths Share modules between development teams School of Computer Science Remote Local Artifact Artifact Repository Repository Maven Central <user>/.m2/repository

  57. Software Architecture Maven Central University of Oviedo Public repository of projects Over 1 mill GAV ≈ 3000 new projects each month (GA) ≈ 30000 new versions each month(GAV)* http://search.maven.org/ School of Computer Science Other repositories: https://bintray.com/ * Source: http://takari.github.io/javaone2015/still-rocking-it-maven.html

  58. Software Architecture POM - Project Object Model University of Oviedo XML syntax Describes a project Name and version Artifact type (jar, pom, ...) Source code localizations Dependencies Plugins Profiles Alternative build configurations Inheritance structure School of Computer Science Reference: https://maven.apache.org/pom.html

  59. Software Architecture POM - Project Object Model University of Oviedo Inheritance structure Super POM Maven's default POM All POMs extend the Super POM unless explicitly said parent Declares the parent POM Dependencies and properties are combined School of Computer Science

  60. Software Architecture Maven University of Oviedo Project identification GAV (Group, Artifact, Version) Group: grouping identifier Artifact: Project name Version: Format {Major}.{Minor}.{Maintenance} It is possible to add "-SNAPSHOT" (in development) <project xmlns= "http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 School of Computer Science http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>es.uniovi.asw</groupId> <artifactId>censusesN</artifactId> <version>0.0.1</version> <name>censusesN</name> ...

  61. Software Architecture Maven University of Oviedo Folder structure Maven uses a conventional structure src/main src/main/java src/main/webapp src/main/resources src/test/ src/test/java src/test/resources . . . School of Computer Science Output directory: target

  62. Software Architecture Maven Build life cycle University of Oviedo 3 built-in lifecycles default Project deployment clean Project cleaning site Project's site documentation Each life cycle has some specific phases School of Computer Science

  63. Software Architecture clean University of Oviedo Clean compiled code and other stuff 3 phases pre-clean clean post-clean School of Computer Science

  64. Software Architecture default lifecycle University of Oviedo Compilation, testing and deploying Some phases validate initialize generate-sources generate-resources compile test-compile test package School of Computer Science integration-test verify install deploy

  65. Software Architecture site lifecycle University of Oviedo Generates Project's site documentation Phases pre-site site post-site site-deploy School of Computer Science

  66. Software Architecture Maven University of Oviedo Automatic dependency management GAV identification Scopes compile test provide Type ... <dependency> jar, pom, war,... <groupId>commons-cli</groupId> School of Computer Science <artifactId>commons-cli</artifactId> <version>1.3</version> </dependency> ...

  67. Software Architecture Maven University of Oviedo Automatic dependency management Dependencies are downloaded Stored in a local repository We can create intermediate repositories (proxies) Examples: common artifacts for some company Transitivity A depends on B B depends on C  If a system depends on A School of Computer Science Both B and C are downloaded

  68. Software Architecture Maven modules: aggregation University of Oviedo Big projects can be decomposed in subprojects Each Project creates one artifact Contains its own pom.xml Parent Project groups modules <project> ... <packaging> pom </packaging> <modules> School of Computer Science <module>extract</module> <module>game</module> </modules> </project>

  69. Software Architecture Maven Plugins University of Oviedo Maven architecture based on plugins 2 types of plugins build reporting School of Computer Science List of plugins: https://maven.apache.org/plugins/index.html

  70. Software Architecture Maven University of Oviedo Other phases and plugins archetype:generate - Generates Project archetype eclipse:eclipse - Generates eclipse project site - Generates Project web site site:run - Generates Project web site and starts server javadoc:javadoc - Generates documentation cobertura:cobertura - Reports code executed during tests checkstyle:checkstyle - Check coding style spring-boot:run - Run a spring application School of Computer Science

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend