GCF Presentation

23
 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com> Generic Component Framework Generic Component Framework  A Qt based Component Framework  A Qt ba sed Component Framework - Prashanth N Udupa Email: prashanth @ vcreatelogic . com

Transcript of GCF Presentation

Page 1: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 1/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Generic Component FrameworkGeneric Component Framework A Qt based Component Framework A Qt based Component Framework

-

Prashanth N UdupaEmail: prashanth @ vcreatelogic . com

Page 2: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 2/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Key Rules in Software DesignKey Rules in Software Design

Divide and Rule● Establish a Constitution

● Similarity in Diversity

● Bring them together 

Page 3: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 3/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Survey of Component FrameworksSurvey of Component Frameworks

KDE's KParts● Microsoft's COM

● Mozilla's XPCOM

● SOAP

● CORBA

● .... and today let me introduce another one :)

Page 4: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 4/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Introducing GCF....Introducing GCF....

Page 5: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 5/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

What is GCF?What is GCF?

 A C++ framework for Qt applications. Based on Qt 4.4● Helps compose modules of an application as a

dynamically loadable entities

● Provides GUI merging capabilities

● Provides object/functionality discovery services

● Provides support for inter-process-communication.

● Provides in-built components for common tasks

Foundation for several commercial software and theopen-source VTK Designer 2

Page 6: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 6/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Winner of Winner of Qt Centre Programming Contest 2007Qt Centre Programming Contest 2007

Page 7: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 7/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Gallery.....Gallery.....

Page 8: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 8/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Gallery....Gallery....

Page 9: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 9/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

OverviewOverview

Page 10: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 10/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

How to Divide and RuleHow to Divide and Rule

Package functionality into “GCF Components”●  A GCF component offers

 – One or more widgets (subclasses of QWidget)

 – One or more objects (subclasses of QObject)

 – User interface elements (QAction, QMenu etc)

Page 11: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 11/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

GCF's Constitution for ApplicationsGCF's Constitution for Applications

Have a singleton component class for each componen● Provide a GUI-XML file for each component declaring

objects, widgets, actions etc exposed by the applicatioand their merge hints

Serve objects, widgets, actions, menus, toolbars etc frcomponents

● Expose component functionality via interfaces

● Have one or more objects within your object implemen

them

Page 12: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 12/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Similarity in DiversitySimilarity in Diversity

IComponent – base class of GCF components● IComponentPlugin – offers a component from a plugin

● CComponentFactory – dictionary of all components(instantiated, uninstantiated, active and inactive)

● Each component's GUI XML exposes one or more objbelonging to the component

● Interfaces implemented by exposed objects can besearched

Page 13: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 13/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

The IComponent ClassThe IComponent Class

Interface Methods – Methods called by GCF

 – Used for GUI creation andmerging

 – Used for handlingactivation/deactivation of components

 – Reporting component“attendance”

Service Methods – Methods called by

components

 – Used for object/service/compone

discovery – Used for establishing an

releasing componentdependency

Page 14: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 14/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Bring them together...Bring them together...

CComponentLoaderComponent and CComponentGui● GUI XML File

 – Declares objects, widgets, actions, menus, menu-strip grou

 –  All declared objects are called “exposed” objects.

 – For each “exposed” object in the GUI XML file, a corresponcreate() method is called on the IComponent.

● Configuration capabilities

 – Can invoke methods, set property values, make connection

etc..

Page 15: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 15/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Page 16: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 16/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Interprocess CommunicationInterprocess Communication

 Application Access Poi –  Access to components

its objects are providedthrough this.

● Remote Access Point

 – Helps access objects inremote application

● Remote Object

 – Represents a remote ob

Page 17: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 17/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Interprocess CommunicationInterprocess Communication

CAppAccessPoint● CRemoteAppAccessPo

● CRemoteObject

● CRemoteAppDiscovery

● CMessage

● CRemoteApp

● Based on TCP/IP

Page 18: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 18/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Page 19: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 19/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Getting and Installing GCFGetting and Installing GCF

From www.vcreatelogic.com/oss/gcf ● SVN https://svn2.hosted-projects.com/vcreatelogic/GC

● Supported compilers: g++, MSVC 2005, MinGW

● GCF designed, developed, maintained by VCreate Log

● Is distributed under GPL v2 and GPL v3

● Contributions are most definitely welcome.

● KDCF (commercial GCF) can be purchased from KDA

For more information write to [email protected]

Page 20: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 20/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Documentation and How to learn?Documentation and How to learn?

Page 21: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 21/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

GCF ManualGCF Manual

Page 22: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 22/23

 Presentation on Generic Component Framework at Akademy 2008 – Prashanth N Udupa <prashanth @ vcreatelogic . com>

Whats next? - GCF's Roadmap....Whats next? - GCF's Roadmap....

Support for KPart components● Support for ActiveX components

● Support DBUS based IPC

● Support for IPC via shared-memory

● Desktop-class component deployments

●  Auto-Update mechanisms

● More built-in components

Page 23: GCF Presentation

7/31/2019 GCF Presentation

http://slidepdf.com/reader/full/gcf-presentation 23/23

 

Thank YouThank You

Speaker: Prashanth N Udupa

Email: prashanth @ vcreatelogic . com