Architectural review and refinement: Difference between revisions

From Thunderforce
Jump to navigation Jump to search
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 26: Line 26:


===Salesforce.com data layer (model)===
===Salesforce.com data layer (model)===
[[Image:Module View - Salesforce.com Model.jpg]]
[[Image:Architecture Module View - Salesforce.com Model.png]]


[https://www.moonlightdesign.org/thunderforce/svn/trunk/architecture/Architecture/Module%20View%20-%20Salesforce.com%20Model.uxf Source UMLet diagram]. This diagram will be revised soon to include LocalBidirectionalAPI and APIMetricsCollector.
[https://www.moonlightdesign.org/thunderforce/svn/trunk/architecture/Architecture/Module%20View%20-%20Salesforce.com%20Model.uxf Source UMLet diagram]


The diagram above depicts how the Salesforce.com data layer components relate to each other.
The diagram above depicts how the Salesforce.com data layer components relate to each other.
Line 34: Line 34:
In general, the methods in the API interface are those that are in the Salesforce.com AJAX toolkit. The AJAX toolkit's implementation will, indeed, exist mostly unchanged as the thunderforce.sforce.Salesforce object.
In general, the methods in the API interface are those that are in the Salesforce.com AJAX toolkit. The AJAX toolkit's implementation will, indeed, exist mostly unchanged as the thunderforce.sforce.Salesforce object.


To turn Salesforce.com into a bidirectional API with event notification, the BidirectionalAPIPoller will wrap the Salesforce object to implement the BidirectionalAPI interface. This permits future extensibility with both non-polling solutions such as workflow outbound messages and aggregators such as local Salesforce.com cache servers.
To turn Salesforce.com into a bidirectional API with event notification, the nsISalesforceBidirectionalPartnerPoller will wrap the nsSalesforcePartner object to implement the nsISalesforceBidirectionalPartner interface. This permits future extensibility with both non-polling solutions such as workflow outbound messages and aggregators such as local Salesforce.com cache servers.


To promote performance, the Cache object will store the returned values of method calls into memory and, with the offline functionality, a SQLite database. When notifications of changes from the backing store arrive, the cached return values that might be affected by those changes are invalidated. To balance performance with memory, the cache will manage its use of memory based on call and time statistics.
To promote performance, the nsSalesforceBidirectionalPartnerCache object will store the returned values of method calls into memory and, with the offline functionality, a SQLite database. When notifications of changes from the backing store arrive, the cached return values that might be affected by those changes are invalidated. To balance performance with memory, the cache will manage its use of memory based on call and time statistics.
*As an example of cache invalidation, a change to an account object invalidates that object, that object's ancestor objects, queries that involve that entity, and searches that involve that entity
*As an example of cache invalidation, a change to an account object invalidates that object, that object's ancestor objects, queries that involve that entity, and searches that involve that entity
*Queries and searches are special functions that might be handled intelligently in specific update cases to further improve cache performance
*Queries and searches are special functions that might be handled intelligently in specific update cases to further improve cache performance
Line 42: Line 42:
In the cache, a write-back flag is included to effectively switch between online mode and offline mode. When write-back caching is enabled, the only the cache is updated. The backing store is not notified of the cached changes until the write-back flag is turned off. When the write-back flag is off, the caching becomes write-through, meaning that the backing store is notified synchronously. Note that event generation is performed by the cache when write-back is enabled. When write-back is disabled, the backing store generates the events that the cache propagates to its listeners. The cache will not, however, propagate events that do not alter the cached state, regardless of whether or not write-back is enabled.
In the cache, a write-back flag is included to effectively switch between online mode and offline mode. When write-back caching is enabled, the only the cache is updated. The backing store is not notified of the cached changes until the write-back flag is turned off. When the write-back flag is off, the caching becomes write-through, meaning that the backing store is notified synchronously. Note that event generation is performed by the cache when write-back is enabled. When write-back is disabled, the backing store generates the events that the cache propagates to its listeners. The cache will not, however, propagate events that do not alter the cached state, regardless of whether or not write-back is enabled.


This architectural pattern permits the upper layers to primarily interact with the BidirectionalAPI interface. As a result, the Cache class can be implemented in the future to get to the Dreamforce version as soon as possible. The LocalBidirectionalAPI will be implemented for Dreamforce as a naive bidirectional API that only generates events for local changes.
This architectural pattern permits the upper layers to primarily interact with the nsISalesforceBidirectionalPartner interface. As a result, the nsSalesforceBidirectionalPartnerCache class can be implemented in the future to get to the M1 version as soon as possible. The nsSalesforceLocalBidirectionalPartner will be implemented for M1 as a naive bidirectional API that only generates events for local changes.


The BidirectionalAPIPoller presents a unidirectional API as a BidirectionalAPI through periodic polling for changes. To reduce the API call impact, only those entities that the user subscribed to within Thunderbird will be polled (question: will [http://ideas.salesforce.com/article/show/22256/Crossobject_Formulas_RollUp_Summary_fields_coming_in_Summer_07 summary fields] also cause the last-modified timestamp to change and trigger replication (WFOM and getUpdated)?). The set of subscribed entities is also what the Thunderforce searches are limited to, so we don't have to care about those entities that we are not subscribed to.
The nsISalesforceBidirectionalPartnerPoller presents a unidirectional API as a nsISalesforceBidirectionalPartner through periodic polling for changes. To reduce the API call impact, only those entities that the user subscribed to within Thunderbird will be polled (question: will [http://ideas.salesforce.com/article/show/22256/Crossobject_Formulas_RollUp_Summary_fields_coming_in_Summer_07 summary fields] also cause the last-modified timestamp to change and trigger replication (WFOM and getUpdated)?). The set of subscribed entities is also what the Thunderforce searches are limited to, so we don't have to care about those entities that we are not subscribed to.
*Each entity will have its own polling frequency that can be set in setEntityRefreshIntervals(). For now, these will likely be set to default values internally. Eventually, this can be dynamically adjusted based on how frequently that entity is changing. An exponential back-off can be used when that entity has not changed since the last check.
*Each entity will have its own polling frequency that can be set in entityRefreshIntervals. For now, these will likely be set to default values internally. Eventually, this can be dynamically adjusted based on how frequently that entity is changing. An exponential back-off can be used when that entity has not changed since the last check.
*For subscribed entities that have the replicateable attribute, the replication methods getUpdated() and getDeleted() will be used to reduce the number of API calls to query different entities. If the user does not have permissions to use those methods, the poller will fall back to using entity queries
*For subscribed entities that have the replicateable attribute, the replication methods getUpdated() and getDeleted() will be used to reduce the number of API calls to query different entities. If the user does not have permissions to use those methods, the poller will fall back to using entity queries
*If a large amount of data changed, the poller will notify listeners that possibly the entire state of the Salesforce.com data changed and that they should re-query anything that they are interested in. The Cache object will invalidate its entire cache upon receiving that event
*If a large amount of data changed, the poller will notify listeners that possibly the entire state of the Salesforce.com data changed and that they should re-query anything that they are interested in. The nsSalesforceBidirectionalPartnerCache object will invalidate its entire cache upon receiving that event


The LocalBidirectionalAPI class simply generates events based on local changes, such as calls to update(), deleteIds(), etc. This will be implemented in the Dreamforce demo and can be used in the full version as an option to enhance local performance, though the Cache class will be needed to suppress duplicate events in the full version.  
The nsSalesforceLocalBidirectionalPartner class simply generates events based on local changes, such as calls to update(), deleteIds(), etc. This will be implemented in the M1 version and can be used in the full version as an option to enhance local performance, though the nsSalesforceBidirectionalPartnerCache class will be needed to suppress duplicate events in the full version.  


The APIMetricsCollector class collects API usage statistics and includes methods for getting the average number of API calls per hour, the total number of API calls performed in the previous 24 hours, the predicted amount of time left before API usage is exceeded, and other useful numbers. In the full version, a special window can show this information.
The nsSalesforcePartnerMetricsCollector class collects API usage statistics and includes methods for getting the average number of API calls per hour, the total number of API calls performed in the previous 24 hours, the predicted amount of time left before API usage is exceeded, and other useful numbers. In the full version, a special window can show this information.


In the full implementation, the classes will likely be invoked with the following chain of delegates:
In the full implementation, the classes will likely be invoked with the following chain of delegates:
*Cache -> LocalBidirectionalAPI -> BidirectionalAPIPoller -> APIMetricsCollector -> Salesforce
*nsSalesforceBidirectionalPartnerCache -> nsSalesforceLocalBidirectionalPartner -> nsISalesforceBidirectionalPartnerPoller -> nsSalesforcePartnerMetricsCollector -> nsSalesforcePartner


In the Dreamforce implementation, the classes will likely be invoked with the following chain of delegates:
In the M1 implementation, the classes will likely be invoked with the following chain of delegates:
*LocalBidirectionalAPI -> Salesforce
*nsSalesforceLocalBidirectionalPartner -> nsSalesforcePartner


===Thunderbird interface implementation layer (model)===
===Thunderbird interface implementation layer (model)===
This section lists the Thunderforce classes and the interfaces that they implement.
The following tree lists each high-level class that will be implemented and the interfaces that they implement.
*'''[[Requirements#R1: Account Type|Account Type]]'''
*'''[[Requirements#R1: Account Type|Account Type]]'''<br>[[Image:Thunderbird Inferface Module View.png]]<br>[https://www.moonlightdesign.org/thunderforce/svn/trunk/architecture/Architecture/Thunderbird%20Inferface%20Module%20View.uxf Source UMLet diagram]
**nsThunderforceServer
**nsThunderforceServer
***@mozilla.org/messenger/server;1?type=imap
***@mozilla.org/messenger/server;1?type=imap
Line 89: Line 89:
**nsThunderforceMessageHeader
**nsThunderforceMessageHeader
***[http://www.xulplanet.com/references/xpcomref/ifaces/nsIMsgDBHdr.html nsIMsgDBHdr]
***[http://www.xulplanet.com/references/xpcomref/ifaces/nsIMsgDBHdr.html nsIMsgDBHdr]
**nsThunderforceAttachmentFolder
***nsThunderforceFolder
**nsThunderforceNoteFolder
***nsThunderforceFolder
**nsThunderforceEmailMessageFolder
***nsThunderforceFolder
**nsThunderforceDocumentFolder
***nsThunderforceFolder
*'''[[Requirements#R2: Address Book|Address Book]]'''
*'''[[Requirements#R2: Address Book|Address Book]]'''
**nsThunderforceAddressBook
**nsThunderforceAddressBook
Line 104: Line 96:
***[http://www.xulplanet.com/references/xpcomref/ifaces/nsIClassInfo.html nsIClassInfo]
***[http://www.xulplanet.com/references/xpcomref/ifaces/nsIClassInfo.html nsIClassInfo]
***[http://www.xulplanet.com/references/xpcomref/ifaces/nsIRDFResource.html nsIRDFResource]
***[http://www.xulplanet.com/references/xpcomref/ifaces/nsIRDFResource.html nsIRDFResource]
**nsThunderforceAddressBookFactory
***[http://www.xulplanet.com/references/xpcomref/ifaces/nsIAbDirFactory.html nsIAbDirFactory]
**nsThunderforceAddressCard
**nsThunderforceAddressCard
***[http://www.xulplanet.com/references/xpcomref/ifaces/nsIAbCard.html nsIAbCard]
***[http://www.xulplanet.com/references/xpcomref/ifaces/nsIAbCard.html nsIAbCard]
Line 125: Line 119:


====Folders====
====Folders====
The following table lists which entity types as columns can be used to store an email message within an entity instance. Because the combination of Attachment and Document can be used on all entities, the Dreamforce release will turn all emails into either Attachment or Document objects when copying or moving a message to Salesforce.com.
The following table lists which entity types as columns can be used to store an email message within an entity instance. Because the combination of Attachment and Document can be used on all entities, the M1 release will turn all emails into either Attachment or Document objects when copying or moving a message to Salesforce.com.


{|border="1"
{|border="1"
Line 131: Line 125:
|'''[http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_attachment.htm Attachment]'''
|'''[http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_attachment.htm Attachment]'''
|'''[http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_note.htm Note]'''
|'''[http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_note.htm Note]'''
|'''[http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_task.htm Task]'''
|'''[http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_emailmessage.htm EmailMessage]'''
|'''[http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_emailmessage.htm EmailMessage]'''
|'''[http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_document.htm Document]'''
|'''[http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_document.htm Document]'''
|-
|-
|Account
|Account
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
Line 141: Line 137:
|-
|-
|Asset
|Asset
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
Line 149: Line 146:
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#007700">yes</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
Line 155: Line 153:
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|-
|-
|Contact
|Contact
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
Line 165: Line 165:
|-
|-
|Contract
|Contract
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
Line 171: Line 172:
|-
|-
|Custom Objects
|Custom Objects
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
Line 178: Line 180:
|EmailTemplate
|EmailTemplate
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
Line 184: Line 187:
|Event
|Event
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
Line 189: Line 193:
|-
|-
|Folder
|Folder
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
Line 195: Line 200:
|-
|-
|Lead
|Lead
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
Line 201: Line 207:
|-
|-
|Opportunity
|Opportunity
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
Line 207: Line 214:
|-
|-
|Product2
|Product2
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
Line 215: Line 223:
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#007700">yes</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
Line 220: Line 229:
|Task
|Task
|<font color="#007700">yes</font>
|<font color="#007700">yes</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
Line 225: Line 235:
|-
|-
|User
|User
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>
|<font color="#AA0000">no</font>

Latest revision as of 18:02, 16 September 2007

This page includes the details of the post-experiment refined architecture.

Deployment View

Deployment View.png

Source UMLet diagram

Thunderforce lives inside Mozilla Thunderbird as an extension that communicates with the remote Salesforce.com servers using the simple object access protocol (SOAP) and caches information locally using SQLite. A SOAP implementation and SQLite are both built into the Mozilla platform.

Note that this approach will limit the number of Thunderforce clients that can run simultaneously due to API call limits. Thunderforce will include features that limit the number of API calls made in addition to basic API call statistics, such as expected versus actual API calls per hour and the total number of API calls over the past 24 hours. Those statistics can be divided into your organization's daily API call limits to determine how many Thunderforce installations you can have active during the day.

A future extension to the deployment view can involve an optional network server that receives workflow outbound messages from Salesforce.com and broadcasts those changes to local clients to reduce the amount of polling that Thunderforce has to do. Such a server can also substantially increase Thunderforce's scalability as it can be deployed to more computers without drastically increasing the number of API calls performed in a day. Perhaps a generic, client-agnostic solution similar to this might get built in the future (note that this is not a promise of future functionality).

Runtime View

Runtime View.jpg

Source UMLet diagram

Thunderforce is largely structured using the model-view-controller pattern to present Salesforce.com data to the end-user using bidirectional interconnects. With Salesforce.com as the master record, changes from any part of the system are pushed down to the lowest layer, and notifications regarding that change propagate from the lowest layer to the top, which is the view.

Salesforce.com's AJAX Toolkit and Mozilla Thunderbird's interfaces differ in various ways. To resolve this impedance mismatch, the Thunderbird interface implementation layer performs the necessary translations, implementing Salesforce.com as regular Thunderbird objects in the process.

Above the model layer, Thunderforce implements a minimal set of XML user interface language (XUL) overlays to extend the view and JavaScript-based user interface behavior override code to extend the controller. With this strategy, most of Thunderforce's functionality lives within the model and leverages Thunderbird's built-in functionality as much as possible.

Module View

Salesforce.com data layer (model)

Architecture Module View - Salesforce.com Model.png

Source UMLet diagram

The diagram above depicts how the Salesforce.com data layer components relate to each other.

In general, the methods in the API interface are those that are in the Salesforce.com AJAX toolkit. The AJAX toolkit's implementation will, indeed, exist mostly unchanged as the thunderforce.sforce.Salesforce object.

To turn Salesforce.com into a bidirectional API with event notification, the nsISalesforceBidirectionalPartnerPoller will wrap the nsSalesforcePartner object to implement the nsISalesforceBidirectionalPartner interface. This permits future extensibility with both non-polling solutions such as workflow outbound messages and aggregators such as local Salesforce.com cache servers.

To promote performance, the nsSalesforceBidirectionalPartnerCache object will store the returned values of method calls into memory and, with the offline functionality, a SQLite database. When notifications of changes from the backing store arrive, the cached return values that might be affected by those changes are invalidated. To balance performance with memory, the cache will manage its use of memory based on call and time statistics.

  • As an example of cache invalidation, a change to an account object invalidates that object, that object's ancestor objects, queries that involve that entity, and searches that involve that entity
  • Queries and searches are special functions that might be handled intelligently in specific update cases to further improve cache performance

In the cache, a write-back flag is included to effectively switch between online mode and offline mode. When write-back caching is enabled, the only the cache is updated. The backing store is not notified of the cached changes until the write-back flag is turned off. When the write-back flag is off, the caching becomes write-through, meaning that the backing store is notified synchronously. Note that event generation is performed by the cache when write-back is enabled. When write-back is disabled, the backing store generates the events that the cache propagates to its listeners. The cache will not, however, propagate events that do not alter the cached state, regardless of whether or not write-back is enabled.

This architectural pattern permits the upper layers to primarily interact with the nsISalesforceBidirectionalPartner interface. As a result, the nsSalesforceBidirectionalPartnerCache class can be implemented in the future to get to the M1 version as soon as possible. The nsSalesforceLocalBidirectionalPartner will be implemented for M1 as a naive bidirectional API that only generates events for local changes.

The nsISalesforceBidirectionalPartnerPoller presents a unidirectional API as a nsISalesforceBidirectionalPartner through periodic polling for changes. To reduce the API call impact, only those entities that the user subscribed to within Thunderbird will be polled (question: will summary fields also cause the last-modified timestamp to change and trigger replication (WFOM and getUpdated)?). The set of subscribed entities is also what the Thunderforce searches are limited to, so we don't have to care about those entities that we are not subscribed to.

  • Each entity will have its own polling frequency that can be set in entityRefreshIntervals. For now, these will likely be set to default values internally. Eventually, this can be dynamically adjusted based on how frequently that entity is changing. An exponential back-off can be used when that entity has not changed since the last check.
  • For subscribed entities that have the replicateable attribute, the replication methods getUpdated() and getDeleted() will be used to reduce the number of API calls to query different entities. If the user does not have permissions to use those methods, the poller will fall back to using entity queries
  • If a large amount of data changed, the poller will notify listeners that possibly the entire state of the Salesforce.com data changed and that they should re-query anything that they are interested in. The nsSalesforceBidirectionalPartnerCache object will invalidate its entire cache upon receiving that event

The nsSalesforceLocalBidirectionalPartner class simply generates events based on local changes, such as calls to update(), deleteIds(), etc. This will be implemented in the M1 version and can be used in the full version as an option to enhance local performance, though the nsSalesforceBidirectionalPartnerCache class will be needed to suppress duplicate events in the full version.

The nsSalesforcePartnerMetricsCollector class collects API usage statistics and includes methods for getting the average number of API calls per hour, the total number of API calls performed in the previous 24 hours, the predicted amount of time left before API usage is exceeded, and other useful numbers. In the full version, a special window can show this information.

In the full implementation, the classes will likely be invoked with the following chain of delegates:

  • nsSalesforceBidirectionalPartnerCache -> nsSalesforceLocalBidirectionalPartner -> nsISalesforceBidirectionalPartnerPoller -> nsSalesforcePartnerMetricsCollector -> nsSalesforcePartner

In the M1 implementation, the classes will likely be invoked with the following chain of delegates:

  • nsSalesforceLocalBidirectionalPartner -> nsSalesforcePartner

Thunderbird interface implementation layer (model)

The following tree lists each high-level class that will be implemented and the interfaces that they implement.

Folders

The following table lists which entity types as columns can be used to store an email message within an entity instance. Because the combination of Attachment and Document can be used on all entities, the M1 release will turn all emails into either Attachment or Document objects when copying or moving a message to Salesforce.com.

Parent Entity Attachment Note Task EmailMessage Document
Account yes yes yes no no
Asset yes yes yes no no
Campaign yes no yes no no
Case yes no yes yes no
Contact yes yes yes no no
Contract yes yes yes no no
Custom Objects yes yes yes no no
EmailTemplate yes no no no no
Event yes no no no no
Folder no no no no yes
Lead yes yes yes no no
Opportunity yes yes yes no no
Product2 yes yes yes no no
Solution yes no yes no no
Task yes no no no no
User no no no no yes