Line Code
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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
#include "CaloOnlineTools/HcalOnlineDb/interface/ConfigurationDatabaseImpl.hh"
#include "CaloOnlineTools/HcalOnlineDb/interface/ConfigurationDatabase.hh"
#include "CaloOnlineTools/HcalOnlineDb/interface/ConfigurationItemNotFoundException.hh"
#include "CaloOnlineTools/HcalOnlineDb/interface/PluginManager.hh"
#include <cctype>

#ifdef HAVE_XDAQ
#include <toolbox/string.h>
#else
#include "CaloOnlineTools/HcalOnlineDb/interface/xdaq_compat.h"  // Includes typedef for log4cplus::Logger
#endif

namespace hcal {

  ConfigurationDatabase::ConfigurationDatabase(log4cplus::Logger logger) : m_logger(logger) {
    m_implementation = nullptr;
  }

  void ConfigurationDatabase::open(const std::string& accessor) noexcept(false) {
    if (m_implementationOptions.empty()) {
      std::vector<hcal::AbstractPluginFactory*> facts;
      hcal::PluginManager::getFactories("hcal::ConfigurationDatabaseImpl", facts);
      for (std::vector<hcal::AbstractPluginFactory*>::iterator j = facts.begin(); j != facts.end(); j++)
        m_implementationOptions.push_back(dynamic_cast<hcal::ConfigurationDatabaseImpl*>((*j)->newInstance()));
    }

    std::map<std::string, std::string> params;
    std::string user, host, method, db, port, password;
    ConfigurationDatabaseImpl::parseAccessor(accessor, method, host, port, user, db, params);

    if (m_implementation == nullptr || !m_implementation->canHandleMethod(method)) {
      m_implementation = nullptr;
      std::vector<ConfigurationDatabaseImpl*>::iterator j;
      for (j = m_implementationOptions.begin(); j != m_implementationOptions.end(); j++)
        if ((*j)->canHandleMethod(method)) {
          m_implementation = *j;
          break;
        }
    }

    if (m_implementation == nullptr)
      XCEPT_RAISE(hcal::exception::ConfigurationDatabaseException,
                  toolbox::toString("Unable to open database using '%s'", accessor.c_str()));
    m_implementation->setLogger(m_logger);
    m_implementation->connect(accessor);
  }

  void ConfigurationDatabase::close() {
    if (m_implementation != nullptr)
      m_implementation->disconnect();
  }

  unsigned int ConfigurationDatabase::getFirmwareChecksum(const std::string& board,
                                                          unsigned int version) noexcept(false) {
    if (m_implementation == nullptr) {
      XCEPT_RAISE(hcal::exception::ConfigurationDatabaseException, "Database connection not open");
    }

    return m_implementation->getFirmwareChecksum(board, version);
  }

  ConfigurationDatabase::ApplicationConfig ConfigurationDatabase::getApplicationConfig(const std::string& tag,
                                                                                       const std::string& classname,
                                                                                       int instance) noexcept(false) {
    if (m_implementation == nullptr) {
      XCEPT_RAISE(hcal::exception::ConfigurationDatabaseException, "Database connection not open");
    }
    return m_implementation->getApplicationConfig(tag, classname, instance);
  }

  std::string ConfigurationDatabase::getConfigurationDocument(const std::string& tag) noexcept(false) {
    if (m_implementation == nullptr) {
      XCEPT_RAISE(hcal::exception::ConfigurationDatabaseException, "Database connection not open");
    }
    return m_implementation->getConfigurationDocument(tag);
  }

  void ConfigurationDatabase::getFirmwareMCS(const std::string& board,
                                             unsigned int version,
                                             std::vector<std::string>& mcsLines) noexcept(false) {
    if (m_implementation == nullptr) {
      XCEPT_RAISE(hcal::exception::ConfigurationDatabaseException, "Database connection not open");
    }

    m_implementation->getFirmwareMCS(board, version, mcsLines);
  }

  void ConfigurationDatabase::getLUTs(const std::string& tag,
                                      int crate,
                                      int slot,
                                      std::map<LUTId, LUT>& LUTs) noexcept(false) {
    if (m_implementation == nullptr) {
      XCEPT_RAISE(hcal::exception::ConfigurationDatabaseException, "Database connection not open");
    }

    std::map<unsigned int, std::string> results;

    m_implementation->getLUTs(tag, crate, slot, LUTs);

    if (LUTs.empty()) {
      XCEPT_RAISE(hcal::exception::ConfigurationItemNotFoundException,
                  toolbox::toString("Not enough found (%d)", LUTs.size()));
    }
  }

  void ConfigurationDatabase::getLUTChecksums(const std::string& tag,
                                              std::map<LUTId, MD5Fingerprint>& checksums) noexcept(false) {
    checksums.clear();

    if (m_implementation == nullptr) {
      XCEPT_RAISE(hcal::exception::ConfigurationDatabaseException, "Database connection not open");
    }

    m_implementation->getLUTChecksums(tag, checksums);
  }

