Presentation–abstraction–control explained
Presentation–abstraction–control (PAC) is a software architectural pattern. It is an interaction-oriented software architecture, and is somewhat similar to model–view–controller (MVC) in that it separates an interactive system into three types of components responsible for specific aspects of the application's functionality. The abstraction component retrieves and processes the data, the presentation component formats the visual and audio presentation of data, and the control component handles things such as the flow of control and communication between the other two components.[1]
In contrast to MVC, PAC is used as a hierarchical structure of agents, each consisting of a triad of presentation, abstraction and control parts. The agents (or triads) communicate with each other only through the control part of each triad. It also differs from MVC in that within each triad, it completely insulates the presentation (view in MVC) and the abstraction (model in MVC). This provides the option to separately multithread the model and view which can give the user experience of very short program start times, as the user interface (presentation) can be shown before the abstraction has fully initialized.
History
PAC was initially developed by French computer scientist, Joëlle Coutaz in 1987.[2] [3] Coutaz founded the User Interface group at the Laboratoire de Génie Informatique of IMAG.[4]
See also
Notes
- Book: Kai
, Qian
. 2009 . Software Architecture and Design Illuminated . Interaction-oriented Software Architectures . 200 . Jones and Bartlett Illuminated . 978-0-7637-5420-4.
- News: Coutaz, Joëlle. 2015-12-05. Encounters with HCI Pioneers - A Personal Photo Journal. 2018-11-23. en-US.
- Coutaz. Joëlle. 1987-10-01. ACM SIGCHI Bulletin. 19. 2. 37–41. 10.1145/36111.1045592. 0736-6906. PAC. free.
- Book: Engineering for HCI. Unger. Claus. Bass. Leonard J.. 2016-01-09. Springer. 9780387349077. 43. en.
- Laurence . Nigay . Joëlle . Coutaz . 1991 . Building User Interfaces: Organizing Software Agents . ESPRIT '91 Conference. Brussels, Belgium: November 1991 . 10.1.1.53.606 .
- Book: Nigay
, Laurence
. January 1994 . Conception et modélisation logicielles des systèmes interactifs : application aux interfaces multimodales . PhD dissertation, 315 pages, University of Grenoble, France . fr, en . 131–268 .
- Book: Laurence . Nigay . Joëlle . Coutaz . 1997 . Formal Methods in Human-Computer Interaction . Software Architecture Modelling: Bridging Two Worlds Using Ergonomics and Software Properties . chapter 3, pp. 49–73 . http://iihm.imag.fr/publs/1997/FormalMethodChapNigay97.pdf . Springer-Verlag . 978-3-540-76158-7 . true .
References
- Coutaz . Joëlle . 1987 . PAC: an Implementation Model for Dialog Design . Proceedings of the Interact'87 conference, September 1–4, 1987, Stuttgart, DE . Bullinger, H.-J. . Shackel, B. . North-Holland . 431–436 .
- Book: Frank . Buschmann . Regine . Meunier . Hans . Rohnert . Peter . Sommerlad . Michael . Stal . Pattern-Oriented Software Architecture Vol 1: A System of Patterns . John Wiley and Sons . 1996 . 978-0-471-95869-7 . 145–168 .
- Gaëlle . Calvary . Joëlle . Coutaz . Laurence . Nigay . 1997 . From Single-User Architectural Design to PAC*: a Generic Software Architecture Model for CSCW . Proceedings of the ACM CHI 97 Human Factors in Computing Systems Conference, March 22–27, 1997, Atlanta, GA . Pemberton, Steven . 242–249 . 2006-05-24 . https://web.archive.org/web/20070825154006/http://www1.acm.org/sigs/sigchi/chi97/proceedings/paper/jcc.htm . 2007-08-25 . dead .
- Joëlle . Coutaz . 1997 . PAC-ing the Architecture of Your User Interface . DSV-IS’97, 4th Eurographics Workshop on Design, Specification and Verification of Interactive Systems . Springer Verlag . 15–32 .
- Book: Markopoulos
, Panagiotis
. 1997 . A compositional model for the formal specification of user interface software . PhD thesis, Queen Mary and Westfield College, University of London . 2006-05-25 . 26 . https://web.archive.org/web/20060530063256/http://www.idemployee.id.tue.nl/p.markopoulos/downloadablePapers/PhDThesisPanosMarkopoulos.pdf . 2006-05-30 . dead .
- Paris . Avgeriou . Uwe . Zdun . 2005 . Architectural patterns revisited – a pattern language . Proceedings of 10th European Conference on Pattern Languages of Programs (EuroPlop 2005), Irsee, Germany, July 2005 . 1–39 .
External links