Yi Jin | 99c248f | 2017-08-25 18:11:58 -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 | |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 17 | #ifndef PRIVACY_BUFFER_H |
| 18 | #define PRIVACY_BUFFER_H |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 19 | |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 20 | #include "Privacy.h" |
| 21 | |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 22 | #include <android/util/EncodedBuffer.h> |
Yi Jin | 42711a0 | 2017-10-11 18:20:24 -0700 | [diff] [blame] | 23 | #include <android/util/ProtoOutputStream.h> |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 24 | #include <stdint.h> |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 25 | #include <utils/Errors.h> |
| 26 | |
| 27 | using namespace android; |
| 28 | using namespace android::util; |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 29 | |
| 30 | /** |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 31 | * PrivacyBuffer holds the original protobuf data and strips PII-sensitive fields |
| 32 | * based on the request and holds stripped data in its own buffer for output. |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 33 | */ |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 34 | class PrivacyBuffer |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 35 | { |
| 36 | public: |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 37 | PrivacyBuffer(const Privacy* policy, EncodedBuffer::iterator& data); |
| 38 | ~PrivacyBuffer(); |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 39 | |
| 40 | /** |
| 41 | * Strip based on the request and hold data in its own buffer. Return NO_ERROR if strip succeeds. |
| 42 | */ |
| 43 | status_t strip(const PrivacySpec& spec); |
| 44 | |
| 45 | /** |
| 46 | * Clear encoded buffer so it can be reused by another request. |
| 47 | */ |
| 48 | void clear(); |
| 49 | |
| 50 | /** |
| 51 | * Return the size of the stripped data. |
| 52 | */ |
| 53 | size_t size() const; |
| 54 | |
| 55 | /** |
| 56 | * Flush buffer to the given fd. NO_ERROR is returned if the flush succeeds. |
| 57 | */ |
| 58 | status_t flush(int fd); |
| 59 | |
| 60 | private: |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 61 | const Privacy* mPolicy; |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 62 | EncodedBuffer::iterator& mData; |
| 63 | |
Yi Jin | 42711a0 | 2017-10-11 18:20:24 -0700 | [diff] [blame] | 64 | ProtoOutputStream mProto; |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 65 | size_t mSize; |
Yi Jin | 42711a0 | 2017-10-11 18:20:24 -0700 | [diff] [blame] | 66 | |
| 67 | status_t stripField(const Privacy* parentPolicy, const PrivacySpec& spec); |
| 68 | void writeFieldOrSkip(uint32_t fieldTag, bool skip); |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 69 | }; |
| 70 | |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 71 | #endif // PRIVACY_BUFFER_H |