1 / 50

The Architecture of Uncertainty

Presented at Build Stuff (19th November 2014) <br><br>Ralph Johnson defined architecture as "the decisions that you wish you could get right early in a project, but that you are not necessarily more likely to get them right than any other". Given our inability to tell the future how can we design effectively for it? Much project management thinking is based on the elimination of uncertainty, and advice on software architecture and guidance for future-proofing code often revolves around adding complexity to embrace uncertainty. In most cases, this is exactly the opposite path to the one that should be taken. <br><br>The talk looks at how uncertainty, lack of knowledge and options can be used to partition and structure the code in a system.

Kevlin
Télécharger la présentation

The Architecture of Uncertainty

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 Architecture of Uncertainty @KevlinHenney

  2. Um. What's the name of the word for things not being the same always. You know, I'm sure there is one. Isn't there? There's must be a word for it... the thing that lets you know time is happening. Is there a word? Change. Oh. I was afraid of that. Neil Gaiman The Sandman

  3. When a design decision can reasonably go one of two ways, an architect needs to take a step back. Instead of trying to decide between options A and B, the question becomes "How do I design so that the choice between A and B is less significant?" The most interesting thing is not actually the choice between A and B, but the fact that there is a choice between A and B. Kevlin Henney "Use Uncertainty As a Driver"

  4. We propose [...] that one begins with a list of difficult design decisions or design decisions which are likely to change. Each module is then designed to hide such a decision from the others. David L Parnas "On the Criteria to Be Used in Decomposing Systems into Modules"

  5. struct Date { int year, month, day; };

  6. struct Date { int daysSinceEpoch; };

  7. class Date { public: ... private: int year, month, day; };

  8. class Date { public: ... private: int daysSinceEpoch; };

  9. class Date { public: ... private: ... };

  10. There are standard precautions that can help reduce risk in complex software systems. This includes the definition of a good software architecture based on a clean separation of concerns, data hiding, modularity, well-defined interfaces, and strong fault-protection mechanisms. Gerard J Holzmann "Mars Code", CACM 57(2) http://cacm.acm.org/magazines/2014/2/171689-mars-code/fulltext

  11. There are standard precautions that can help reduce risk in complex software systems. This includes the definition of a good software architecture based on a clean separation of concerns, data hiding, modularity, well-defined interfaces, and strong fault-protection mechanisms. Gerard J Holzmann "Mars Code", CACM 57(2) http://cacm.acm.org/magazines/2014/2/171689-mars-code/fulltext

  12. All architecture is design but not all design is architecture. Architecture represents the significant design decisions that shape a system, where significant is measured by cost of change. Grady Booch

  13. Architecture is the decisions that you wish you could get right early in a project, but that you are not necessarily more likely to get them right than any other. Ralph Johnson

  14. Analysis Design Code Test

  15. Analysis Design Code Test

  16. Analysis Design Code Test

  17. Walking on water and Walking on water and developing software developing software from a specification from a specification are easy if both are are easy if both are frozen. frozen. Edward V Berard

  18. Expert Expert Proficient Proficient Competent Competent Advanced Beginner Advanced Beginner Novice Novice

  19. The "defined" process control model requires that every piece of work be completely understood. Given a well- defined set of inputs, the same outputs are generated every time. Ken Schwaber Agile Software Development with Scrum

  20. The empirical process control model, on the other hand, expects the unexpected. It provides and exercises control through frequent inspection and adaptation for processes that are imperfectly defined and generate unpredictable and unrepeatable results. Ken Schwaber Agile Software Development with Scrum

  21. Design Design Design Design

  22. Design

  23. Programming is a design activity. Jack W Reeves "What Is Software Design?"

  24. Coding actually makes sense more often than believed. Often the process of rendering the design in code will reveal oversights and the need for additional design effort. The earlier this occurs, the better the design will be. Jack W Reeves "What Is Software Design?"

  25. You have to finish things — that's what you learn from, you learn by finishing things. Neil Gaiman

  26. Properly gaining control of the design process tends to feel like one is losing control of the design process.

  27. Speculative Generality Brian Foote suggested this name for a smell to which we are very sensitive. You get it when people say, "Oh, I think we need the ability to do this kind of thing someday" and thus want all sorts of hooks and special cases to handle things that aren't required. The result often is harder to understand and maintain. If all this machinery were being used, it would be worth it. But if it isn't, it isn't. The machinery just gets in the way, so get rid of it. Martin Fowler Refactoring

  28. You have a problem. You decide to solve it with configuration. Now you have <%= $problems %> problems! Dan North https://twitter.com/tastapod/status/342935892207497219

  29. People overvalue their knowledge and underestimate the probability of their being wrong.

  30. Prediction is very difficult Prediction is very difficult, especially about the future. Niels Bohr

  31. Stewart Brand, How Buildings Learn See also http://www.laputan.org/mud/

  32. Rate of change

  33. package package com.sun com.sun. . . . . . ; ;

  34. Public APIs, Public APIs, like diamonds, like diamonds, are forever. are forever. Joshua Bloch Joshua Bloch API Design" Design- -Joshua Joshua- -Bloch "Bumper "Bumper- -Sticker Sticker API Design" http://www.infoq.com/articles/API http://www.infoq.com/articles/API- -Design Bloch

  35. B A     C       D     E               F  

  36. If you have a procedure with ten parameters, you probably missed some. Alan Perlis

  37. Uncertainty is Uncertainty is an uncomfortable an uncomfortable position, but position, but certainty is an certainty is an absurd one. absurd one. Voltaire

More Related