move to new MQDescriptor.
b/31091383: Adding WireMQDescriptor as a hidl type
Change-Id: Ib19371845a0026f49285d7c615cbc4fcc7f16c1a
diff --git a/include/hidl/MQDescriptor.h b/include/hidl/MQDescriptor.h
new file mode 100644
index 0000000..47b3dea
--- /dev/null
+++ b/include/hidl/MQDescriptor.h
@@ -0,0 +1,85 @@
+/*
+ * Copyright (C) 2016 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef _FMSGQ_DESCRIPTOR_H
+#define _FMSGQ_DESCRIPTOR_H
+
+#include <android-base/macros.h>
+#include <cutils/native_handle.h>
+#include <hidl/HidlSupport.h>
+
+namespace android {
+namespace hardware {
+
+struct GrantorDescriptor {
+ uint32_t flags;
+ uint32_t fdIndex;
+ uint32_t offset;
+ uint32_t extent;
+};
+
+enum GrantorType : int { READPTRPOS = 0, WRITEPTRPOS, DATAPTRPOS };
+
+struct MQDescriptor {
+ MQDescriptor(
+ const std::vector<GrantorDescriptor>& grantors,
+ native_handle_t* nhandle, int32_t flags, size_t size);
+
+ ~MQDescriptor();
+
+ explicit MQDescriptor(const MQDescriptor &other);
+ MQDescriptor &operator=(const MQDescriptor &other) = delete;
+
+ size_t getSize() const;
+
+ size_t getQuantum() const;
+
+ int32_t getFlags() const;
+ void* mapGrantorDescr(uint32_t grantor_idx);
+ void unmapGrantorDescr(void* address, uint32_t grantor_idx);
+
+ ::android::status_t readEmbeddedFromParcel(
+ const ::android::hardware::Parcel &parcel,
+ size_t parentHandle,
+ size_t parentOffset);
+
+ ::android::status_t writeEmbeddedToParcel(
+ ::android::hardware::Parcel *parcel,
+ size_t parentHandle,
+ size_t parentOffset) const;
+
+ bool isHandleValid() const { return mHandle != nullptr; }
+ size_t countGrantors() const { return mGrantors.size(); }
+
+private:
+ ::android::hardware::hidl_vec<GrantorDescriptor> mGrantors;
+ const ::native_handle_t *mHandle;
+ uint32_t mQuantum;
+ uint32_t mFlags;
+};
+
+inline size_t MQDescriptor::getSize() const {
+ return mGrantors[DATAPTRPOS].extent;
+}
+
+inline size_t MQDescriptor::getQuantum() const { return mQuantum; }
+
+inline int32_t MQDescriptor::getFlags() const { return mFlags; }
+
+} // namespace hardware
+} // namespace android
+
+#endif // FMSGQ_DESCRIPTOR_H