blob: 09a43f5c881f5e53ae21354003f54073d5576695 [file] [log] [blame]
Yangster-mac20877162017-12-22 17:19:39 -08001/*
2 * Copyright (C) 2017 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#pragma once
18
19#include <android/util/ProtoOutputStream.h>
Yangster-mac20877162017-12-22 17:19:39 -080020#include "field_util.h"
Chenjie Yub038b702017-12-18 15:15:34 -080021#include "frameworks/base/cmds/statsd/src/stats_log.pb.h"
22#include "frameworks/base/cmds/statsd/src/statsd_config.pb.h"
23#include "guardrail/StatsdStats.h"
Yangster-mac20877162017-12-22 17:19:39 -080024
25namespace android {
26namespace os {
27namespace statsd {
28
29// Helper function to write DimensionsValue proto to ProtoOutputStream.
Chenjie Yub038b702017-12-18 15:15:34 -080030void writeDimensionsValueProtoToStream(const DimensionsValue& fieldValue,
31 util::ProtoOutputStream* protoOutput);
Yangster-mac20877162017-12-22 17:19:39 -080032
33// Helper function to write Field proto to ProtoOutputStream.
Chenjie Yub038b702017-12-18 15:15:34 -080034void writeFieldProtoToStream(const Field& field, util::ProtoOutputStream* protoOutput);
Yangster-mac20877162017-12-22 17:19:39 -080035
36// Helper function to construct the field value tree and write to ProtoOutputStream
Chenjie Yub038b702017-12-18 15:15:34 -080037void writeFieldValueTreeToStream(const FieldValueMap& fieldValueMap,
38 util::ProtoOutputStream* protoOutput);
Yangster-mac20877162017-12-22 17:19:39 -080039
Yangster-macb8144812018-01-04 10:56:23 -080040// Convert the TimeUnit enum to the bucket size in millis.
41int64_t TimeUnitToBucketSizeInMillis(TimeUnit unit);
42
Chenjie Yub038b702017-12-18 15:15:34 -080043// Helper function to write PulledAtomStats to ProtoOutputStream
44void writePullerStatsToStream(const std::pair<int, StatsdStats::PulledAtomStats>& pair,
45 util::ProtoOutputStream* protoOutput);
Yangster-mac20877162017-12-22 17:19:39 -080046} // namespace statsd
47} // namespace os
48} // namespace android