/* Copyright (C) 2021 Free Software Foundation, Inc. Contributed by Oracle. This file is part of GNU Binutils. 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 3, 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. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ /* * Index Map2D implementation. * * Index Map2D is dynamic two dimensional array */ #ifndef _DBE_INDEXMAP2D_H #define _DBE_INDEXMAP2D_H #include #include #include template class IndexMap2D : public Map2D { public: IndexMap2D (); ~IndexMap2D (); void put (Key1_t key1, Key2_t key2, Value_t val); Value_t get (Key1_t key1, Key2_t key2); Value_t get (Key1_t key1, Key2_t key2, typename Map2D::Relation rel); Value_t remove (Key1_t key1, Key2_t key2); private: Vector*> *map1; }; template IndexMap2D::IndexMap2D () { map1 = new Vector*>; } template IndexMap2D::~IndexMap2D () { map1->destroy (); delete map1; } template void IndexMap2D::put (Key1_t key1, Key2_t key2, Value_t val) { if (key1 < 0 || key2 < 0) return; Vector *map2 = NULL; if (key1 < map1->size ()) map2 = map1->fetch ((int) key1); if (map2 == NULL) { map2 = new Vector; map1->store ((int) key1, map2); } map2->store ((int) key2, val); } template Value_t IndexMap2D::get (Key1_t key1, Key2_t key2) { if (key1 < 0 || key1 >= map1->size () || key2 < 0) return (Value_t) 0; Vector *map2 = map1->fetch ((int) key1); if (map2 == NULL || key2 >= map2->size ()) return (Value_t) 0; return map2->fetch ((int) key2); } template Value_t IndexMap2D::get (Key1_t key1, Key2_t key2, typename Map2D::Relation rel) { if (rel != Map2D::REL_EQEQ) return (Value_t) 0; return get (key1, key2); } template Value_t IndexMap2D::remove (Key1_t key1, Key2_t key2) { if (key1 < 0 || key1 >= map1->size () || key2 < 0) return (Value_t) 0; Vector *map2 = map1->fetch ((int) key1); if (map2 == NULL || key2 >= map2->size ()) return (Value_t) 0; Value_t res = map2->fetch ((int) key2); map2->store ((int) key2, (Value_t) 0); return res; } #endif