Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Specific Google Services Provider for ECF"

m (Current Progress)
 
(6 intermediate revisions by the same user not shown)
Line 51: Line 51:
 
==Architecture==
 
==Architecture==
  
There are 2 seperate projects for the complete google services provider:
+
Mainly there are 2 seperate projects for the complete google services provider:
 
*org.eclipse.ecf.provider.google - the actual provider
 
*org.eclipse.ecf.provider.google - the actual provider
 
*org.eclipse.ecf.provider.google.ui - UI implementation of the provider integrated with Eclipse platform
 
*org.eclipse.ecf.provider.google.ui - UI implementation of the provider integrated with Eclipse platform
 +
 +
However, due to interaction with native code (to provide voice chat, file transfer), there are 2 additional projects (fragment projects) for 32_bit Linux (org.eclise.ecf.provider.google.linux.x86) and windows (org.eclipse.ecf.provider.google.win32) separately. Those contain the native libraries required for operation in the given OS.
  
 
Following the lead of the Eclipse Platform, the project architecture makes a very clear distinction between API and internals, placing the latter in packages in the org.eclipse.ecf.provider.internal.google namespace.
 
Following the lead of the Eclipse Platform, the project architecture makes a very clear distinction between API and internals, placing the latter in packages in the org.eclipse.ecf.provider.internal.google namespace.
  
The following classes were extended from the respective XMPP provider classes.
+
Since Google Talk works on top of XMPP/Jabber protocol, the google provider was extended from the xmpp provider (the following classes were extended from the respective XMPP provider classes).
  
 
*GoogleContainerAccountManager
 
*GoogleContainerAccountManager
Line 82: Line 84:
  
 
This notification handling mechanism is utilized by the example UI implementation (xxx.google.ui) through GoogleNotificationUIDelegtor class which implements INotificationListener interface and is registered with the NotificationManager class at the time of view creation for the provider.
 
This notification handling mechanism is utilized by the example UI implementation (xxx.google.ui) through GoogleNotificationUIDelegtor class which implements INotificationListener interface and is registered with the NotificationManager class at the time of view creation for the provider.
 +
 +
==Telephony API Support==
 +
 +
Google Services provider has support for voice chat with other gtalk users. This was done by extending the provider to support telephony API of ECF. The main entry point to telephony tasks is GoogleCallSessionContainerAdapater class which extends ICallSessionCotnainerAdapter class of org.eclipse.ecf.telephony.call. The actual work in handshaking the voice capabilities (codecs etc.), creating maintaining and destroying voice channels are done in C++ code. This is ported to java by wrapping the C++ code in JNI. VoiceCallInterface class in org.eclipse.ecf.provider.google.voice acts as the bridge between the native library and the rest of the project. VoiceCallInterface is responsible for transferring the requests made by the user to the native library as well as informing the user of events happening in the native side (new incoming call requests, changes of the current call state such as hanging up by the other party).
  
 
==Current Progress==
 
==Current Progress==
Line 100: Line 106:
 
*Generic UI Notification mechanism completed.  
 
*Generic UI Notification mechanism completed.  
 
*JUnit test cases completed for main functionalities related to IQ handling, status Queue maintenance etc.
 
*JUnit test cases completed for main functionalities related to IQ handling, status Queue maintenance etc.
 +
*Voice Chat functionality completed
 +
**Call Initiation
 +
**Incoming call accept / reject
 +
**Hanging up active call
 +
**Mute / Unmute active call
 +
**Voice chat functionality completely ported to Linux (32bit) platform as well
 +
**UI to support all the implemented voice call functionalities.
 +
*File Transfer functionality completed
 +
**Sending Files
 +
**Receiving notifications of incoming file transfer requests
 +
**Accept / Reject incoming file transfer requests
 +
**File Transfer functionality completely ported to Linux (32bit) platform as well
 +
**UI to support all the implemented file transfer functionalities.
  
 
==Future Work==
 
==Future Work==

Latest revision as of 09:16, 22 August 2009

Project Motivation

Google Talk provides more features than standard XMPP (although primarily based on it). Hence, having to use the standard XMPP provider in ECF for communication with Google Talk users is a disadvantage since ECF will not be able to utilize the full potential of Google services which includes voice chat, video chat, off the record chatting, Integration with GMail etc.[1]

Therefore, it will be beneficial for the ECF and the Eclipse community to have a specific Google services provider under ECF, thus enabling the users of ECF to utilize all the services provided by Google Talk.

Project Goals

During the Google Summer Code 2009, the followings requirements will be met:

  • Extend the current ECF XMPP Provider to create a specific Google Services provider, with Chat as the first service.
  • Implement the following extensions provided by Google Talk:
    • Support for user settings handling
    • Off the record chatting
    • Integration with GMail (receiving email notifications)
    • voicemail
    • utilize extended contact attributes
    • VoIP
    • Video chat
  • Once Google Voice is available in time, extend the provider to support Google Voice[2]. The following features will be implemented during this program.
    • Call initiation
    • Screening of calls
    • Subscribe to get notifications
    • Receive transcripts of voicemails


  • Provide UI integration of the Google services provider to the eclipse platform. The UI will be designed with improved user accessibility for all supported features in a more intuitive and user friendly manner.
    • A unified UI which will allow access to all the aforesaid communication tasks will be made available.
    • Users will be able to invoke tasks by typed commands.For example typing "#file myFile.txt " will send myFile.txt in the current workspace to the contact the user is currently chatting with. The user will be given the freedom to have this option off.

Benefits to the Eclipse Community

