blob: 59221657ee9f3fad8929681406170885e2e2f88f [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 Tucci10c9e9e2021-01-08 13:04:40 +010025#include "perfetto/ext/base/unix_socket.h"
Primiano Tucci2c5488f2019-06-01 03:27:28 +010026#include "perfetto/ext/tracing/core/producer.h"
Primiano Tucci2c5488f2019-06-01 03:27:28 +010027#include "perfetto/ext/tracing/ipc/producer_ipc_client.h"
Primiano Tucci0f9e0222019-06-05 09:36:41 +010028#include "perfetto/tracing/core/data_source_descriptor.h"
29#include "perfetto/tracing/core/trace_config.h"
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000030#include "src/base/test/test_task_runner.h"
31
32namespace perfetto {
33
Eric Seckler526921b2020-02-18 11:44:30 +000034namespace protos {
35namespace gen {
36class TestConfig;
37} // namespace gen
38} // namespace protos
39
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000040class FakeProducer : public Producer {
41 public:
Eric Seckler526921b2020-02-18 11:44:30 +000042 explicit FakeProducer(const std::string& name, base::TaskRunner* task_runner);
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000043 ~FakeProducer() override;
44
Sami Kyostila32e0b542018-02-14 08:55:43 +000045 void Connect(const char* socket_name,
Primiano Tuccibbe68be2020-04-16 22:17:12 +010046 std::function<void()> on_connect,
Stephen Nuskoe8238112019-04-09 18:37:00 +010047 std::function<void()> on_setup_data_source_instance,
Eric Seckler326a3d32020-02-04 11:24:56 +000048 std::function<void()> on_create_data_source_instance,
Eric Seckler526921b2020-02-18 11:44:30 +000049 std::unique_ptr<SharedMemory> shm = nullptr,
50 std::unique_ptr<SharedMemoryArbiter> shm_arbiter = nullptr);
51
52 // Produces a batch of events (as configured by the passed config) before the
53 // producer is connected to the service using the provided unbound arbiter.
54 // Posts |callback| once the data was written. May only be called once.
55 void ProduceStartupEventBatch(
56 const protos::gen::TestConfig& config,
57 SharedMemoryArbiter* arbiter,
58 std::function<void()> callback = [] {});
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000059
60 // Produces a batch of events (as configured in the DataSourceConfig) and
61 // posts a callback when the service acknowledges the commit.
Lalit Maganti36557d82018-04-11 14:36:17 +010062 void ProduceEventBatch(std::function<void()> callback = [] {});
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000063
Primiano Tucci9c41ceb2020-04-14 13:23:01 +010064 void RegisterDataSource(const DataSourceDescriptor&);
65 void CommitData(const CommitDataRequest&, std::function<void()> callback);
Primiano Tuccibbe68be2020-04-16 22:17:12 +010066 void Sync(std::function<void()> callback);
Primiano Tuccif26cb9c2022-01-18 23:19:36 +000067 void ActivateTrigger(const std::string& trigger_name);
Primiano Tucci9c41ceb2020-04-14 13:23:01 +010068
Eric Seckler326a3d32020-02-04 11:24:56 +000069 bool IsShmemProvidedByProducer() const {
70 return endpoint_->IsShmemProvidedByProducer();
71 }
72
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000073 // Producer implementation.
74 void OnConnect() override;
75 void OnDisconnect() override;
Primiano Tucci674076d2018-10-01 10:41:09 +010076 void SetupDataSource(DataSourceInstanceID,
77 const DataSourceConfig& source_config) override;
Primiano Tucciafb72b52018-09-25 09:37:24 +010078 void StartDataSource(DataSourceInstanceID,
79 const DataSourceConfig& source_config) override;
80 void StopDataSource(DataSourceInstanceID) override;
Primiano Tuccidca727d2018-04-04 11:31:55 +020081 void OnTracingSetup() override;
Primiano Tuccid52e6272018-04-06 19:06:53 +020082 void Flush(FlushRequestID, const DataSourceInstanceID*, size_t) override;
Ryan Savitskibdaa9622019-05-13 10:55:32 +010083 void ClearIncrementalState(const DataSourceInstanceID* /*data_source_ids*/,
84 size_t /*num_data_sources*/) override {}
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000085
Stephen Nusko1af720e2020-11-18 14:04:16 -050086 // For testing, access to the fd used to communicate with the TracingService.
Primiano Tucci10c9e9e2021-01-08 13:04:40 +010087 base::SocketHandle unix_socket_fd();
Stephen Nusko1af720e2020-11-18 14:04:16 -050088
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000089 private:
Eric Seckler526921b2020-02-18 11:44:30 +000090 void SetupFromConfig(const protos::gen::TestConfig& config);
91 void EmitEventBatchOnTaskRunner(std::function<void()> callback);
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000092
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000093 base::ThreadChecker thread_checker_;
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000094 std::string name_;
Eric Seckler526921b2020-02-18 11:44:30 +000095 base::TaskRunner* task_runner_ = nullptr;
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000096 std::minstd_rand0 rnd_engine_;
Primiano Tuccif0269902018-04-13 11:13:19 +010097 uint32_t message_size_ = 0;
Primiano Tucci3cbb10a2018-04-10 17:52:40 +010098 uint32_t message_count_ = 0;
99 uint32_t max_messages_per_second_ = 0;
Primiano Tuccibbe68be2020-04-16 22:17:12 +0100100 std::function<void()> on_connect_;
Stephen Nuskoe8238112019-04-09 18:37:00 +0100101 std::function<void()> on_setup_data_source_instance_;
Lalit Magantibfc3d3e2018-03-22 20:28:38 +0000102 std::function<void()> on_create_data_source_instance_;
Florian Mayer6a1a4d52018-06-08 16:47:07 +0100103 std::unique_ptr<TracingService::ProducerEndpoint> endpoint_;
Lalit Magantibfc3d3e2018-03-22 20:28:38 +0000104 std::unique_ptr<TraceWriter> trace_writer_;
Lalit Maganti79f2d7b2018-01-23 18:27:33 +0000105};
106
107} // namespace perfetto
108
109#endif // TEST_FAKE_PRODUCER_H_