prune_crash_reports_thread.cc 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // Copyright 2016 The Crashpad Authors. All rights reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #include "handler/prune_crash_reports_thread.h"
  15. #include <utility>
  16. #include "client/prune_crash_reports.h"
  17. namespace crashpad {
  18. PruneCrashReportThread::PruneCrashReportThread(
  19. CrashReportDatabase* database,
  20. std::unique_ptr<PruneCondition> condition)
  21. : thread_(60 * 60 * 24, this),
  22. condition_(std::move(condition)),
  23. database_(database) {}
  24. PruneCrashReportThread::~PruneCrashReportThread() {}
  25. void PruneCrashReportThread::Start() {
  26. thread_.Start(60 * 10);
  27. }
  28. void PruneCrashReportThread::Stop() {
  29. thread_.Stop();
  30. }
  31. void PruneCrashReportThread::DoWork(const WorkerThread* thread) {
  32. PruneCrashReportDatabase(database_, condition_.get());
  33. }
  34. } // namespace crashpad