Lalit Maganti | 79f2d7b | 2018-01-23 18:27:33 +0000 | [diff] [blame] | 1 | /* |
| 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 Maganti | bfc3d3e | 2018-03-22 20:28:38 +0000 | [diff] [blame] | 21 | #include <random> |
Lalit Maganti | 79f2d7b | 2018-01-23 18:27:33 +0000 | [diff] [blame] | 22 | #include <string> |
| 23 | |
Primiano Tucci | 2c5488f | 2019-06-01 03:27:28 +0100 | [diff] [blame] | 24 | #include "perfetto/ext/base/thread_checker.h" |
Primiano Tucci | 2c5488f | 2019-06-01 03:27:28 +0100 | [diff] [blame] | 25 | #include "perfetto/ext/tracing/core/producer.h" |
Primiano Tucci | 2c5488f | 2019-06-01 03:27:28 +0100 | [diff] [blame] | 26 | #include "perfetto/ext/tracing/ipc/producer_ipc_client.h" |
Primiano Tucci | 0f9e022 | 2019-06-05 09:36:41 +0100 | [diff] [blame] | 27 | #include "perfetto/tracing/core/data_source_descriptor.h" |
| 28 | #include "perfetto/tracing/core/trace_config.h" |
Lalit Maganti | 79f2d7b | 2018-01-23 18:27:33 +0000 | [diff] [blame] | 29 | #include "src/base/test/test_task_runner.h" |
| 30 | |
| 31 | namespace perfetto { |
| 32 | |
| 33 | class FakeProducer : public Producer { |
| 34 | public: |
| 35 | explicit FakeProducer(const std::string& name); |
| 36 | ~FakeProducer() override; |
| 37 | |
Sami Kyostila | 32e0b54 | 2018-02-14 08:55:43 +0000 | [diff] [blame] | 38 | void Connect(const char* socket_name, |
| 39 | base::TaskRunner* task_runner, |
Stephen Nusko | e823811 | 2019-04-09 18:37:00 +0100 | [diff] [blame] | 40 | std::function<void()> on_setup_data_source_instance, |
Lalit Maganti | bfc3d3e | 2018-03-22 20:28:38 +0000 | [diff] [blame] | 41 | 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 Maganti | 36557d8 | 2018-04-11 14:36:17 +0100 | [diff] [blame] | 45 | void ProduceEventBatch(std::function<void()> callback = [] {}); |
Lalit Maganti | 79f2d7b | 2018-01-23 18:27:33 +0000 | [diff] [blame] | 46 | |
| 47 | // Producer implementation. |
| 48 | void OnConnect() override; |
| 49 | void OnDisconnect() override; |
Primiano Tucci | 674076d | 2018-10-01 10:41:09 +0100 | [diff] [blame] | 50 | void SetupDataSource(DataSourceInstanceID, |
| 51 | const DataSourceConfig& source_config) override; |
Primiano Tucci | afb72b5 | 2018-09-25 09:37:24 +0100 | [diff] [blame] | 52 | void StartDataSource(DataSourceInstanceID, |
| 53 | const DataSourceConfig& source_config) override; |
| 54 | void StopDataSource(DataSourceInstanceID) override; |
Primiano Tucci | dca727d | 2018-04-04 11:31:55 +0200 | [diff] [blame] | 55 | void OnTracingSetup() override; |
Primiano Tucci | d52e627 | 2018-04-06 19:06:53 +0200 | [diff] [blame] | 56 | void Flush(FlushRequestID, const DataSourceInstanceID*, size_t) override; |
Ryan Savitski | bdaa962 | 2019-05-13 10:55:32 +0100 | [diff] [blame] | 57 | void ClearIncrementalState(const DataSourceInstanceID* /*data_source_ids*/, |
| 58 | size_t /*num_data_sources*/) override {} |
Lalit Maganti | 79f2d7b | 2018-01-23 18:27:33 +0000 | [diff] [blame] | 59 | |
| 60 | private: |
| 61 | void Shutdown(); |
| 62 | |
Lalit Maganti | bfc3d3e | 2018-03-22 20:28:38 +0000 | [diff] [blame] | 63 | base::ThreadChecker thread_checker_; |
| 64 | base::TaskRunner* task_runner_ = nullptr; |
Lalit Maganti | 79f2d7b | 2018-01-23 18:27:33 +0000 | [diff] [blame] | 65 | std::string name_; |
Lalit Maganti | bfc3d3e | 2018-03-22 20:28:38 +0000 | [diff] [blame] | 66 | std::minstd_rand0 rnd_engine_; |
Primiano Tucci | f026990 | 2018-04-13 11:13:19 +0100 | [diff] [blame] | 67 | uint32_t message_size_ = 0; |
Primiano Tucci | 3cbb10a | 2018-04-10 17:52:40 +0100 | [diff] [blame] | 68 | uint32_t message_count_ = 0; |
| 69 | uint32_t max_messages_per_second_ = 0; |
Stephen Nusko | e823811 | 2019-04-09 18:37:00 +0100 | [diff] [blame] | 70 | std::function<void()> on_setup_data_source_instance_; |
Lalit Maganti | bfc3d3e | 2018-03-22 20:28:38 +0000 | [diff] [blame] | 71 | std::function<void()> on_create_data_source_instance_; |
Florian Mayer | 6a1a4d5 | 2018-06-08 16:47:07 +0100 | [diff] [blame] | 72 | std::unique_ptr<TracingService::ProducerEndpoint> endpoint_; |
Lalit Maganti | bfc3d3e | 2018-03-22 20:28:38 +0000 | [diff] [blame] | 73 | std::unique_ptr<TraceWriter> trace_writer_; |
Lalit Maganti | 79f2d7b | 2018-01-23 18:27:33 +0000 | [diff] [blame] | 74 | }; |
| 75 | |
| 76 | } // namespace perfetto |
| 77 | |
| 78 | #endif // TEST_FAKE_PRODUCER_H_ |