meillo@2: .\".if n .pl 1000i meillo@0: .de XX meillo@0: .pl 1v meillo@0: .. meillo@0: .em XX meillo@1: .\".nr PI 0 meillo@1: .\".if t .nr PD .5v meillo@1: .\".if n .nr PD 1v meillo@0: .nr lu 0 meillo@0: .de CW meillo@0: .nr PQ \\n(.f meillo@0: .if t .ft CW meillo@0: .ie \\$1 .if n .ul 999 meillo@0: .el .if n .ul 1 meillo@0: .if t .if !\\$1 \&\\$1\f\\n(PQ\\$2 meillo@0: .if n .if \\n(.$=1 \&\\$1 meillo@0: .if n .if \\n(.$>1 \&\\$1\c meillo@0: .if n .if \\n(.$>1 \&\\$2 meillo@0: .. meillo@0: .ds [. \ [ meillo@0: .ds .] ] meillo@1: .\"---------------------------------------- meillo@0: .TL meillo@6: Why the Unix Philosophy still matters meillo@0: .AU meillo@0: markus schnalke meillo@0: .AB meillo@1: .ti \n(.iu meillo@2: This paper discusses the importance of the Unix Philosophy in software design. meillo@0: Today, few software designers are aware of these concepts, meillo@3: and thus most modern software is limited and does not make use of software leverage. meillo@0: Knowing and following the tenets of the Unix Philosophy makes software more valuable. meillo@0: .AE meillo@0: meillo@10: .\".if t .2C meillo@2: meillo@2: .FS meillo@2: .ps -1 meillo@2: This paper was prepared for the seminar ``Software Analysis'' at University Ulm. meillo@2: Mentor was professor Schweiggert. 2010-02-05 meillo@2: .br meillo@2: You may get this document from my website meillo@2: .CW \s-1http://marmaro.de/docs meillo@2: .FE meillo@2: meillo@0: .NH 1 meillo@0: Introduction meillo@0: .LP meillo@0: Building a software is a process from an idea of the purpose of the software meillo@3: to its release. meillo@0: No matter \fIhow\fP the process is run, two things are common: meillo@0: the initial idea and the release. meillo@9: The process in between can be of any shape. meillo@9: The the maintenance work after the release is ignored for the moment. meillo@1: .PP meillo@0: The process of building splits mainly in two parts: meillo@0: the planning of what and how to build, and implementing the plan by writing code. meillo@3: This paper focuses on the planning part \(en the designing of the software. meillo@3: .PP meillo@3: Software design is the plan of how the internals and externals of the software should look like, meillo@3: based on the requirements. meillo@9: This paper discusses the recommendations of the Unix Philosophy about software design. meillo@3: .PP meillo@3: The here discussed ideas can get applied by any development process. meillo@9: The Unix Philosophy does recommend how the software development process should look like, meillo@3: but this shall not be of matter here. meillo@0: Similar, the question of how to write the code is out of focus. meillo@1: .PP meillo@3: The name ``Unix Philosophy'' was already mentioned several times, but it was not explained yet. meillo@1: The Unix Philosophy is the essence of how the Unix operating system and its toolchest was designed. meillo@3: It is no limited set of rules, but what people see to be common to typical Unix software. meillo@1: Several people stated their view on the Unix Philosophy. meillo@1: Best known are: meillo@1: .IP \(bu meillo@1: Doug McIlroy's summary: ``Write programs that do one thing and do it well.'' meillo@1: .[ meillo@1: %A M. D. McIlroy meillo@1: %A E. N. Pinson meillo@1: %A B. A. Taque meillo@1: %T UNIX Time-Sharing System Forward meillo@1: %J The Bell System Technical Journal meillo@1: %D 1978 meillo@1: %V 57 meillo@1: %N 6 meillo@1: %P 1902 meillo@1: .] meillo@1: .IP \(bu meillo@1: Mike Gancarz' book ``The UNIX Philosophy''. meillo@1: .[ meillo@1: %A Mike Gancarz meillo@1: %T The UNIX Philosophy meillo@1: %D 1995 meillo@1: %I Digital Press meillo@1: .] meillo@1: .IP \(bu meillo@1: Eric S. Raymond's book ``The Art of UNIX Programming''. meillo@1: .[ meillo@1: %A Eric S. Raymond meillo@1: %T The Art of UNIX Programming meillo@1: %D 2003 meillo@1: %I Addison-Wesley meillo@2: %O .CW \s-1http://www.faqs.org/docs/artu/ meillo@1: .] meillo@0: .LP meillo@1: These different views on the Unix Philosophy have much in common. meillo@3: Especially, the main concepts are similar for all of them. meillo@1: But there are also points on which they differ. meillo@1: This only underlines what the Unix Philosophy is: meillo@1: A retrospective view on the main concepts of Unix software; meillo@9: especially those that were successful and unique to Unix. meillo@6: .\" really? meillo@1: .PP meillo@1: Before we will have a look at concrete concepts, meillo@1: we discuss why software design is important meillo@1: and what problems bad design introduces. meillo@0: meillo@0: meillo@0: .NH 1 meillo@6: Importance of software design in general meillo@0: .LP meillo@2: Why should we design software at all? meillo@6: It is general knowledge, that even a bad plan is better than no plan. meillo@6: Ignoring software design is programming without a plan. meillo@6: This will lead pretty sure to horrible results. meillo@2: .PP meillo@6: The design of a software is its internal and external shape. meillo@6: The design talked about here has nothing to do with visual appearance. meillo@6: If we see a program as a car, then its color is of no matter. meillo@6: Its design would be the car's size, its shape, the number and position of doors, meillo@6: the ratio of passenger and cargo transport, and so forth. meillo@2: .PP meillo@6: A software's design is about quality properties. meillo@6: Each of the cars may be able to drive from A to B, meillo@6: but it depends on its properties whether it is a good car for passenger transport or not. meillo@6: It also depends on its properties if it is a good choice for a rough mountain area. meillo@2: .PP meillo@6: Requirements to a software are twofold: functional and non-functional. meillo@6: Functional requirements are easier to define and to verify. meillo@6: They are directly the software's functions. meillo@6: Functional requirements are the reason why software gets written. meillo@6: Someone has a problem and needs a tool to solve it. meillo@6: Being able to solve the problem is the main functional requirement. meillo@6: It is the driving force behind all programming effort. meillo@2: .PP meillo@6: On the other hand, there are also non-functional requirements. meillo@6: They are called \fIquality\fP requirements, too. meillo@6: The quality of a software is about properties that are not directly related to meillo@6: the software's basic functions. meillo@6: Quality aspects are about the properties that are overlooked at first sight. meillo@2: .PP meillo@6: Quality is of few matter when the software gets initially built, meillo@9: but it will be of matter in usage and maintenance of the software. meillo@6: A short-sighted might see in developing a software mainly building something up. meillo@6: Reality shows, that building the software the first time is only a small amount meillo@6: of the overall work. meillo@9: Bug fixing, extending, rebuilding of parts \(en short: maintenance work \(en meillo@6: does soon take over the major part of the time spent on a software. meillo@6: Not to forget the usage of the software. meillo@6: These processes are highly influenced by the software's quality. meillo@6: Thus, quality should never be neglected. meillo@6: The problem is that you hardly ``stumble over'' bad quality during the first build, meillo@6: but this is the time when you should care about good quality most. meillo@6: .PP meillo@6: Software design is not about the basic function of a software; meillo@6: this requirement will get satisfied anyway, as it is the main driving force behind the development. meillo@6: Software design is about quality aspects of the software. meillo@6: Good design will lead to good quality, bad design to bad quality. meillo@6: The primary functions of the software will be affected modestly by bad quality, meillo@6: but good quality can provide a lot of additional gain from the software, meillo@6: even at places where one never expected it. meillo@6: .PP meillo@6: The ISO/IEC 9126-1 standard, part 1, meillo@6: .[ meillo@9: %I International Organization for Standardization meillo@6: %T ISO Standard 9126: Software Engineering \(en Product Quality, part 1 meillo@6: %C Geneve meillo@6: %D 2001 meillo@6: .] meillo@6: defines the quality model as consisting out of: meillo@6: .IP \(bu meillo@6: .I Functionality meillo@6: (suitability, accuracy, inter\%operability, security) meillo@6: .IP \(bu meillo@6: .I Reliability meillo@6: (maturity, fault tolerance, recoverability) meillo@6: .IP \(bu meillo@6: .I Usability meillo@6: (understandability, learnability, operability, attractiveness) meillo@6: .IP \(bu meillo@6: .I Efficiency meillo@9: (time behavior, resource utilization) meillo@6: .IP \(bu meillo@6: .I Maintainability meillo@6: (analysability, changeability, stability, testability) meillo@6: .IP \(bu meillo@6: .I Portability meillo@6: (adaptability, installability, co-existence, replaceability) meillo@6: .LP meillo@6: These goals are parts of a software's design. meillo@6: Good design can give these properties to a software, meillo@6: bad designed software will miss them. meillo@7: .PP meillo@7: One further goal of software design is consistency. meillo@7: Consistency eases understanding, working on, and using things. meillo@7: Consistent internals and consistent interfaces to the outside can be provided by good design. meillo@7: .PP meillo@7: We should design software because good design avoids many problems during a software's lifetime. meillo@7: And we should design software because good design can offer much gain, meillo@7: that can be unrelated to the software main intend. meillo@7: Indeed, we should spend much effort into good design to make the software more valuable. meillo@7: The Unix Philosophy shows how to design software well. meillo@7: It offers guidelines to achieve good quality and high gain for the effort spent. meillo@0: meillo@0: meillo@0: .NH 1 meillo@0: The Unix Philosophy meillo@4: .LP meillo@4: The origins of the Unix Philosophy were already introduced. meillo@8: This chapter explains the philosophy, oriented on Gancarz, meillo@8: and shows concrete examples of its application. meillo@5: meillo@5: .SH meillo@14: Pipes meillo@4: .LP meillo@4: Following are some examples to demonstrate how applied Unix Philosophy feels like. meillo@4: Knowledge of using the Unix shell is assumed. meillo@4: .PP meillo@4: Counting the number of files in the current directory: meillo@9: .DS I 2n meillo@4: .CW meillo@9: .ps -1 meillo@4: ls | wc -l meillo@4: .DE meillo@4: The meillo@4: .CW ls meillo@4: command lists all files in the current directory, one per line, meillo@4: and meillo@4: .CW "wc -l meillo@8: counts the number of lines. meillo@4: .PP meillo@8: Counting the number of files that do not contain ``foo'' in their name: meillo@9: .DS I 2n meillo@4: .CW meillo@9: .ps -1 meillo@4: ls | grep -v foo | wc -l meillo@4: .DE meillo@4: Here, the list of files is filtered by meillo@4: .CW grep meillo@4: to remove all that contain ``foo''. meillo@4: The rest is the same as in the previous example. meillo@4: .PP meillo@4: Finding the five largest entries in the current directory. meillo@9: .DS I 2n meillo@4: .CW meillo@9: .ps -1 meillo@4: du -s * | sort -nr | sed 5q meillo@4: .DE meillo@4: .CW "du -s * meillo@4: returns the recursively summed sizes of all files meillo@8: \(en no matter if they are regular files or directories. meillo@4: .CW "sort -nr meillo@4: sorts the list numerically in reverse order. meillo@4: Finally, meillo@4: .CW "sed 5q meillo@4: quits after it has printed the fifth line. meillo@4: .PP meillo@4: The presented command lines are examples of what Unix people would use meillo@4: to get the desired output. meillo@4: There are also other ways to get the same output. meillo@4: It's a user's decision which way to go. meillo@14: .PP meillo@8: The examples show that many tasks on a Unix system meillo@4: are accomplished by combining several small programs. meillo@4: The connection between the single programs is denoted by the pipe operator `|'. meillo@4: .PP meillo@4: Pipes, and their extensive and easy use, are one of the great meillo@4: achievements of the Unix system. meillo@4: Pipes between programs have been possible in earlier operating systems, meillo@4: but it has never been a so central part of the concept. meillo@4: When, in the early seventies, Doug McIlroy introduced pipes for the meillo@4: Unix system, meillo@4: ``it was this concept and notation for linking several programs together meillo@4: that transformed Unix from a basic file-sharing system to an entirely new way of computing.'' meillo@4: .[ meillo@4: %T Unix: An Oral History meillo@5: %O .CW \s-1http://www.princeton.edu/~hos/frs122/unixhist/finalhis.htm meillo@4: .] meillo@4: .PP meillo@4: Being able to specify pipelines in an easy way is, meillo@4: however, not enough by itself. meillo@5: It is only one half. meillo@4: The other is the design of the programs that are used in the pipeline. meillo@8: They have to interfaces that allows them to be used in such a way. meillo@5: meillo@5: .SH meillo@14: Interface design meillo@5: .LP meillo@11: Unix is, first of all, simple \(en Everything is a file. meillo@5: Files are sequences of bytes, without any special structure. meillo@5: Programs should be filters, which read a stream of bytes from ``standard input'' (stdin) meillo@5: and write a stream of bytes to ``standard output'' (stdout). meillo@5: .PP meillo@8: If the files \fIare\fP sequences of bytes, meillo@8: and the programs \fIare\fP filters on byte streams, meillo@11: then there is exactly one standardized data interface. meillo@5: Thus it is possible to combine them in any desired way. meillo@5: .PP meillo@5: Even a handful of small programs will yield a large set of combinations, meillo@5: and thus a large set of different functions. meillo@5: This is leverage! meillo@5: If the programs are orthogonal to each other \(en the best case \(en meillo@5: then the set of different functions is greatest. meillo@5: .PP meillo@11: Programs might also have a separate control interface, meillo@11: besides their data interface. meillo@11: The control interface is often called ``user interface'', meillo@11: because it is usually designed to be used by humans. meillo@11: The Unix Philosophy discourages to assume the user to be human. meillo@11: Interactive use of software is slow use of software, meillo@11: because the program waits for user input most of the time. meillo@11: Interactive software requires the user to be in front of the computer meillo@11: all the time. meillo@11: Interactive software occupy the user's attention while they are running. meillo@11: .PP meillo@11: Now we come back to the idea of using several small programs, combined, meillo@11: to have a more specific function. meillo@11: If these single tools would all be interactive, meillo@11: how would the user control them? meillo@11: It is not only a problem to control several programs at once if they run at the same time, meillo@11: it also very inefficient to have to control each of the single programs meillo@11: that are intended to work as one large program. meillo@11: Hence, the Unix Philosophy discourages programs to demand interactive use. meillo@11: The behavior of programs should be defined at invocation. meillo@11: This is done by specifying arguments (``command line switches'') to the program call. meillo@11: Gancarz discusses this topic as ``avoid captive user interfaces''. meillo@11: .[ meillo@11: %A Mike Gancarz meillo@11: %T The UNIX Philosophy meillo@11: %I Digital Press meillo@11: %D 1995 meillo@11: %P 88 ff. meillo@11: .] meillo@11: .PP meillo@11: Non-interactive use is, during development, also an advantage for testing. meillo@11: Testing of interactive programs is much more complicated, meillo@11: than testing of non-interactive programs. meillo@5: meillo@5: .SH meillo@8: The toolchest approach meillo@5: .LP meillo@5: A toolchest is a set of tools. meillo@5: Instead of having one big tool for all tasks, one has many small tools, meillo@5: each for one task. meillo@5: Difficult tasks are solved by combining several of the small, simple tools. meillo@5: .PP meillo@11: The Unix toolchest \fIis\fP a set of small, (mostly) non-interactive programs meillo@11: that are filters on byte streams. meillo@11: They are, to a large extend, unrelated in their function. meillo@11: Hence, the Unix toolchest provides a large set of functions meillo@11: that can be accessed by combining the programs in the desired way. meillo@11: .PP meillo@11: There are also advantages for developing small toolchest programs. meillo@5: It is easier and less error-prone to write small programs. meillo@5: It is also easier and less error-prone to write a large set of small programs, meillo@5: than to write one large program with all the functionality included. meillo@5: If the small programs are combinable, then they offer even a larger set meillo@5: of functions than the single large program. meillo@5: Hence, one gets two advantages out of writing small, combinable programs. meillo@5: .PP meillo@5: There are two drawbacks of the toolchest approach. meillo@8: First, one simple, standardized, unidirectional interface has to be sufficient. meillo@5: If one feels the need for more ``logic'' than a stream of bytes, meillo@8: then a different approach might be of need. meillo@13: But it is also possible, that he just can not imagine a design where meillo@8: a stream of bytes is sufficient. meillo@8: By becoming more familiar with the ``Unix style of thinking'', meillo@8: developers will more often and easier find simple designs where meillo@8: a stream of bytes is a sufficient interface. meillo@8: .PP meillo@8: The second drawback of a toolchest affects the users. meillo@5: A toolchest is often more difficult to use for novices. meillo@9: It is necessary to become familiar with each of the tools, meillo@5: to be able to use the right one in a given situation. meillo@9: Additionally, one needs to combine the tools in a senseful way on its own. meillo@9: This is like a sharp knife \(en it is a powerful tool in the hand of a master, meillo@5: but of no good value in the hand of an unskilled. meillo@5: .PP meillo@8: However, learning single, small tool of the toolchest is easier than meillo@8: learning a complex tool. meillo@8: The user will have a basic understanding of a yet unknown tool, meillo@8: if the several tools of the toolchest have a common style. meillo@8: He will be able to transfer knowledge over one tool to another. meillo@8: .PP meillo@8: Moreover, the second drawback can be removed easily by adding wrappers meillo@8: around the single tools. meillo@5: Novice users do not need to learn several tools if a professional wraps meillo@8: the single commands into a more high-level script. meillo@5: Note that the wrapper script still calls the small tools; meillo@5: the wrapper script is just like a skin around. meillo@8: No complexity is added this way, meillo@8: but new programs can get created out of existing one with very low effort. meillo@5: .PP meillo@5: A wrapper script for finding the five largest entries in the current directory meillo@5: could look like this: meillo@9: .DS I 2n meillo@5: .CW meillo@9: .ps -1 meillo@5: #!/bin/sh meillo@5: du -s * | sort -nr | sed 5q meillo@5: .DE meillo@5: The script itself is just a text file that calls the command line meillo@5: a professional user would type in directly. meillo@8: Making the program flexible on the number of entries it prints, meillo@8: is easily possible: meillo@9: .DS I 2n meillo@8: .CW meillo@9: .ps -1 meillo@8: #!/bin/sh meillo@8: num=5 meillo@8: [ $# -eq 1 ] && num="$1" meillo@8: du -sh * | sort -nr | sed "${num}q" meillo@8: .DE meillo@8: This script acts like the one before, when called without an argument. meillo@8: But one can also specify a numerical argument to define the number of lines to print. meillo@5: meillo@8: .SH meillo@8: A powerful shell meillo@8: .LP meillo@10: It was already said, that the Unix shell provides the possibility to meillo@10: combine small programs into large ones easily. meillo@10: A powerful shell is a great feature in other ways, too. meillo@8: .PP meillo@10: For instance by including a scripting language. meillo@10: The control statements are build into the shell. meillo@8: The functions, however, are the normal programs, everyone can use on the system. meillo@10: Thus, the programs are known, so learning to program in the shell is easy. meillo@8: Using normal programs as functions in the shell programming language meillo@10: is only possible because they are small and combinable tools in a toolchest style. meillo@8: .PP meillo@8: The Unix shell encourages to write small scripts out of other programs, meillo@8: because it is so easy to do. meillo@8: This is a great step towards automation. meillo@8: It is wonderful if the effort to automate a task equals the effort meillo@8: it takes to do it the second time by hand. meillo@8: If it is so, then the user will be happy to automate everything he does more than once. meillo@8: .PP meillo@8: Small programs that do one job well, standardized interfaces between them, meillo@8: a mechanism to combine parts to larger parts, and an easy way to automate tasks, meillo@8: this will inevitably produce software leverage. meillo@8: Getting multiple times the benefit of an investment is a great offer. meillo@10: .PP meillo@10: The shell also encourages rapid prototyping. meillo@10: Many well known programs started as quickly hacked shell scripts, meillo@10: and turned into ``real'' programs, written in C, later. meillo@10: Building a prototype first is a way to avoid the biggest problems meillo@10: in application development. meillo@10: Fred Brooks writes in ``No Silver Bullet'': meillo@10: .[ meillo@10: %A Frederick P. Brooks, Jr. meillo@10: %T No Silver Bullet: Essence and Accidents of Software Engineering meillo@10: %B Information Processing 1986, the Proceedings of the IFIP Tenth World Computing Conference meillo@10: %E H.-J. Kugler meillo@10: %D 1986 meillo@10: %P 1069\(en1076 meillo@10: %I Elsevier Science B.V. meillo@10: %C Amsterdam, The Netherlands meillo@10: .] meillo@10: .QP meillo@10: The hardest single part of building a software system is deciding precisely what to build. meillo@10: No other part of the conceptual work is so difficult as establishing the detailed meillo@10: technical requirements, [...]. meillo@10: No other part of the work so cripples the resulting system if done wrong. meillo@10: No other part is more difficult to rectify later. meillo@10: .PP meillo@10: Writing a prototype is a great method to become familiar with the requirements meillo@10: and to actually run into real problems. meillo@10: Today, prototyping is often seen as a first step in building a software. meillo@10: This is, of course, good. meillo@10: However, the Unix Philosophy has an \fIadditional\fP perspective on prototyping: meillo@10: After having built the prototype, one might notice, that the prototype is already meillo@10: \fIgood enough\fP. meillo@10: Hence, no reimplementation, in a more sophisticated programming language, might be of need, meillo@10: for the moment. meillo@10: Maybe later, it might be neccessary to rewrite the software, but not now. meillo@10: .PP meillo@10: By delaying further work, one keeps the flexibility to react easily on meillo@10: changing requirements. meillo@10: Software parts that are not written will not miss the requirements. meillo@10: meillo@10: .SH meillo@10: Worse is better meillo@10: .LP meillo@10: The Unix Philosophy aims for the 80% solution; meillo@10: others call it the ``Worse is better'' approach. meillo@10: .PP meillo@10: First, practical experience shows, that it is almost never possible to define the meillo@10: requirements completely and correctly the first time. meillo@10: Hence one should not try to; it will fail anyway. meillo@10: Second, practical experience shows, that requirements change during time. meillo@10: Hence it is best to delay requirement-based design decisions as long as possible. meillo@10: Also, the software should be small and flexible as long as possible meillo@10: to react on changing requirements. meillo@10: Shell scripts, for example, are more easily adjusted as C programs. meillo@10: Third, practical experience shows, that maintenance is hard work. meillo@10: Hence, one should keep the amount of software as small as possible; meillo@10: it should just fulfill the \fIcurrent\fP requirements. meillo@10: Software parts that will be written later, do not need maintenance now. meillo@10: .PP meillo@10: Starting with a prototype in a scripting language has several advantages: meillo@10: .IP \(bu meillo@10: As the initial effort is low, one will likely start right away. meillo@10: .IP \(bu meillo@10: As working parts are available soon, the real requirements can get identified soon. meillo@10: .IP \(bu meillo@10: When a software is usable, it gets used, and thus tested. meillo@10: Hence problems will be found at early stages of the development. meillo@10: .IP \(bu meillo@10: The prototype might be enough for the moment, meillo@10: thus further work on the software can be delayed to a time meillo@10: when one knows better about the requirements and problems, meillo@10: than now. meillo@10: .IP \(bu meillo@10: Implementing now only the parts that are actually needed now, meillo@10: requires fewer maintenance work. meillo@10: .IP \(bu meillo@10: If the global situation changes so that the software is not needed anymore, meillo@10: then less effort was spent into the project, than it would have be meillo@10: when a different approach had been used. meillo@10: meillo@11: .SH meillo@11: Upgrowth and survival of software meillo@11: .LP meillo@12: So far it was talked about \fIwriting\fP or \fIbuilding\fP software. meillo@13: Although these are just verbs, they do imply a specific view on the work process meillo@13: they describe. meillo@12: The better verb, however, is to \fIgrow\fP. meillo@12: .PP meillo@12: Creating software in the sense of the Unix Philosophy is an incremental process. meillo@12: It starts with a first prototype, which evolves as requirements change. meillo@12: A quickly hacked shell script might become a large, sophisticated, meillo@13: compiled program this way. meillo@13: Its lifetime begins with the initial prototype and ends when the software is not used anymore. meillo@13: While being alive it will get extended, rearranged, rebuilt (from scratch). meillo@12: Growing software matches the view that ``software is never finished. It is only released.'' meillo@12: .[ meillo@13: %O FIXME meillo@13: %A Mike Gancarz meillo@13: %T The UNIX Philosophy meillo@13: %P 26 meillo@12: .] meillo@12: .PP meillo@13: Software can be seen as being controlled by evolutionary processes. meillo@13: Successful software is software that is used by many for a long time. meillo@12: This implies that the software is needed, useful, and better than alternatives. meillo@12: Darwin talks about: ``The survival of the fittest.'' meillo@12: .[ meillo@13: %O FIXME meillo@13: %A Charles Darwin meillo@12: .] meillo@12: Transferred to software: The most successful software, is the fittest, meillo@12: is the one that survives. meillo@13: (This may be at the level of one creature, or at the level of one species.) meillo@13: The fitness of software is affected mainly by four properties: meillo@15: portability of code, portability of data, range of usability, and reusability of parts. meillo@15: .\" .IP \(bu meillo@15: .\" portability of code meillo@15: .\" .IP \(bu meillo@15: .\" portability of data meillo@15: .\" .IP \(bu meillo@15: .\" range of usability meillo@15: .\" .IP \(bu meillo@15: .\" reuseability of parts meillo@13: .PP meillo@15: (1) meillo@15: .I "Portability of code meillo@15: means, using high-level programming languages, meillo@13: sticking to the standard, meillo@13: and avoiding optimizations that introduce dependencies on specific hardware. meillo@13: Hardware has a much lower lifetime than software. meillo@13: By chaining software to a specific hardware, meillo@13: the software's lifetime gets shortened to that of this hardware. meillo@13: In contrast, software should be easy to port \(en meillo@13: adaption is the key to success. meillo@13: .\" cf. practice of prog: ch08 meillo@13: .PP meillo@15: (2) meillo@15: .I "Portability of data meillo@15: is best achieved by avoiding binary representations meillo@13: to store data, because binary representations differ from machine to machine. meillo@13: Textual represenation is favored. meillo@13: Historically, ASCII was the charset of choice. meillo@13: In the future, UTF-8 might be the better choice, however. meillo@13: Important is that it is a plain text representation in a meillo@13: very common charset encoding. meillo@13: Apart from being able to transfer data between machines, meillo@13: readable data has the great advantage, that humans are able meillo@13: to directly edit it with text editors and other tools from the Unix toolchest. meillo@13: .\" gancarz tenet 5 meillo@13: .PP meillo@15: (3) meillo@15: A large meillo@15: .I "range of usability meillo@15: ensures good adaption, and thus good survival. meillo@13: It is a special distinction if a software becomes used in fields of action, meillo@13: the original authors did never imagine. meillo@13: Software that solves problems in a general way will likely be used meillo@13: for all kinds of similar problems. meillo@13: Being too specific limits the range of uses. meillo@13: Requirements change through time, thus use cases change or even vanish. meillo@13: A good example in this point is Allman's sendmail. meillo@13: Allman identifies flexibility to be one major reason for sendmail's success: meillo@13: .[ meillo@13: %O FIXME meillo@13: %A Allman meillo@13: %T sendmail meillo@13: .] meillo@13: .QP meillo@13: Second, I limited myself to the routing function [...]. meillo@13: This was a departure from the dominant thought of the time, [...]. meillo@13: .QP meillo@13: Third, the sendmail configuration file was flexible enough to adopt meillo@13: to a rapidly changing world [...]. meillo@12: .LP meillo@13: Successful software adopts itself to the changing world. meillo@13: .PP meillo@15: (4) meillo@15: .I "Reuse of parts meillo@15: is even one step further. meillo@13: A software may completely lose its field of action, meillo@13: but parts of which the software is build may be general and independent enough meillo@13: to survive this death. meillo@13: If software is build by combining small independent programs, meillo@13: then there are parts readily available for reuse. meillo@13: Who cares if the large program is a failure, meillo@13: but parts of it become successful instead? meillo@10: meillo@13: .SH meillo@14: Summary meillo@0: .LP meillo@14: This chapter explained the central ideas of the Unix Philosophy. meillo@14: For each of the ideas, it was exposed what advantages they introduce. meillo@14: The Unix Philosophy are guidelines that help to write valuable software. meillo@14: From the view point of a software developer or software designer, meillo@14: the Unix Philosophy provides answers to many software design problem. meillo@14: .PP meillo@14: The various ideas of the Unix Philosophy are very interweaved meillo@14: and can hardly be applied independently. meillo@14: However, the probably most important messages are: meillo@14: .I "``Do one thing well!''" , meillo@14: .I "``Keep it simple!''" , meillo@14: and meillo@14: .I "``Use software leverage!'' meillo@0: meillo@8: meillo@8: meillo@0: .NH 1 meillo@0: Case study: nmh meillo@0: meillo@0: .NH 2 meillo@0: History meillo@0: .LP meillo@0: MH, nmh. meillo@0: They are old. meillo@0: meillo@0: .NH 2 meillo@0: Contrasts to similar sw meillo@0: .LP meillo@0: vs. Thunderbird, mutt, mailx, pine meillo@0: .LP meillo@0: flexibility, no redundancy, use the shell meillo@0: meillo@0: .NH 2 meillo@0: Gains of the design meillo@0: .LP meillo@0: meillo@0: .NH 2 meillo@0: Problems meillo@0: .LP meillo@0: meillo@8: meillo@8: meillo@0: .NH 1 meillo@0: Case study: uzbl meillo@0: meillo@0: .NH 2 meillo@0: History meillo@0: .LP meillo@0: uzbl is young meillo@0: meillo@0: .NH 2 meillo@0: Contrasts to similar sw meillo@0: .LP meillo@0: like with nmh meillo@0: .LP meillo@0: addons, plugins, modules meillo@0: meillo@0: .NH 2 meillo@0: Gains of the design meillo@0: .LP meillo@0: meillo@0: .NH 2 meillo@0: Problems meillo@0: .LP meillo@0: broken web meillo@0: meillo@8: meillo@8: meillo@0: .NH 1 meillo@0: Final thoughts meillo@0: meillo@0: .NH 2 meillo@0: Quick summary meillo@0: .LP meillo@0: good design meillo@0: .LP meillo@0: unix phil meillo@0: .LP meillo@0: case studies meillo@0: meillo@0: .NH 2 meillo@0: Why people should choose meillo@0: .LP meillo@0: Make the right choice! meillo@0: meillo@0: .nr PI .5i meillo@0: .rm ]< meillo@0: .de ]< meillo@0: .LP meillo@0: .de FP meillo@0: .IP \\\\$1. meillo@0: \\.. meillo@0: .rm FS FE meillo@0: .. meillo@0: .SH meillo@0: References meillo@0: .[ meillo@0: $LIST$ meillo@0: .] meillo@0: .wh -1p