This file is indexed.

/usr/include/thunderbird/MediaDecoderStateMachineScheduler.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et cindent: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef MediaDecoderStateMachineScheduler_h__
#define MediaDecoderStateMachineScheduler_h__

#include "nsCOMPtr.h"
#include "mozilla/TimeStamp.h"
#include "mozilla/DebugOnly.h"

class nsITimer;
class nsIEventTarget;

namespace mozilla {

class ReentrantMonitor;

class MediaDecoderStateMachineScheduler {
  enum State {
    SCHEDULER_STATE_NONE,
    SCHEDULER_STATE_FROZEN,
    SCHEDULER_STATE_FROZEN_WITH_PENDING_TASK,
    SCHEDULER_STATE_SHUTDOWN
  };
public:
  MediaDecoderStateMachineScheduler(ReentrantMonitor& aMonitor,
                                    nsresult (*aTimeoutCallback)(void*),
                                    void* aClosure, bool aRealTime);
  ~MediaDecoderStateMachineScheduler();
  nsresult Init();
  nsresult Schedule(int64_t aUsecs = 0);
  void ScheduleAndShutdown();
  nsresult TimeoutExpired(int aTimerId);
  void FreezeScheduling();
  void ThawScheduling();

  bool OnStateMachineThread() const;
  bool IsScheduled() const;

  bool IsRealTime() const {
    return mRealTime;
  }

  nsIEventTarget* GetStateMachineThread() const {
    return mEventTarget;
  }

  bool IsFrozen() const {
    return mState == SCHEDULER_STATE_FROZEN ||
           mState == SCHEDULER_STATE_FROZEN_WITH_PENDING_TASK;
  }

private:
  void ResetTimer();

  // Callback function provided by MediaDecoderStateMachine to run
  // state machine cycles.
  nsresult (*const mTimeoutCallback)(void*);
  // Since StateMachineScheduler will never outlive the state machine,
  // it is safe to keep a raw pointer only to avoid reference cycles.
  void* const mClosure;
  // True is we are decoding a realtime stream, like a camera stream
  const bool mRealTime;
  // Monitor of the decoder
  ReentrantMonitor& mMonitor;
  // State machine thread
  const nsCOMPtr<nsIEventTarget> mEventTarget;
  // Timer to schedule callbacks to run the state machine cycles.
  nsCOMPtr<nsITimer> mTimer;
  // Timestamp at which the next state machine cycle will run.
  TimeStamp mTimeout;
  // The id of timer tasks, timer callback will only run if id matches.
  int mTimerId;
  // No more state machine cycles in shutdown state.
  State mState;

  // Used to check if state machine cycles are running in sequence.
  DebugOnly<bool> mInRunningStateMachine;
};

} // namespace mozilla

#endif // MediaDecoderStateMachineScheduler_h__