Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 1 | /* |
| 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 | #define DEBUG true // STOPSHIP if true |
| 18 | #include "Log.h" |
| 19 | |
| 20 | #include "EventMetricProducer.h" |
| 21 | #include "stats_util.h" |
| 22 | |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 23 | #include <limits.h> |
| 24 | #include <stdlib.h> |
| 25 | |
yro | 2b0f886 | 2017-11-06 14:27:31 -0800 | [diff] [blame] | 26 | using android::util::FIELD_TYPE_BOOL; |
| 27 | using android::util::FIELD_TYPE_FLOAT; |
| 28 | using android::util::FIELD_TYPE_INT32; |
| 29 | using android::util::FIELD_TYPE_INT64; |
| 30 | using android::util::FIELD_TYPE_MESSAGE; |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 31 | using android::util::ProtoOutputStream; |
| 32 | using std::map; |
| 33 | using std::string; |
| 34 | using std::unordered_map; |
| 35 | using std::vector; |
| 36 | |
| 37 | namespace android { |
| 38 | namespace os { |
| 39 | namespace statsd { |
| 40 | |
| 41 | // for StatsLogReport |
| 42 | const int FIELD_ID_METRIC_ID = 1; |
| 43 | const int FIELD_ID_START_REPORT_NANOS = 2; |
yro | 24809bd | 2017-10-31 23:06:53 -0700 | [diff] [blame] | 44 | const int FIELD_ID_END_REPORT_NANOS = 3; |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 45 | const int FIELD_ID_EVENT_METRICS = 4; |
yro | 24809bd | 2017-10-31 23:06:53 -0700 | [diff] [blame] | 46 | // for EventMetricDataWrapper |
| 47 | const int FIELD_ID_DATA = 1; |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 48 | // for EventMetricData |
| 49 | const int FIELD_ID_TIMESTAMP_NANOS = 1; |
| 50 | const int FIELD_ID_STATS_EVENTS = 2; |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 51 | |
| 52 | EventMetricProducer::EventMetricProducer(const EventMetric& metric, const int conditionIndex, |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 53 | const sp<ConditionWizard>& wizard, |
| 54 | const uint64_t startTimeNs) |
| 55 | : MetricProducer(startTimeNs, conditionIndex, wizard), mMetric(metric) { |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 56 | if (metric.links().size() > 0) { |
| 57 | mConditionLinks.insert(mConditionLinks.begin(), metric.links().begin(), |
| 58 | metric.links().end()); |
| 59 | mConditionSliced = true; |
| 60 | } |
| 61 | |
| 62 | startNewProtoOutputStream(mStartTimeNs); |
| 63 | |
| 64 | VLOG("metric %lld created. bucket size %lld start_time: %lld", metric.metric_id(), |
| 65 | (long long)mBucketSizeNs, (long long)mStartTimeNs); |
| 66 | } |
| 67 | |
| 68 | EventMetricProducer::~EventMetricProducer() { |
| 69 | VLOG("~EventMetricProducer() called"); |
| 70 | } |
| 71 | |
| 72 | void EventMetricProducer::startNewProtoOutputStream(long long startTime) { |
| 73 | mProto = std::make_unique<ProtoOutputStream>(); |
| 74 | // TODO: We need to auto-generate the field IDs for StatsLogReport, EventMetricData, |
| 75 | // and StatsEvent. |
yro | 24809bd | 2017-10-31 23:06:53 -0700 | [diff] [blame] | 76 | mProto->write(FIELD_TYPE_INT32 | FIELD_ID_METRIC_ID, mMetric.metric_id()); |
| 77 | mProto->write(FIELD_TYPE_INT64 | FIELD_ID_START_REPORT_NANOS, startTime); |
| 78 | mProtoToken = mProto->start(FIELD_TYPE_MESSAGE | FIELD_ID_EVENT_METRICS); |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | void EventMetricProducer::finish() { |
| 82 | } |
| 83 | |
Yao Chen | 5154a379 | 2017-10-30 22:57:06 -0700 | [diff] [blame] | 84 | void EventMetricProducer::onSlicedConditionMayChange(const uint64_t eventTime) { |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 85 | } |
| 86 | |
yro | 17adac9 | 2017-11-08 23:16:29 -0800 | [diff] [blame] | 87 | std::unique_ptr<std::vector<uint8_t>> EventMetricProducer::onDumpReport() { |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 88 | long long endTime = time(nullptr) * NS_PER_SEC; |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 89 | mProto->end(mProtoToken); |
yro | 24809bd | 2017-10-31 23:06:53 -0700 | [diff] [blame] | 90 | mProto->write(FIELD_TYPE_INT64 | FIELD_ID_END_REPORT_NANOS, endTime); |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 91 | |
| 92 | size_t bufferSize = mProto->size(); |
| 93 | VLOG("metric %lld dump report now... proto size: %zu ", mMetric.metric_id(), bufferSize); |
yro | 17adac9 | 2017-11-08 23:16:29 -0800 | [diff] [blame] | 94 | std::unique_ptr<std::vector<uint8_t>> buffer = serializeProto(); |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 95 | |
| 96 | startNewProtoOutputStream(endTime); |
| 97 | |
yro | 17adac9 | 2017-11-08 23:16:29 -0800 | [diff] [blame] | 98 | return buffer; |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 99 | } |
| 100 | |
Yao Chen | 5154a379 | 2017-10-30 22:57:06 -0700 | [diff] [blame] | 101 | void EventMetricProducer::onConditionChanged(const bool conditionMet, const uint64_t eventTime) { |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 102 | VLOG("Metric %lld onConditionChanged", mMetric.metric_id()); |
| 103 | mCondition = conditionMet; |
| 104 | } |
| 105 | |
| 106 | void EventMetricProducer::onMatchedLogEventInternal( |
| 107 | const size_t matcherIndex, const HashableDimensionKey& eventKey, |
| 108 | const std::map<std::string, HashableDimensionKey>& conditionKey, bool condition, |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 109 | const LogEvent& event, bool scheduledPull) { |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 110 | if (!condition) { |
| 111 | return; |
| 112 | } |
| 113 | |
yro | 24809bd | 2017-10-31 23:06:53 -0700 | [diff] [blame] | 114 | long long wrapperToken = mProto->start(FIELD_TYPE_MESSAGE | FIELD_ID_DATA); |
| 115 | mProto->write(FIELD_TYPE_INT64 | FIELD_ID_TIMESTAMP_NANOS, (long long)event.GetTimestampNs()); |
| 116 | long long eventToken = mProto->start(FIELD_TYPE_MESSAGE | FIELD_ID_STATS_EVENTS); |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 117 | event.ToProto(*mProto); |
| 118 | mProto->end(eventToken); |
| 119 | mProto->end(wrapperToken); |
| 120 | } |
| 121 | |
yro | 69007c8 | 2017-10-26 20:42:57 -0700 | [diff] [blame] | 122 | size_t EventMetricProducer::byteSize() { |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 123 | return mProto->size(); |
yro | 69007c8 | 2017-10-26 20:42:57 -0700 | [diff] [blame] | 124 | } |
| 125 | |
Yao Chen | 5110bed | 2017-10-23 12:50:02 -0700 | [diff] [blame] | 126 | } // namespace statsd |
| 127 | } // namespace os |
| 128 | } // namespace android |