services
A holistic approach that accelerates your current vision while also making you future-proof. We help you face the future fluidically.

Digital Engineering

Value-driven and technology savvy. We future-proof your business.

Intelligent Enterprise

Helping you master your critical business applications, empowering your business to thrive.

Experience and Design

Harness the power of design to drive a whole new level of success.

Events and Webinars

Our Event Series

Sommelier

Turntable

Featured Event
14 - 16 May
Stand #28, Convention Centre Dublin, Ireland
Our Latest Talk
By Kanchan Ray, Dr. Sudipta Seal
video icon 60 mins
About
nagarro
Discover more about us,
an outstanding digital
solutions developer and a
great place to work in.
Investor
relations
Financial information,
governance, reports,
announcements, and
investor events.
News &
press releases
Catch up to what we are
doing, and what people
are talking about.
Caring &
sustainability
We care for our world.
Learn about our ESG
initiatives.

Fluidic
Enterprise

Beyond Agility, the convergence of technology and human ingenuity.
talk to us
Welcome to digital product engineering
Thanks for your interest. How can we help?
 
 
Author
Nagarro
Nagarro

It isn’t easy to imagine what software could be like if we had powerful principles for software design. Our current principles and practices often don’t result in great software, and the software industry works in a largely ad-hoc fashion. But what does it mean to create good software? Stanford Professor and author of UI framework Tcl/Tk and the RAFT consensus algorithm, John Ousterhout, is on a quest to work out the answers. His new book, A Philosophy of Software Design, is a set of principles software engineers can use to design low-complexity, high-capability systems.

Of all the complex systems humans have known, cities, in many ways, are a good comparison to software. Cities grow to become massive, they’re used by large numbers of people, and they tend to develop in a similarly chaotic fashion as software does. They’re built up by various people focused on various issues over time. In both cases, complexity tends to grow to the point that maintainers are overwhelmed with all the competing concerns and constraints. Development becomes increasingly slow until all but minor changes to the system incur a high cost.

Like cities, we primarily tackle complexity via design. Even though we may not exactly know what to design upfront, we know that we have more control in shaping complex systems in their formative stages. Unlike cities, code is not informed by geographical constraints and material relationships. This added freedom broadens our solution space and seems to permit much more complexity to accumulate.

The focus on software design appeals to many of us who aspire to do better. We should develop a thoughtful design in the early stages, and you stand a chance of being rewarded for those decisions later. Avoid design, and you’re doomed to suffer an unwieldy tangle of your own making.

Minimize complexity

Much like financial debt allows businesses to increase their power and velocity, we gain leverage in software by allowing complexity to accumulate. This might be an incomplete or poor implementation or an awkward interface. Unlike our discussions about best practices, there’s virtually no discussion on how to implement modules poorly when you’re short on time or can’t find a good solution. So systems often end up with debt in surprising and frustrating forms.

On the other hand, complexity is a common topic amongst software engineers. The fifth principle of the UNIX Design Principles is to Design for Simplicity. The Boring Tech movement is almost entirely about simplicity. The “Worse is Better” philosophy of Richard Gabriel explains that simplicity is so important that it should override other important concerns like consistency and correctness. Rich Hickey has spoken at length about his efforts to tackle complexity via ideas like immutable state and abstraction. John Carmack discusses ways to streamline flow control complexity and avoid unnecessary work. It’s one of those topics in software engineering that never gets old.

We all would agree that complexity is at the heart of our problems. We must understand that complexity is what makes our programs hard to understand. Our ability to manage complexity is what makes us effective or not and makes our programs achieve their objectives or not.

Make deep modules

Several years back, the JavaScript open-source community began a trend of deploying code as micro-modules. The idea takes decomposition to the extreme, making it easier to focus on smaller problems in isolation. The approach also spreads responsibility across the open-source community, making it possible for more people to get involved. These are some of the many benefits of small modules. However, not everything is so great. In the years that followed, high-profile security exploits were found hidden in these micro libraries. Maintainers had given up their projects and let them become obsolete without telling anyone. It’s now the norm that JavaScript projects are composed of incomprehensible chains of thousands of dependencies. Despite the upsides, small modules seem like a terrible idea.

Ousterhout argues instead for the design of “deep modules”. Deep modules maximize the volume of capabilities within an interface’s implementation while minimizing the cognitive load of the interface itself. Deep modules can minimize how changes echo and amplify across a system because changes can be isolated to the implementation of a module without interfering with any consumers.

As was discovered by Richard Parnas, a good criterion for decomposing modules is by encapsulating important design decisions. In this sense, deep modules provide complete solutions to whatever problems they encapsulate and can also vary those solutions in helpful ways. You might look at popular tools like FFmpeg, ImageMagick, Mpv, Postgres, Redis, Systemd, or Wayland through the lens of deep modules and think about if those programs can be characterized this way.

Modules are a natural, cultural artifact within companies, often synonymous with the teams that develop them. Deeper modules support deeper (possibly larger) teams. Less integration between teams means faster development overall.

Eliminate Errors

Most advice on error handling aims to manage errors once they’re recognized. One should exhaustively enumerate error states, handle errors, expose status to users, document them to other developers, log them, retry, and fail loudly when unexpected errors occur.

That’s a lot of work and complexity. Not only is most error handling completely non-essential, but it can be avoided by designing with the elimination of errors in mind. Remove all reasons for errors to occur first, and you won’t have to implement all the logic related to handling them. In the remaining cases where you can’t eliminate errors at the design stage, aim to remove as much logic for dealing with errors as you can. Code that guards against faulty assumptions or attempts to recover from mistakes is one of the largest sources of complexity in programs.

A good example of this is file deletion in Unix. If a file is deleted, the file is merely unlinked from the filesystem tree. The file data is not really deleted. So if another process is reading a file, deletion of that file will not cause an error in the reader. By contrast, Windows will not permit a program or user to delete a file that is in use. They must search for the process that has the file open and terminate it, have the file closed in some other way, or repeatedly check if file will release on its own.

The principle can be affirmed positively: if you eliminate non-essential code paths, your code has a good shot at remaining simple. If you can avoid the complexity of special cases, you can more effectively implement the core use cases.

And the documentation

Start your code with documentation because that’s the part most people are least excited about at the end of a project but is often quite fun at the outset of a project. Use documentation as a place to work out details of your designs. Focus on code comments above most other forms of documentation like the changelog and commit history.

Optimize for fun. Life is too short to deal with the tyranny of bad design. Well-designed software should help make good solutions obvious. It should feel lightweight and empowering.

Complexity is caused by dependencies. Think carefully when selecting and integrating dependent modules.

Complexity is caused by obscurity. Code structure is a primary contributor to obscurity, so everything about your program structure should be as clear as possible. Comments and good identifier names are a great way to document entry points, places worth focusing on, and any trouble areas.

Lastly, the future of software design is uncertain, and forces ranging from data visualization to collaboration to security are shaping how we write software modules.

 

Here are some references for you for further reading on Software Designs.

Author
Nagarro
Nagarro