Coverage Report

Created: 2018-09-25 14:53

/src/mozilla-central/security/manager/ssl/CryptoTask.h
Line
Count
Source (jump to first uncovered line)
1
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2
/* vim: set ts=2 et sw=2 tw=80: */
3
/* This Source Code Form is subject to the terms of the Mozilla Public
4
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
5
 * You can obtain one at http://mozilla.org/MPL/2.0/. */
6
7
#ifndef mozilla__CryptoTask_h
8
#define mozilla__CryptoTask_h
9
10
#include "mozilla/Attributes.h"
11
#include "nsThreadUtils.h"
12
13
namespace mozilla {
14
15
/**
16
 * Frequently we need to run a task on a background thread without blocking
17
 * the main thread, and then call a callback on the main thread with the
18
 * result. This class provides the framework for that. Subclasses must:
19
 *
20
 *   (1) Override CalculateResult for the off-the-main-thread computation.
21
 *   (2) Override CallCallback() for the on-the-main-thread call of the
22
 *       callback.
23
 */
24
class CryptoTask : public Runnable
25
{
26
public:
27
  template <size_t LEN>
28
  nsresult Dispatch(const char (&taskThreadName)[LEN])
29
0
  {
30
0
    static_assert(LEN <= 15,
31
0
                  "Thread name must be no more than 15 characters");
32
0
    return Dispatch(nsDependentCString(taskThreadName, LEN - 1));
33
0
  }
Unexecuted instantiation: nsresult mozilla::CryptoTask::Dispatch<10ul>(char const (&) [10ul])
Unexecuted instantiation: nsresult mozilla::CryptoTask::Dispatch<13ul>(char const (&) [13ul])
Unexecuted instantiation: nsresult mozilla::CryptoTask::Dispatch<12ul>(char const (&) [12ul])
Unexecuted instantiation: nsresult mozilla::CryptoTask::Dispatch<11ul>(char const (&) [11ul])
34
35
  nsresult Dispatch(const nsACString& taskThreadName);
36
37
protected:
38
  CryptoTask()
39
    : Runnable("CryptoTask")
40
    , mRv(NS_ERROR_NOT_INITIALIZED)
41
0
  {
42
0
  }
43
44
0
  virtual ~CryptoTask() {}
45
46
  /**
47
   * Called on a background thread (never the main thread). Its result will be
48
   * passed to CallCallback on the main thread.
49
   */
50
  virtual nsresult CalculateResult() = 0;
51
52
  /**
53
   * Called on the main thread with the result from CalculateResult().
54
   */
55
  virtual void CallCallback(nsresult rv) = 0;
56
57
private:
58
  NS_IMETHOD Run() final;
59
60
  nsresult mRv;
61
  nsCOMPtr<nsIThread> mThread;
62
};
63
64
} // namespace mozilla
65
66
#endif // mozilla__CryptoTask_h