  void ConfigurationDatabase::getPatterns(const std::string& tag,
                                          int crate,
                                          int slot,
                                          std::map<PatternId, HTRPattern>& patterns) noexcept(false) {
    if (m_implementation == nullptr) {
      XCEPT_RAISE(hcal::exception::ConfigurationDatabaseException, "Database connection not open");
    }

    m_implementation->getPatterns(tag, crate, slot, patterns);

    if (patterns.empty()) {
      XCEPT_RAISE(hcal::exception::ConfigurationItemNotFoundException,
                  toolbox::toString("Not found '$s',%d,%d", tag.c_str(), crate, slot));
    }
  }

  void ConfigurationDatabase::getRBXdata(const std::string& tag,
                                         const std::string& rbx,
                                         RBXdatumType dtype,
                                         std::map<RBXdatumId, RBXdatum>& RBXdata) noexcept(false) {
    if (m_implementation == nullptr) {
      XCEPT_RAISE(hcal::exception::ConfigurationDatabaseException, "Database connection not open");
    }

    m_implementation->getRBXdata(tag, rbx, dtype, RBXdata);
  }

  void ConfigurationDatabase::getRBXpatterns(const std::string& tag,
                                             const std::string& rbx,
                                             std::map<RBXdatumId, RBXpattern>& patterns) noexcept(false) {
    if (m_implementation == nullptr) {
      XCEPT_RAISE(hcal::exception::ConfigurationDatabaseException, "Database connection not open");
    }

    m_implementation->getRBXpatterns(tag, rbx, patterns);
  }

  void ConfigurationDatabase::getZSThresholds(const std::string& tag,
                                              int crate,
                                              int slot,
                                              std::map<ZSChannelId, int>& thresholds) noexcept(false) {
    if (m_implementation == nullptr) {
      XCEPT_RAISE(hcal::exception::ConfigurationDatabaseException, "Database connection not open");
    }

    m_implementation->getZSThresholds(tag, crate, slot, thresholds);
  }

  void ConfigurationDatabase::getHLXMasks(const std::string& tag,
                                          int crate,
                                          int slot,
                                          std::map<FPGAId, HLXMasks>& m) noexcept(false) {
    if (m_implementation == nullptr) {
      XCEPT_RAISE(hcal::exception::ConfigurationDatabaseException, "Database connection not open");
    }

    m_implementation->getHLXMasks(tag, crate, slot, m);
  }

  bool ConfigurationDatabase::FPGAId::operator<(const FPGAId& a) const {
    if (crate < a.crate)
      return true;
    if (crate > a.crate)
      return false;
    if (slot < a.slot)
      return true;
    if (slot > a.slot)
      return false;
    if (fpga < a.fpga)
      return true;
    if (fpga > a.fpga)
      return false;
    return false;  // equal is not less
  }
  bool ConfigurationDatabase::LUTId::operator<(const LUTId& a) const {
    if (crate < a.crate)
      return true;
    if (crate > a.crate)
      return false;
    if (slot < a.slot)
      return true;
    if (slot > a.slot)
      return false;
    if (fpga < a.fpga)
      return true;
    if (fpga > a.fpga)
      return false;
    if (fiber_slb < a.fiber_slb)
      return true;
    if (fiber_slb > a.fiber_slb)
      return false;
    if (channel < a.channel)
      return true;
    if (channel > a.channel)
      return false;
    if (lut_type < a.lut_type)
      return true;
    if (lut_type > a.lut_type)
      return false;
    return false;  // equal is not less
  }
  bool ConfigurationDatabase::PatternId::operator<(const PatternId& a) const {
    if (crate < a.crate)
      return true;
    if (crate > a.crate)
      return false;
    if (slot < a.slot)
      return true;
    if (slot > a.slot)
      return false;
    if (fpga < a.fpga)
      return true;
    if (fpga > a.fpga)
      return false;
    if (fiber < a.fiber)
      return true;
    if (fiber > a.fiber)
      return false;
    return false;  // equal is not less
  }
  bool ConfigurationDatabase::ZSChannelId::operator<(const ZSChannelId& a) const {
    if (crate < a.crate)
      return true;
    if (crate > a.crate)
      return false;
    if (slot < a.slot)
      return true;
    if (slot > a.slot)
      return false;
    if (fpga < a.fpga)
      return true;
    if (fpga > a.fpga)
      return false;
    if (fiber < a.fiber)
      return true;
    if (fiber > a.fiber)
      return false;
    if (channel < a.channel)
      return true;
    if (channel > a.channel)
      return false;
    return false;  // equal is not less
  }
  bool ConfigurationDatabase::RBXdatumId::operator<(const RBXdatumId& a) const {
    if (rm < a.rm)
      return true;
    if (rm > a.rm)
      return false;
    if (card < a.card)
      return true;
    if (card > a.card)
      return false;
    if (qie_or_gol < a.qie_or_gol)
      return true;
    if (qie_or_gol > a.qie_or_gol)
      return false;
    if (dtype < a.dtype)
      return true;
    if (dtype > a.dtype)
      return false;
    if (ltype < a.ltype)
      return true;
    if (ltype > a.ltype)
      return false;
    return false;  // equal is not less
  }

}  // namespace hcal