summaryrefslogtreecommitdiff
path: root/system_wrappers/interface/map_wrapper.h
blob: c0c332ec95e4d1f5c67af420d3888f72341bd178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 *  Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_MAP_WRAPPER_H_
#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_MAP_WRAPPER_H_

#include <map>

#include "webrtc/system_wrappers/interface/constructor_magic.h"

namespace webrtc {

class MapItem {
 public:
  MapItem(int id, void* ptr);
  virtual ~MapItem();
  void* GetItem();
  int GetId();
  unsigned int GetUnsignedId();
  void SetItem(void* ptr);

 private:
  friend class MapWrapper;

  int   item_id_;
  void* item_pointer_;
};

class MapWrapper {
 public:
  MapWrapper();
  ~MapWrapper();

  // Puts a pointer to anything in the map and associates it with id. Note, id
  // needs to be unique for all items in the map.
  int Insert(int id, void* ptr);

  // Removes item from map.
  int Erase(MapItem* item);

  // Finds item with associated with id and removes it from the map.
  int Erase(int id);

  // Returns the number of elements stored in the map.
  int Size() const;

  // Returns a pointer to the first MapItem in the map.
  MapItem* First() const;

  // Returns a pointer to the last MapItem in the map.
  MapItem* Last() const;

  // Returns a pointer to the MapItem stored after item in the map.
  MapItem* Next(MapItem* item) const;

  // Returns a pointer to the MapItem stored before item in the map.
  MapItem* Previous(MapItem* item) const;

  // Returns a pointer to the MapItem associated with id from the map.
  MapItem* Find(int id) const;

 private:
  std::map<int, MapItem*>    map_;
};

} // namespace webrtc

#endif  // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_MAP_WRAPPER_H_