ECF gets extended further as a communications platform. Integrated chat, and utilization of Google Services listed above, will be useful for both developers and users of Eclipse platform. There are a number of commercial use cases available.

In addition to that, with the suggested UI and user accessibility improvements such as accessing all features from a unified user interface, and faster methods of accessing the features (typed commands), ECF will get higher user acceptance.

Deliverables

  • project design and architecture
  • Google Services Provider implementation for ECF
  • UI implementation of the provider integrated with Eclipse platform
    • Future work will include an RAP implementation of the UI
  • Testing report
  • User and Developer documentations

Architecture

Mainly there are 2 seperate projects for the complete google services provider:

  • org.eclipse.ecf.provider.google - the actual provider
  • org.eclipse.ecf.provider.google.ui - UI implementation of the provider integrated with Eclipse platform

However, due to interaction with native code (to provide voice chat, file transfer), there are 2 additional projects (fragment projects) for 32_bit Linux (org.eclise.ecf.provider.google.linux.x86) and windows (org.eclipse.ecf.provider.google.win32) separately. Those contain the native libraries required for operation in the given OS.

Following the lead of the Eclipse Platform, the project architecture makes a very clear distinction between API and internals, placing the latter in packages in the org.eclipse.ecf.provider.internal.google namespace.

Since Google Talk works on top of XMPP/Jabber protocol, the google provider was extended from the xmpp provider (the following classes were extended from the respective XMPP provider classes).

  • GoogleContainerAccountManager
  • GoogleContainerInstantiator
  • GoogleContainerPresenceHelper
  • GooglePlugin
  • GoogleContainer

IQ stanza handling

Since most of the extensions provided by GTalk rely on IQ stanza based communication between the server and the client, A specific IQ stanza handling mechanism is implemented inside the google provider:

By default, Smack only knows how to process IQ packets with sub-packets that are in a few namespaces such as:jabber:iq:auth, jabber:iq:roster, jabber:iq:register etc. However, smack allows creation of custom IQProviders which will parse custom IQ stanzas accordingly. Therefore, a Generic IQ provider class (GenericIQProvider) was implemented for the google provider. This class is responsible for parsing IQ stanzas which are not recognized by the smack library. The parsed IQ stazas are then processed by the GoogleIQProcessor class which will recognize the IQ stanza (based on the namespaces and IDs) and will take the necessary actions (or will re-direct the IQ packet to the required class).

Furthermore a wrapper class named GoogleIQ is used to wrap the smack IQ class and provide convenience methods such as accessing the childXML namespace which are quite often used in this project.

Notification delegating mechanism

Since there are many notifications that need to shown (when users change the off the record state of chats, email notifications, voicemail notifications etc.) A generic notification handling mechanism is used in the google provider:

NotificationEvent: abstraction of a notification INotificationListener: An interface that need to be implemented by any class interested in receiving NotificationEvents GoogleContainerNotificationManager: Manages the list of registered NotificationListeners and sends notificationEvents to the listeners when a notificationEvent fires.

This notification handling mechanism is utilized by the example UI implementation (xxx.google.ui) through GoogleNotificationUIDelegtor class which implements INotificationListener interface and is registered with the NotificationManager class at the time of view creation for the provider.

Telephony API Support

Google Services provider has support for voice chat with other gtalk users. This was done by extending the provider to support telephony API of ECF. The main entry point to telephony tasks is GoogleCallSessionContainerAdapater class which extends ICallSessionCotnainerAdapter class of org.eclipse.ecf.telephony.call. The actual work in handshaking the voice capabilities (codecs etc.), creating maintaining and destroying voice channels are done in C++ code. This is ported to java by wrapping the C++ code in JNI. VoiceCallInterface class in org.eclipse.ecf.provider.google.voice acts as the bridge between the native library and the rest of the project. VoiceCallInterface is responsible for transferring the requests made by the user to the native library as well as informing the user of events happening in the native side (new incoming call requests, changes of the current call state such as hanging up by the other party).

Current Progress

  • Extended the XMPP provider to create a specific Google Provider.
  • created an example ui integration of the google provider to the eclipse platform.
  • Hosted the code at http://code.google.com/p/google-ecf/
  • A generic IQ stanza receiving and processing mechanism implemented.
  • Off the record feature completed
    • users can now switch on/off server side saving of chats
    • users get notified when other party changes off the record state
  • Shared status messages feature completed
    • users can retrieve the server stored status message list
    • users can set the status message (either by typing a new message or by selecting one from the shared status list)
    • users can switch between busy and default state
    • UI access to above functionalities are given through the popup menu on the roster
  • EMail notification feature completed
  • Generic UI Notification mechanism completed.
  • JUnit test cases completed for main functionalities related to IQ handling, status Queue maintenance etc.
  • Voice Chat functionality completed
    • Call Initiation
    • Incoming call accept / reject
    • Hanging up active call
    • Mute / Unmute active call
    • Voice chat functionality completely ported to Linux (32bit) platform as well
    • UI to support all the implemented voice call functionalities.
  • File Transfer functionality completed
    • Sending Files
    • Receiving notifications of incoming file transfer requests
    • Accept / Reject incoming file transfer requests
    • File Transfer functionality completely ported to Linux (32bit) platform as well
    • UI to support all the implemented file transfer functionalities.

Future Work

I will work on providing an RAP implementation of the completed Google services provider in the future. This will enable users to have access to the functionalities provided by the Google services provider through the web as well.

In addition to that, Google voice integration with the provider will be extended to support more advanced features provided by Google voice.

References

[1] Google Extensions


[2] Google Voice


[3] Project Repository

Back to the top