Software Engineering since 1950s

 

Monolithic approach (1950s-1980s)

With this approach all the processes and the data are on the same machine.  Computers were predominantly main frame and client's interaction was through dumb terminals.  Hand full of programming languages were used such as Fortran, and Cobol.  Processes within the programme were often dependent on each other and programming required intricate knowledge of how data was stored.  At times code was referred to as spaghetti-code and with increase complexity of systems, decomposition of software became necessary.

 

Client Server (1980s onward)

80s saw the emergence of separation of processor of data (client) from the keeper of data (server).  Client had to retrieve data from the server and this increased flexibility because now data was encapsulated in a database server.  Data now could be wrapped in data integrity rules and stored procedures for greater integrity of data.  There is now less chance of corruption of data because it is insulated from the client programme and changes to data could only happen through use of stored procedures. DBMS of relational databases enabled software designers to achieve greater data integrity.  There was still no distinguishing between the layers of the application that processed and used data and those layers that just presented the data or took data from the user.

 

N-Tier architecture (Through 1990s)

This architecture aimed to address the separation of the processing layers from the presentational layers.  With this architecture client is referred to the presentational layer and business logic is referred to as the application layer or application logic.  Off course now we are talking about multiple clients accessing the same business logic and the emergence of standards such as DCOM (Distributed Component Object Model) which is a protocol that software components use to communicate with each other over a network.  Also CORBA is a technology that makes the clients' interaction with the application layer more open.

 

Component based development (1990s-..)

90s saw the development of object oriented paradigms and programming languages such as C++ and Java.  This was to deal with complexity of systems where both data, structure could be encapsulated into objects and classes.  Through inheritance software reuse is encouraged and essentially the idea is to approach these objects (that would map to real-world entities) as black boxes that publish their interface to their environment so that other objects would know the protocol it understands and so objects would have knowledge (protocol) of  messaging and also what behaviour(s) to expect from these software modules. Note that this places the data right next to the processing that happens on the data and this is an attempt to reduce dependencies of objects on each other.  The whole system behaviour though is based on interaction and message passing of objects and so as the systems become more complex it becomes tedious to deal with the complex interactions between objects.  If we say object based development is fine-grained then coarser-grained is class based development.  Classes encapsulate structure and behaviour of a number of objects that are similar and somewhat alike.

 

At the present time there is much talk of component based development to deal with complexity of systems.  This is supposed to enable us to create complex systems faster and cheaper. With components we are talking about a number of objects working together to enable a functional requirement.  For example a student object, a book object, and a loan object may work together in a loan component to provide a loan function for a large library application.  The idea here is to look at this loan component as a black box with an interface (A set of protocols) and the behaviour.  This will also help us to reduce interdependencies if we make sure that the student object and the book object for example are not accessible to any other part of the system.  And so components are supposed to be much coarser grained and at a much higher level of abstraction than objects.

 

Service Oriented Architecture

This is a model for open and distributed architectures.  We could look at software components as modules of software that are totally independent of each other and that each of them does a very discrete function.  For example credit card authentication service does all the functions that are particular to do with credit card authentication and nothing else.  So you can see that one can build applications that are assemblies of services.  One service could be used for many applications without the service knowing what application its services are being used for.  A service could use service of other services to do what it does and interoperability then becomes paramount with such architecture.  Service oriented architecture is said to be coarser grained in comparison with component based software.

 

Back to home