blob: 4f2c6be2082c9318082e699a7a2f2adb9e901b1d [file] [log] [blame]
Lalit Maganti79f2d7b2018-01-23 18:27:33 +00001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef TEST_FAKE_PRODUCER_H_
18#define TEST_FAKE_PRODUCER_H_
19
20#include <memory>
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000021#include <random>
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000022#include <string>
23
Primiano Tucci2c5488f2019-06-01 03:27:28 +010024#include "perfetto/ext/base/thread_checker.h"
Primiano Tucci2c5488f2019-06-01 03:27:28 +010025#include "perfetto/ext/tracing/core/producer.h"
Primiano Tucci2c5488f2019-06-01 03:27:28 +010026#include "perfetto/ext/tracing/ipc/producer_ipc_client.h"
Primiano Tucci0f9e0222019-06-05 09:36:41 +010027#include "perfetto/tracing/core/data_source_descriptor.h"
28#include "perfetto/tracing/core/trace_config.h"
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000029#include "src/base/test/test_task_runner.h"
30
31namespace perfetto {
32
33class FakeProducer : public Producer {
34 public:
35 explicit FakeProducer(const std::string& name);
36 ~FakeProducer() override;
37
Sami Kyostila32e0b542018-02-14 08:55:43 +000038 void Connect(const char* socket_name,
39 base::TaskRunner* task_runner,
Stephen Nuskoe8238112019-04-09 18:37:00 +010040 std::function<void()> on_setup_data_source_instance,
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000041 std::function<void()> on_create_data_source_instance);
42
43 // Produces a batch of events (as configured in the DataSourceConfig) and
44 // posts a callback when the service acknowledges the commit.
Lalit Maganti36557d82018-04-11 14:36:17 +010045 void ProduceEventBatch(std::function<void()> callback = [] {});
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000046
47 // Producer implementation.
48 void OnConnect() override;
49 void OnDisconnect() override;
Primiano Tucci674076d2018-10-01 10:41:09 +010050 void SetupDataSource(DataSourceInstanceID,
51 const DataSourceConfig& source_config) override;
Primiano Tucciafb72b52018-09-25 09:37:24 +010052 void StartDataSource(DataSourceInstanceID,
53 const DataSourceConfig& source_config) override;
54 void StopDataSource(DataSourceInstanceID) override;
Primiano Tuccidca727d2018-04-04 11:31:55 +020055 void OnTracingSetup() override;
Primiano Tuccid52e6272018-04-06 19:06:53 +020056 void Flush(FlushRequestID, const DataSourceInstanceID*, size_t) override;
Ryan Savitskibdaa9622019-05-13 10:55:32 +010057 void ClearIncrementalState(const DataSourceInstanceID* /*data_source_ids*/,
58 size_t /*num_data_sources*/) override {}
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000059
60 private:
61 void Shutdown();
62
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000063 base::ThreadChecker thread_checker_;
64 base::TaskRunner* task_runner_ = nullptr;
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000065 std::string name_;
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000066 std::minstd_rand0 rnd_engine_;
Primiano Tuccif0269902018-04-13 11:13:19 +010067 uint32_t message_size_ = 0;
Primiano Tucci3cbb10a2018-04-10 17:52:40 +010068 uint32_t message_count_ = 0;
69 uint32_t max_messages_per_second_ = 0;
Stephen Nuskoe8238112019-04-09 18:37:00 +010070 std::function<void()> on_setup_data_source_instance_;
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000071 std::function<void()> on_create_data_source_instance_;
Florian Mayer6a1a4d52018-06-08 16:47:07 +010072 std::unique_ptr<TracingService::ProducerEndpoint> endpoint_;
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000073 std::unique_ptr<TraceWriter> trace_writer_;
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000074};
75
76} // namespace perfetto
77
78#endif // TEST_FAKE_PRODUCER_H_