Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | note on branching model for dev | Aaron Seigo | 2015-02-09 |
| | |||
* | catch unqlite impl up to current Storage API | Aaron Seigo | 2015-02-09 |
| | |||
* | void const -> const void | Aaron Seigo | 2015-02-09 |
| | | | | | equivalent syntax, but follows the standard idiom we use throughout the code .. const char *, not char const * (e.g.) | ||
* | Async: don't leak Executors | Dan Vrátil | 2015-02-07 |
| | | | | | | We now hold executors in shared pointers. We cannot easilly delete them, as they are referenced from two objects (the Job they belong to, and the next job), and the lifetime of the jobs is unclear. | ||
* | AsyncTest: block until innerJob finishes to prevent crash | Dan Vrátil | 2015-02-07 |
| | | | | | | | innerJob.exec() starts an async job, so once exec() returns, the innerJob will go out of scope and will be deleted, which however does not prevent the QTimer from invoking it's lambda slot, which will crash when dereferencing a deleted Future. | ||
* | Async: mark our future as finished after returning from error handler | Dan Vrátil | 2015-02-07 |
| | | | | | | Error handlers don't have access to the future, so they can't mark it as finished, so we do it after the error handler is run. This ensures that FutureWatchers will finish. | ||
* | Async: remove unused FutureWatchers | Dan Vrátil | 2015-02-02 |
| | |||
* | Added JOBAPI todo's. | Christian Mollekopf | 2015-02-02 |
| | | | | Work for dvratil. | ||
* | clenup | Christian Mollekopf | 2015-01-30 |
| | |||
* | Shutdown command for synchronizers, used by the dummyresourcetest. | Christian Mollekopf | 2015-01-30 |
| | | | | | Otherwise the synchronizer keeps a Storage object alive, while the tests deletes the db. This causes subsequent writes to fail in the next test. | ||
* | Open the database readonly in readonly mode. | Christian Mollekopf | 2015-01-30 |
| | |||
* | DummyResourceBenchmark | Christian Mollekopf | 2015-01-27 |
| | |||
* | introduce a set of isInternalKey functions to hide this impl detail | Aaron Seigo | 2015-01-27 |
| | |||
* | can not delete this as it is an opaque data structure | Aaron Seigo | 2015-01-27 |
| | | | | instead, use the lmdb api | ||
* | fix build | Aaron Seigo | 2015-01-27 |
| | |||
* | Don't enlessly block in the eventloop. | Christian Mollekopf | 2015-01-27 |
| | | | | | The job currently finishes synchronously. If we just use the eventloop in waitForFinished that's automatically handled for us. | ||
* | Avoid shutting down the synchronizer all the time. | Christian Mollekopf | 2015-01-25 |
| | |||
* | debug output | Christian Mollekopf | 2015-01-25 |
| | |||
* | Stop using Akonadi2::Console. | Christian Mollekopf | 2015-01-25 |
| | | | | We need a decent loggin framework. | ||
* | Propagate errors for commands. | Christian Mollekopf | 2015-01-25 |
| | |||
* | Call callbacks after the resource crashed. | Christian Mollekopf | 2015-01-25 |
| | |||
* | debug output, fixed dummyresourcetest | Christian Mollekopf | 2015-01-25 |
| | |||
* | A way to ensure all messages have been processed. | Christian Mollekopf | 2015-01-25 |
| | | | | | As queries become reactive this should become less important. We can then just wait until all results become available. For tests it is in either case useful though. | ||
* | Uid index + query using that index. | Christian Mollekopf | 2015-01-24 |
| | | | | ...and a couple of other fixes. | ||
* | An index implementation. | Christian Mollekopf | 2015-01-21 |
| | |||
* | Create buffer with values from domain object | Christian Mollekopf | 2015-01-21 |
| | |||
* | Storage: support for duplicates. | Christian Mollekopf | 2015-01-20 |
| | |||
* | fixed build | Christian Mollekopf | 2015-01-20 |
| | |||
* | Async: comments, default error job implementation. | Christian Mollekopf | 2015-01-19 |
| | |||
* | Fixed sync, detect errors during sync, wait until sync items are processed ↵ | Christian Mollekopf | 2015-01-19 |
| | | | | until signalling completion. | ||
* | Async: Error continuation. | Christian Mollekopf | 2015-01-19 |
| | |||
* | debug output | Christian Mollekopf | 2015-01-19 |
| | |||
* | Fixed pipeline. | Christian Mollekopf | 2015-01-19 |
| | | | | Steps are now finally processed as they should be and a job tracks the processing progress. | ||
* | Fixed Async::Future. | Christian Mollekopf | 2015-01-19 |
| | | | | | The future is copied an the finished boolean has to be in the shared part, otherwise the original copy never receives the updated value. | ||
* | Use jobs in queries, sync works again. | Christian Mollekopf | 2015-01-18 |
| | |||
* | Use jobs to track progress of write commands. | Christian Mollekopf | 2015-01-18 |
| | |||
* | missing includes | Christian Mollekopf | 2015-01-16 |
| | |||
* | Asynchronously go through messagequeues | Christian Mollekopf | 2015-01-16 |
| | |||
* | Messagequeuetest | Christian Mollekopf | 2015-01-16 |
| | |||
* | Async test for nested jobs. | Christian Mollekopf | 2015-01-16 |
| | |||
* | Fixed storage removal. | Christian Mollekopf | 2015-01-16 |
| | | | | We have to remove any open environments as well. | ||
* | Async message queue processing. | Christian Mollekopf | 2015-01-15 |
| | | | | The Job/Future in Pipeline::newEntity for some reason crashes with async pipeline processing. | ||
* | storagetest | Christian Mollekopf | 2015-01-15 |
| | |||
* | Fixed messageqeue and storage. Empty scan is not an error. | Christian Mollekopf | 2015-01-15 |
| | |||
* | A null job. | Christian Mollekopf | 2015-01-15 |
| | |||
* | Writing from facade. | Christian Mollekopf | 2015-01-15 |
| | |||
* | Fixed messagequeue | Christian Mollekopf | 2015-01-15 |
| | |||
* | Finally working multithreaded reads from lmdb? | Christian Mollekopf | 2015-01-11 |
| | |||
* | Error handling for remove. | Christian Mollekopf | 2015-01-11 |
| | |||
* | A messagequeue. | Christian Mollekopf | 2015-01-11 |
| |