blob: 59226423431c2475a5d50481cf17a29108bc89ab [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>
Yao Chen8a8d16c2018-02-08 14:50:40 -080020#include "FieldValue.h"
21#include "HashableDimensionKey.h"
Chenjie Yub038b702017-12-18 15:15:34 -080022#include "frameworks/base/cmds/statsd/src/stats_log.pb.h"
23#include "frameworks/base/cmds/statsd/src/statsd_config.pb.h"
24#include "guardrail/StatsdStats.h"
Yangster-mac20877162017-12-22 17:19:39 -080025
26namespace android {
27namespace os {
28namespace statsd {
29
Yao Chen8a8d16c2018-02-08 14:50:40 -080030void writeFieldValueTreeToStream(int tagId, const std::vector<FieldValue>& values,
Chenjie Yub038b702017-12-18 15:15:34 -080031 util::ProtoOutputStream* protoOutput);
Yao Chen8a8d16c2018-02-08 14:50:40 -080032void writeDimensionToProto(const HashableDimensionKey& dimension,
33 util::ProtoOutputStream* protoOutput);
Yangster-mac20877162017-12-22 17:19:39 -080034
yro59cc24d2018-02-13 20:17:32 -080035// Convert the TimeUnit enum to the bucket size in millis with a guardrail on
36// bucket size.
37int64_t TimeUnitToBucketSizeInMillisGuardrailed(int uid, TimeUnit unit);
38
Yangster-macb8144812018-01-04 10:56:23 -080039// Convert the TimeUnit enum to the bucket size in millis.
40int64_t TimeUnitToBucketSizeInMillis(TimeUnit unit);
41
Yangster-mac330af582018-02-08 15:24:38 -080042// Gets the elapsed timestamp in ns.
43int64_t getElapsedRealtimeNs();
44
45// Gets the elapsed timestamp in millis.
46int64_t getElapsedRealtimeMillis();
47
48// Gets the elapsed timestamp in seconds.
49int64_t getElapsedRealtimeSec();
50
51// Gets the wall clock timestamp in ns.
52int64_t getWallClockNs();
53
54// Gets the wall clock timestamp in millis.
55int64_t getWallClockMillis();
56
57// Gets the wall clock timestamp in seconds.
58int64_t getWallClockSec();
59
Chenjie Yub038b702017-12-18 15:15:34 -080060// Helper function to write PulledAtomStats to ProtoOutputStream
61void writePullerStatsToStream(const std::pair<int, StatsdStats::PulledAtomStats>& pair,
62 util::ProtoOutputStream* protoOutput);
Yangster-mac87718e22018-01-11 16:16:26 -080063
64template<class T>
65bool parseProtoOutputStream(util::ProtoOutputStream& protoOutput, T* message) {
66 std::string pbBytes;
67 auto iter = protoOutput.data();
68 while (iter.readBuffer() != NULL) {
69 size_t toRead = iter.currentToRead();
70 pbBytes.append(reinterpret_cast<const char*>(iter.readBuffer()), toRead);
71 iter.rp()->move(toRead);
72 }
73 return message->ParseFromArray(pbBytes.c_str(), pbBytes.size());
74}
75
Yangster-macd5c35622018-02-02 10:33:25 -080076// Returns the truncated timestamp.
77int64_t truncateTimestampNsToFiveMinutes(int64_t timestampNs);
78
Yangster-mac20877162017-12-22 17:19:39 -080079} // namespace statsd
80} // namespace os
yro59cc24d2018-02-13 20:17:32 -080081} // namespace android