| 620 | } |
| 621 | |
| 622 | void Datastore::reset() |
| 623 | { |
| 624 | Events::OperationStart::post(""); |
| 625 | Datastore::runOnWorkerThread( |
| 626 | [] |
| 627 | { |
| 628 | busy = true; |
| 629 | failed = false; |
| 630 | DEFER(wtOperationStop()); |
| 631 | |
| 632 | try |
| 633 | { |
| 634 | wtRebuildConfiguration(false); |
| 635 | wtClearDiskData(); |
| 636 | wtWaitForUiThreadToCatchUp(); |
| 637 | } |
| 638 | catch (...) |
| 639 | { |
| 640 | failed = true; |
| 641 | throw; |
| 642 | } |
| 643 | }); |
| 644 | } |
| 645 | |
| 646 | void Datastore::stop() |
| 647 | { |
no test coverage detected