Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2971)

Unified Diff: base/profiler/stack_sampling_profiler.h

Issue 2554123002: Support parallel captures from the StackSamplingProfiler. (Closed)
Patch Set: addressed review comments by wittman Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/profiler/stack_sampling_profiler.cc » ('j') | base/profiler/stack_sampling_profiler.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/profiler/stack_sampling_profiler.h
diff --git a/base/profiler/stack_sampling_profiler.h b/base/profiler/stack_sampling_profiler.h
index 622f6e5764a5b4e59fbf0a6eed6c7d328d737fc3..6c02766d7fc88c72915e7f88780395d064a69189 100644
--- a/base/profiler/stack_sampling_profiler.h
+++ b/base/profiler/stack_sampling_profiler.h
@@ -25,6 +25,7 @@ namespace base {
class NativeStackSampler;
class NativeStackSamplerTestDelegate;
+class WaitableEvent;
// StackSamplingProfiler periodically stops a thread to sample its stack, for
// the purpose of collecting information about which code paths are
@@ -182,43 +183,69 @@ class BASE_EXPORT StackSamplingProfiler {
TimeDelta sampling_interval;
};
+ // Testing support.
+ class BASE_EXPORT TestAPI {
+ public:
+ // Returns whether the sampling thread is currently running or not.
+ static bool IsSamplingThreadRunning();
+
+ // Sets the auto-shutdown delay time for the sampling thread, in ms. Set
+ // this to zero to disable it.
+ static void SetSamplingThreadIdleShutdownTime(int shutdown_ms);
Mike Wittman 2017/02/22 20:32:18 This function is only ever used to disable the the
bcwhite 2017/02/24 20:39:24 Done.
+
+ // Initiates an idle shutdown task, as though the idle timer had expired,
+ // causing the thread to exit if there are no more sampling tasks pending.
+ // This returns immediately. Watch IsSamplingThreadRunningForTesting() to
+ // know when the thread has exited, though it will never do so if it is
+ // not idle.
+ static void InitiateSamplingThreadIdleShutdown();
+ };
+
// The callback type used to collect completed profiles. The passed |profiles|
- // are move-only.
+ // are move-only. Other threads, including the UI thread, may block on
+ // callback completion so this should run as quickly as possible.
//
- // IMPORTANT NOTE: the callback is invoked on a thread the profiler
+ // IMPORTANT NOTE: The callback is invoked on a thread the profiler
// constructs, rather than on the thread used to construct the profiler and
// set the callback, and thus the callback must be callable on any thread. For
// threads with message loops that create StackSamplingProfilers, posting a
- // task to the message loop with a copy of the profiles is the recommended
+ // task to the message loop with the moved (i.e. std::move) profiles is the
// thread-safe callback implementation.
using CompletedCallback = Callback<void(CallStackProfiles)>;
- // Creates a profiler that sends completed profiles to |callback|. The second
- // constructor is for test purposes.
- StackSamplingProfiler(PlatformThreadId thread_id,
- const SamplingParams& params,
- const CompletedCallback& callback);
- StackSamplingProfiler(PlatformThreadId thread_id,
- const SamplingParams& params,
- const CompletedCallback& callback,
- NativeStackSamplerTestDelegate* test_delegate);
+ // Creates a profiler for the CURRENT thread that sends completed profiles
+ // to |callback|. An optional |test_delegate| can be supplied by tests.
+ // The caller must ensure that this object gets destroyed before the current
+ // thread exits.
+ StackSamplingProfiler(
+ const SamplingParams& params,
+ const CompletedCallback& callback,
+ NativeStackSamplerTestDelegate* test_delegate = nullptr);
+
+ // Creates a profiler for ANOTHER thread that sends completed profiles to
+ // |callback|. An optional |test_delegate| can be supplied by tests.
+ //
+ // IMPORTANT: The caller must ensure that the thread being sampled does not
+ // exit before this object gets destructed or Bad Things(tm) may occur.
+ StackSamplingProfiler(
+ PlatformThreadId thread_id,
+ const SamplingParams& params,
+ const CompletedCallback& callback,
+ NativeStackSamplerTestDelegate* test_delegate = nullptr);
+
// Stops any profiling currently taking place before destroying the profiler.
+ // This will block until the callback has been run.
~StackSamplingProfiler();
- // The fire-and-forget interface: starts a profiler and allows it to complete
- // without the caller needing to manage the profiler lifetime. May be invoked
- // from any thread, but requires that the calling thread has a message loop.
- static void StartAndRunAsync(PlatformThreadId thread_id,
- const SamplingParams& params,
- const CompletedCallback& callback);
-
// Initializes the profiler and starts sampling.
void Start();
- // Stops the profiler and any ongoing sampling. Calling this function is
- // optional; if not invoked profiling terminates when all the profiling bursts
- // specified in the SamplingParams are completed or the profiler is destroyed,
- // whichever occurs first.
+ // Stops the profiler and any ongoing sampling. This method will return
+ // immediately with the callback being run asynchronously. At most one
+ // more stack sample will be taken after this method returns. Calling this
+ // function is optional; if not invoked profiling terminates when all the
+ // profiling bursts specified in the SamplingParams are completed or the
+ // profiler object is destroyed, whichever occurs first.
void Stop();
// Set the current system state that is recorded with each captured stack
@@ -231,46 +258,11 @@ class BASE_EXPORT StackSamplingProfiler {
static void ResetAnnotationsForTesting();
private:
+ friend class TestAPI;
+
// SamplingThread is a separate thread used to suspend and sample stacks from
// the target thread.
- class SamplingThread : public PlatformThread::Delegate {
- public:
- // Samples stacks using |native_sampler|. When complete, invokes
- // |completed_callback| with the collected call stack profiles.
- // |completed_callback| must be callable on any thread.
- SamplingThread(std::unique_ptr<NativeStackSampler> native_sampler,
- const SamplingParams& params,
- const CompletedCallback& completed_callback);
- ~SamplingThread() override;
-
- // PlatformThread::Delegate:
- void ThreadMain() override;
-
- void Stop();
-
- private:
- // Collects |profile| from a single burst. If the profiler was stopped
- // during collection, sets |was_stopped| and provides the set of samples
- // collected up to that point.
- void CollectProfile(CallStackProfile* profile, TimeDelta* elapsed_time,
- bool* was_stopped);
-
- // Collects call stack profiles from all bursts, or until the sampling is
- // stopped. If stopped before complete, the last profile in
- // |call_stack_profiles| may contain a partial burst.
- void CollectProfiles(CallStackProfiles* profiles);
-
- std::unique_ptr<NativeStackSampler> native_sampler_;
- const SamplingParams params_;
-
- // If Stop() is called, it signals this event to force the sampling to
- // terminate before all the samples specified in |params_| are collected.
- WaitableEvent stop_event_;
-
- const CompletedCallback completed_callback_;
-
- DISALLOW_COPY_AND_ASSIGN(SamplingThread);
- };
+ class SamplingThread;
// Adds annotations to a Sample.
static void RecordAnnotations(Sample* sample);
@@ -287,11 +279,18 @@ class BASE_EXPORT StackSamplingProfiler {
const SamplingParams params_;
- std::unique_ptr<SamplingThread> sampling_thread_;
- PlatformThreadHandle sampling_thread_handle_;
-
const CompletedCallback completed_callback_;
+ // An event signaled when all sampling is complete and the callback done.
+ WaitableEvent finished_event_;
+
+ // Object that does the native sampling. This is created during construction
+ // and later passed to the sampling thread when profiling is started.
+ std::unique_ptr<NativeStackSampler> native_sampler_;
+
+ // An ID uniquely identifying this collection to the sampling thread.
Mike Wittman 2017/02/22 20:32:18 Also mention the conditions under which this will
bcwhite 2017/02/24 20:39:24 Done.
+ int collection_id_;
+
// Stored until it can be passed to the NativeStackSampler created in Start().
NativeStackSamplerTestDelegate* const test_delegate_;
« no previous file with comments | « no previous file | base/profiler/stack_sampling_profiler.cc » ('j') | base/profiler/stack_sampling_profiler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698