blob: baacb9f9139b25336370a1c8832f4b054a6d5659 [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
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000024#include "perfetto/base/thread_checker.h"
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000025#include "perfetto/tracing/core/data_source_descriptor.h"
26#include "perfetto/tracing/core/producer.h"
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000027#include "perfetto/tracing/core/trace_config.h"
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000028#include "perfetto/tracing/ipc/producer_ipc_client.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,
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000040 std::function<void()> on_create_data_source_instance);
41
42 // Produces a batch of events (as configured in the DataSourceConfig) and
43 // posts a callback when the service acknowledges the commit.
Lalit Maganti36557d82018-04-11 14:36:17 +010044 void ProduceEventBatch(std::function<void()> callback = [] {});
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000045
46 // Producer implementation.
47 void OnConnect() override;
48 void OnDisconnect() override;
Primiano Tucci674076d2018-10-01 10:41:09 +010049 void SetupDataSource(DataSourceInstanceID,
50 const DataSourceConfig& source_config) override;
Primiano Tucciafb72b52018-09-25 09:37:24 +010051 void StartDataSource(DataSourceInstanceID,
52 const DataSourceConfig& source_config) override;
53 void StopDataSource(DataSourceInstanceID) override;
Primiano Tuccidca727d2018-04-04 11:31:55 +020054 void OnTracingSetup() override;
Primiano Tuccid52e6272018-04-06 19:06:53 +020055 void Flush(FlushRequestID, const DataSourceInstanceID*, size_t) override;
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000056
57 private:
58 void Shutdown();
59
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000060 base::ThreadChecker thread_checker_;
61 base::TaskRunner* task_runner_ = nullptr;
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000062 std::string name_;
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000063 std::minstd_rand0 rnd_engine_;
Primiano Tuccif0269902018-04-13 11:13:19 +010064 uint32_t message_size_ = 0;
Primiano Tucci3cbb10a2018-04-10 17:52:40 +010065 uint32_t message_count_ = 0;
66 uint32_t max_messages_per_second_ = 0;
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000067 std::function<void()> on_create_data_source_instance_;
Florian Mayer6a1a4d52018-06-08 16:47:07 +010068 std::unique_ptr<TracingService::ProducerEndpoint> endpoint_;
Lalit Magantibfc3d3e2018-03-22 20:28:38 +000069 std::unique_ptr<TraceWriter> trace_writer_;
Lalit Maganti79f2d7b2018-01-23 18:27:33 +000070};
71
72} // namespace perfetto
73
74#endif // TEST_FAKE_PRODUCER_H_