blob: 1f8186083d1267e142b86df0c9b94180372deac9 [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>
20#include "frameworks/base/cmds/statsd/src/stats_log.pb.h"
21#include "field_util.h"
22
23namespace android {
24namespace os {
25namespace statsd {
26
27// Helper function to write DimensionsValue proto to ProtoOutputStream.
28void writeDimensionsValueProtoToStream(
29 const DimensionsValue& fieldValue, util::ProtoOutputStream* protoOutput);
30
31// Helper function to write Field proto to ProtoOutputStream.
32void writeFieldProtoToStream(
33 const Field& field, util::ProtoOutputStream* protoOutput);
34
35// Helper function to construct the field value tree and write to ProtoOutputStream
36void writeFieldValueTreeToStream(const FieldValueMap &fieldValueMap,
37 util::ProtoOutputStream* protoOutput);
38
39} // namespace statsd
40} // namespace os
41} // namespace android