aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/src/hash_container.h
blob: ab832f3c779c92ad2de585c9b5e8cbbc1c7ed17d (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/**
 * Copyright (C) 2005-2012 Gekko Emulator
 *
 * @file    hash_container.h
 * @author  ShizZy <shizzy@6bit.net>
 * @date    2012-11-29
 * @brief   Container object for storing a hash lookup
 *
 * @section LICENSE
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details at
 * http://www.gnu.org/copyleft/gpl.html
 *
 * Official project repository can be found at:
 * http://code.google.com/p/gekko-gc-emu/
 */

#ifndef COMMON_HASH_CONTAINER_H_
#define COMMON_HASH_CONTAINER_H_

#include <map>
#include "common.h"

/// Hash container generic interface - Don't use directly, use a derived class
template <class HashType, class ValueType> class HashContainer {
    /**
     * Add (or update if already exists) a value at the specified hash in the container
     * @param hash Hash to use
     * @param value Value to update at given hash in the container
     */
    ValueType* Update(HashType hash, ValueType value);

    /**
     * Remove a hash entry in the hash container
     * @param hash Hash value of entry to remove
     */
    void Remove(HashType hash);
    
    /**
     * Fetch the value at at the given hash from the hash container
     * @param hash Hash value of entry to fetch
     * @return Pointer to value stored at hash location on success (index was found), otherwise NULL
     */
    ValueType* FetchFromHash(HashType hash);

    /**
     * Fetch the value at at the given integer index from the hash container
     * @param hash Hash value of entry to fetch
     * @return Pointer to value stored at hash location on success (index was found), otherwise NULL
     */
    ValueType* FetchFromIndex(int index);

    /**
     * Get the size of the hash container
     * @return Number of elements in the hash container
     */
    int Size();
};

/// Hash container implemented using STL map
template <class HashType, class ValueType> class HashContainer_STLMap : 
    public HashContainer<HashType, ValueType> {

public:
    HashContainer_STLMap() {
    }
    ~HashContainer_STLMap() {
    }

    ValueType* Update(HashType hash, ValueType value) {
        map_[hash] = value;
        return &map_[hash];
    }

    void Remove(HashType hash) {
        map_.erase(hash);
    }

    ValueType* FetchFromHash(HashType hash) {
        typename std::map<HashType, ValueType>::iterator itr = map_.find(hash);
        if (itr == map_.end()) {
            return NULL;
        }
        return &itr->second;
    }

    ValueType* FetchFromIndex(int index) {
	    typename std::map<HashType, ValueType>::iterator itr = map_.begin();
        int i = 0;
 	    for (; i < index; ++i) {
 	        ++itr;
        }
        if (i < index) {
            return NULL;
        }
        return &itr->second;
    }

    int Size() {
        return static_cast<int>(map_.size());
    }

private:
    std::map<HashType, ValueType> map_;

    DISALLOW_COPY_AND_ASSIGN(HashContainer_STLMap);
};

#endif // COMMON_HASH_CONTAINER_H_