summaryrefslogtreecommitdiff
path: root/utils/LocUnorderedSetMap.h
diff options
context:
space:
mode:
authorKevin Tang <zhikait@codeaurora.org>2018-03-23 23:00:16 -0700
committerKevin Tang <zhikait@codeaurora.org>2018-05-14 12:20:17 -0700
commit86e1b52c812f5d9680ec1ad755d80644d0736a07 (patch)
tree7eb4942a87f0f9a0a28b7f1be2680f4676debfa0 /utils/LocUnorderedSetMap.h
parentf906756e7b491951b8c7bf230272051e41d1dced (diff)
downloadgps-86e1b52c812f5d9680ec1ad755d80644d0736a07.tar.gz
renamed DataItemIndex and ClientIndex files
and moved them into utils. Change-Id: I138471168bf58d2cf09c6a435088edea29a567d0 CRs-Fixed: 2218519
Diffstat (limited to 'utils/LocUnorderedSetMap.h')
-rw-r--r--utils/LocUnorderedSetMap.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/utils/LocUnorderedSetMap.h b/utils/LocUnorderedSetMap.h
new file mode 100644
index 0000000..d72e89e
--- /dev/null
+++ b/utils/LocUnorderedSetMap.h
@@ -0,0 +1,70 @@
+/* Copyright (c) 2015, 2017 The Linux Foundation. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met:
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided
+ * with the distribution.
+ * * Neither the name of The Linux Foundation, nor the names of its
+ * contributors may be used to endorse or promote products derived
+ * from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+ * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+ * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
+ * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ */
+
+#ifndef __DATAITEMINDEX_H__
+#define __DATAITEMINDEX_H__
+
+#include <list>
+#include <map>
+#include <IDataItemIndex.h>
+
+using loc_core::IDataItemIndex;
+
+namespace loc_core
+{
+
+template <typename CT, typename DIT>
+
+class DataItemIndex : public IDataItemIndex <CT, DIT> {
+
+public:
+
+ DataItemIndex ();
+
+ ~DataItemIndex ();
+
+ void getListOfSubscribedClients (DIT id, std :: list <CT> & out);
+
+ int remove (DIT id);
+
+ void remove (const std :: list <CT> & r, std :: list <DIT> & out);
+
+ void remove (DIT id, const std :: list <CT> & r, std :: list <CT> & out);
+
+ void add (DIT id, const std :: list <CT> & l, std :: list <CT> & out);
+
+ void add (CT client, const std :: list <DIT> & l, std :: list <DIT> & out);
+
+private:
+ std :: map < DIT, std :: list <CT> > mClientsPerDataItemMap;
+};
+
+} // namespace loc_core
+
+#endif // #ifndef __DATAITEMINDEX_H__