annotate base/ById.cpp @ 1768:4fec4527e50e

Remove debug output (by default)
author Chris Cannam
date Thu, 18 Jul 2019 13:28:14 +0100
parents ee7fd2c01d87
children c7e9e63c7bae
rev   line source
Chris@1742 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@1742 2
Chris@1742 3 /*
Chris@1742 4 Sonic Visualiser
Chris@1742 5 An audio file viewer and annotation editor.
Chris@1742 6 Centre for Digital Music, Queen Mary, University of London.
Chris@1742 7
Chris@1742 8 This program is free software; you can redistribute it and/or
Chris@1742 9 modify it under the terms of the GNU General Public License as
Chris@1742 10 published by the Free Software Foundation; either version 2 of the
Chris@1742 11 License, or (at your option) any later version. See the file
Chris@1742 12 COPYING included with this distribution for more information.
Chris@1742 13 */
Chris@1742 14
Chris@1742 15 #include "ById.h"
Chris@1742 16
Chris@1742 17 #include <unordered_map>
Chris@1742 18 #include <typeinfo>
Chris@1742 19
Chris@1768 20 //#define DEBUG_BY_ID 1
Chris@1768 21
Chris@1742 22 int IdAlloc::getNextId()
Chris@1742 23 {
Chris@1742 24 static int nextId = 0;
Chris@1742 25 static QMutex mutex;
Chris@1742 26 QMutexLocker locker(&mutex);
Chris@1742 27 int i = nextId;
Chris@1742 28 if (nextId == INT_MAX) {
Chris@1742 29 nextId = INT_MIN;
Chris@1742 30 } else {
Chris@1742 31 ++nextId;
Chris@1742 32 if (nextId == 0 || nextId == NO_ID) {
Chris@1742 33 throw std::runtime_error("Internal ID limit exceeded!");
Chris@1742 34 }
Chris@1742 35 }
Chris@1742 36 return i;
Chris@1742 37 }
Chris@1742 38
Chris@1742 39 class AnyById::Impl
Chris@1742 40 {
Chris@1742 41 public:
Chris@1742 42 ~Impl() {
Chris@1742 43 QMutexLocker locker(&m_mutex);
Chris@1742 44 bool empty = true;
Chris@1742 45 for (const auto &p: m_items) {
Chris@1742 46 if (p.second && p.second.use_count() > 0) {
Chris@1742 47 empty = false;
Chris@1742 48 break;
Chris@1742 49 }
Chris@1742 50 }
Chris@1742 51 if (!empty) {
Chris@1742 52 SVCERR << "WARNING: ById map is not empty at close; some items have not been released" << endl;
Chris@1742 53 SVCERR << " Unreleased items are:" << endl;
Chris@1742 54 for (const auto &p: m_items) {
Chris@1759 55 auto ptr = p.second;
Chris@1759 56 if (ptr && ptr.use_count() > 0) {
Chris@1759 57 QString message = QString("id #%1: type %2")
Chris@1759 58 .arg(p.first).arg(typeid(*ptr.get()).name());
Chris@1759 59 if (auto qobj = std::dynamic_pointer_cast<QObject>(ptr)) {
Chris@1759 60 message += QString(", object name \"%1\"")
Chris@1759 61 .arg(qobj->objectName());
Chris@1759 62 }
Chris@1759 63 message += QString(", use count %1").arg(ptr.use_count());
Chris@1759 64 SVCERR << " - " << message << endl;
Chris@1742 65 }
Chris@1742 66 }
Chris@1742 67 }
Chris@1742 68 }
Chris@1742 69
Chris@1752 70 int add(std::shared_ptr<WithId> item) {
Chris@1752 71 int id = item->getUntypedId();
Chris@1744 72 if (id == IdAlloc::NO_ID) {
Chris@1752 73 throw std::logic_error("item id should never be NO_ID");
Chris@1744 74 }
Chris@1768 75 #ifdef DEBUG_BY_ID
Chris@1761 76 SVCERR << "ById::add(#" << id << ") of type "
Chris@1761 77 << typeid(*item.get()).name() << endl;
Chris@1768 78 #endif
Chris@1742 79 QMutexLocker locker(&m_mutex);
Chris@1742 80 if (m_items.find(id) != m_items.end()) {
Chris@1742 81 SVCERR << "ById::add: item with id " << id
Chris@1742 82 << " is already recorded (existing item type is "
Chris@1742 83 << typeid(*m_items.find(id)->second.get()).name()
Chris@1742 84 << ", proposed is "
Chris@1742 85 << typeid(*item.get()).name() << ")" << endl;
Chris@1742 86 throw std::logic_error("item id is already recorded in add");
Chris@1742 87 }
Chris@1742 88 m_items[id] = item;
Chris@1752 89 return id;
Chris@1742 90 }
Chris@1742 91
Chris@1742 92 void release(int id) {
Chris@1744 93 if (id == IdAlloc::NO_ID) {
Chris@1744 94 return;
Chris@1744 95 }
Chris@1768 96 #ifdef DEBUG_BY_ID
Chris@1761 97 SVCERR << "ById::release(#" << id << ")" << endl;
Chris@1768 98 #endif
Chris@1742 99 QMutexLocker locker(&m_mutex);
Chris@1742 100 if (m_items.find(id) == m_items.end()) {
Chris@1742 101 SVCERR << "ById::release: unknown item id " << id << endl;
Chris@1742 102 throw std::logic_error("unknown item id in release");
Chris@1742 103 }
Chris@1742 104 m_items.erase(id);
Chris@1742 105 }
Chris@1742 106
Chris@1742 107 std::shared_ptr<WithId> get(int id) const {
Chris@1744 108 if (id == IdAlloc::NO_ID) {
Chris@1744 109 return {}; // this id cannot be added: avoid locking
Chris@1744 110 }
Chris@1742 111 QMutexLocker locker(&m_mutex);
Chris@1742 112 const auto &itr = m_items.find(id);
Chris@1742 113 if (itr != m_items.end()) {
Chris@1742 114 return itr->second;
Chris@1742 115 } else {
Chris@1742 116 return {};
Chris@1742 117 }
Chris@1742 118 }
Chris@1742 119
Chris@1742 120 private:
Chris@1742 121 mutable QMutex m_mutex;
Chris@1742 122 std::unordered_map<int, std::shared_ptr<WithId>> m_items;
Chris@1742 123 };
Chris@1742 124
Chris@1752 125 int
Chris@1752 126 AnyById::add(std::shared_ptr<WithId> item)
Chris@1742 127 {
Chris@1752 128 return impl().add(item);
Chris@1742 129 }
Chris@1742 130
Chris@1742 131 void
Chris@1742 132 AnyById::release(int id)
Chris@1742 133 {
Chris@1742 134 impl().release(id);
Chris@1742 135 }
Chris@1742 136
Chris@1742 137 std::shared_ptr<WithId>
Chris@1742 138 AnyById::get(int id)
Chris@1742 139 {
Chris@1742 140 return impl().get(id);
Chris@1742 141 }
Chris@1742 142
Chris@1742 143 AnyById::Impl &
Chris@1742 144 AnyById::impl()
Chris@1742 145 {
Chris@1742 146 static Impl impl;
Chris@1742 147 return impl;
Chris@1742 148 }