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