blob: 78b39a7792831c7708b8ac0a831cd029f37f7cd9 [file] [log] [blame]
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001/*
2 * Copyright (C) 2014 TeamWin - bigbiff and Dees_Troy mtp database conversion to C++
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05008 * http://www.apache.org/licenses/LICENSE-2.0
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04009 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040017#include <utils/threads.h>
18#include "btree.hpp"
19#include "MtpDebug.h"
20
that9e0593e2014-10-08 00:01:24 +020021Tree::Tree(MtpObjectHandle handle, MtpObjectHandle parent, const std::string& name)
22 : Node(handle, parent, name), alreadyRead(false) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040023}
24
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040025Tree::~Tree() {
that9e0593e2014-10-08 00:01:24 +020026 for (std::map<MtpObjectHandle, Node*>::iterator it = entries.begin(); it != entries.end(); ++it)
27 delete it->second;
Ethan Yonker726a0202014-12-16 20:01:38 -060028 entries.clear();
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040029}
30
31int Tree::getCount(void) {
that9e0593e2014-10-08 00:01:24 +020032 int count = entries.size();
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050033 MTPD("Tree::getCount::node count: %d\n", count);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040034 return count;
35}
36
that9e0593e2014-10-08 00:01:24 +020037void Tree::addEntry(Node* node) {
38 if (node->Mtpid() == 0) {
39 MTPE("Tree::addEntry: not adding node with 0 handle.\n");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040040 return;
41 }
that9e0593e2014-10-08 00:01:24 +020042 if (node->Mtpid() == node->getMtpParentId()) {
43 MTPE("Tree::addEntry: not adding node with handle %u == parent.\n", node->Mtpid());
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040044 return;
45 }
that9e0593e2014-10-08 00:01:24 +020046 entries[node->Mtpid()] = node;
47}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040048
that9e0593e2014-10-08 00:01:24 +020049Node* Tree::findEntryByName(std::string name) {
50 for (std::map<MtpObjectHandle, Node*>::iterator it = entries.begin(); it != entries.end(); ++it)
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040051 {
that9e0593e2014-10-08 00:01:24 +020052 Node* node = it->second;
53 if (node->getName().compare(name) == 0 && node->Mtpid() > 0)
54 return node;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040055 }
that9e0593e2014-10-08 00:01:24 +020056 return NULL;
57}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040058
that9e0593e2014-10-08 00:01:24 +020059Node* Tree::findNode(MtpObjectHandle handle) {
thata1ad19f2014-11-08 01:18:44 +010060 std::map<MtpObjectHandle, Node*>::iterator it = entries.find(handle);
that9e0593e2014-10-08 00:01:24 +020061 if (it != entries.end())
62 return it->second;
63 return NULL;
64}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040065
that9e0593e2014-10-08 00:01:24 +020066void Tree::getmtpids(MtpObjectHandleList* mtpids) {
67 for (std::map<MtpObjectHandle, Node*>::iterator it = entries.begin(); it != entries.end(); ++it)
68 mtpids->push_back(it->second->Mtpid());
69}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040070
that9e0593e2014-10-08 00:01:24 +020071void Tree::deleteNode(MtpObjectHandle handle) {
thata1ad19f2014-11-08 01:18:44 +010072 std::map<MtpObjectHandle, Node*>::iterator it = entries.find(handle);
that9e0593e2014-10-08 00:01:24 +020073 if (it != entries.end()) {
74 delete it->second;
75 entries.erase(it);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040076 }
77}