/* * Copyright (C) 2018 Emeric Poupon * * This file is part of LMS. * * LMS 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 of the License, or * (at your option) any later version. * * LMS 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 LMS. If not, see . */ #include "services/database/TrackFeatures.hpp" #include #include #include "services/database/Session.hpp" #include "services/database/Track.hpp" #include "utils/Logger.hpp" #include "IdTypeTraits.hpp" #include "Utils.hpp" namespace Database { TrackFeatures::TrackFeatures(ObjectPtr track, const std::string& jsonEncodedFeatures) : _data {jsonEncodedFeatures}, _track {getDboPtr(track)} { } std::size_t TrackFeatures::getCount(Session& session) { session.checkSharedLocked(); return session.getDboSession().query("SELECT COUNT(*) FROM track_features"); } TrackFeatures::pointer TrackFeatures::find(Session& session, TrackFeaturesId id) { session.checkSharedLocked(); return session.getDboSession().find() .where("id = ?").bind(id) .resultValue(); } TrackFeatures::pointer TrackFeatures::find(Session& session, TrackId trackId) { session.checkSharedLocked(); return session.getDboSession().find() .where("track_id = ?").bind(trackId) .resultValue(); } RangeResults TrackFeatures::find(Session& session, Range range) { session.checkSharedLocked(); auto query {session.getDboSession().query("SELECT id from track_features")}; return execQuery(query, range); } TrackFeatures::pointer TrackFeatures::create(Session& session, ObjectPtr track, const std::string& jsonEncodedFeatures) { session.checkUniqueLocked(); TrackFeatures::pointer res {session.getDboSession().add(std::make_unique(track, jsonEncodedFeatures))}; session.getDboSession().flush(); return res; } FeatureValues TrackFeatures::getFeatureValues(const FeatureName& featureNode) const { FeatureValuesMap featuresValuesMap {getFeatureValuesMap({featureNode})}; return std::move(featuresValuesMap[featureNode]); } FeatureValuesMap TrackFeatures::getFeatureValuesMap(const std::unordered_set& featureNames) const { FeatureValuesMap res; try { std::istringstream iss {_data}; boost::property_tree::ptree root; boost::property_tree::read_json(iss, root); for (const FeatureName& featureName : featureNames) { FeatureValues& featureValues {res[featureName]}; auto node {root.get_child(featureName)}; bool hasChildren = false; for (const auto& child : node.get_child("")) { hasChildren = true; featureValues.push_back(child.second.get_value()); } if (!hasChildren) featureValues.push_back(node.get_value()); } } catch (boost::property_tree::ptree_error& error) { LMS_LOG(DB, ERROR) << "Track " << _track.id() << ": ptree exception: " << error.what(); res.clear(); } return res; } } // namespace Database