summaryrefslogtreecommitdiffstats
path: root/common
Commit message (Collapse)AuthorAge
* Removed unused command.Christian Mollekopf2016-11-25
|
* Added the flush command.Christian Mollekopf2016-11-25
| | | | | | | Instead of trying to actually flush queues, we send a special command through the same queues as the other commands and can thus guarantee that the respective commands have been processed without blocking anything.
* Deal with not using the implicit internal transaction.Christian Mollekopf2016-11-24
|
* Abort operations if we failed to connect to the resource.Christian Mollekopf2016-11-24
|
* Never remove the static facades.Christian Mollekopf2016-11-22
| | | | This fixes the clientapitest.
* Ensure we always process the full queue and that flushing works.Christian Mollekopf2016-11-22
|
* Avoid unnecessary transactions.Christian Mollekopf2016-11-22
|
* Process change replays as part of the synchronization queueChristian Mollekopf2016-11-22
|
* Folded the SourceWriteback into the Synchronizer.Christian Mollekopf2016-11-21
| | | | | | | | | | | | By concentrating all communication to the source in one place we get rid of several oddities. * Quite a bit of duplication since both need access to the synchronizationStore and the source. * We currently have an akward locking in place because both classes access the ync store. This is not easier to resolve cleanly. * The live of resource implementers becomes easier. * An implementation could elect to not use changereplay and always do a full sync... (maybe?)
* sinksh list identity supportChristian Mollekopf2016-11-21
|
* Query::setTypeChristian Mollekopf2016-11-14
|
* Hide Query::parentPropertyChristian Mollekopf2016-11-14
|
* Hide the Query::limitChristian Mollekopf2016-11-14
|
* Query::setLimitChristian Mollekopf2016-11-14
|
* Fixed builChristian Mollekopf2016-11-14
|
* CleanupChristian Mollekopf2016-11-14
|
* Prepared new query based synchronization APIChristian Mollekopf2016-11-11
|
* Notification debug stream operator.Christian Mollekopf2016-11-10
|
* One error is enough if the source is not existing.Christian Mollekopf2016-11-07
|
* Implement debug stream operators for query.Christian Mollekopf2016-11-07
|
* Register query serializerChristian Mollekopf2016-11-07
|
* Fixed flag testingChristian Mollekopf2016-11-07
|
* Query serialization.Christian Mollekopf2016-11-06
|
* User querybaseChristian Mollekopf2016-11-04
|
* Don't expose the live query flag directly.Christian Mollekopf2016-11-04
|
* Separated the base filter from the rest of the query.Christian Mollekopf2016-11-04
|
* Error propagation works in kasync now.Christian Mollekopf2016-11-04
|
* Set to/cc/bccChristian Mollekopf2016-11-01
|
* Got the sender to workChristian Mollekopf2016-10-31
|
* Mail::Contact mappingChristian Mollekopf2016-10-31
|
* Requesting a property that is not available is not an error.Christian Mollekopf2016-10-28
|
* Reset aggregation when we get to a new value.Christian Mollekopf2016-10-27
| | | | Otherwise i.e. the counter will only ever count up
* Header cleanupChristian Mollekopf2016-10-27
|
* Avoid fetching repeatedly to check for children.Christian Mollekopf2016-10-27
| | | | | | canFetchMore returns true once the fetch is complete to allow the incremental fetch behaviour. When we check for children we really only want to fetch once though, otherwise we risk fetching over and over.
* CleanupChristian Mollekopf2016-10-21
|
* Specify the resource name in one placeChristian Mollekopf2016-10-21
|
* CleanupChristian Mollekopf2016-10-21
|
* Get access to properties in indexes.Christian Mollekopf2016-10-21
|
* TypeImplementation cleanupChristian Mollekopf2016-10-21
|
* A new indexer subsystem that can be used for indexes that are moreChristian Mollekopf2016-10-21
| | | | complex than a simple key-value pair.
* Make sure the storage exists from the very beginning of the first start.Christian Mollekopf2016-10-21
| | | | Changereplay and synchronizer rely on it.
* Removed the whole revision cleanup into the entitystoreChristian Mollekopf2016-10-21
|
* Fixed specialpurposeprocessorChristian Mollekopf2016-10-21
|
* Ported the pipeline to the entitystoreChristian Mollekopf2016-10-21
|
* Removed EntityReaderChristian Mollekopf2016-10-21
|
* Use the ApplicationDomainType in the queries as well.Christian Mollekopf2016-10-21
| | | | | We have to access properties, so we need the mapper anyways, and the ApplicationDomainType type shouldn't be a large overhead anyways.
* We no longer access the typeindex directlyChristian Mollekopf2016-10-21
|
* Simplified replaySetChristian Mollekopf2016-10-21
|
* Removed the now obsolete EntityStoreChristian Mollekopf2016-10-21
|
* Refactor how the storage is used.Christian Mollekopf2016-10-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is the initial refactoring to improve how we deal with the storage. It does a couple of things: * Rename Sink::Storage to Sink::Storage::DataStore to free up the Sink::Storage namespace * Introduce a Sink::ResourceContext to have a single object that can be passed around containing everything that is necessary to operate on a resource. This is a lot better than the multiple separate parameters that we used to pass around all over the place, while still allowing for dependency injection for tests. * Tie storage access together using the new EntityStore that directly works with ApplicationDomainTypes. This gives us a central place where main storage, indexes and buffer adaptors are tied together, which will also give us a place to implement external indexes, such as a fulltextindex using xapian. * Use ApplicationDomainTypes as the default way to pass around entities. Instead of using various ways to pass around entities (buffers, buffer adaptors, ApplicationDomainTypes), only use a single way. The old approach was confusing, and was only done as: * optimization; really shouldn't be necessary and otherwise I'm sure we can find better ways to optimize ApplicationDomainType itself. * a way to account for entities that have multiple buffers, a concept that I no longer deem relevant. While this commit does the bulk of the work to get there, the following commits will refactor more stuff to get things back to normal.