blob: e53afab980d647fc8c5c55aff7c9893ef4953083 [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 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
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
17#include <iostream>
18#include <utils/threads.h>
19#include "btree.hpp"
20#include "MtpDebug.h"
21
22// Constructor
that9e0593e2014-10-08 00:01:24 +020023Tree::Tree(MtpObjectHandle handle, MtpObjectHandle parent, const std::string& name)
24 : Node(handle, parent, name), alreadyRead(false) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040025}
26
27// Destructor
28Tree::~Tree() {
that9e0593e2014-10-08 00:01:24 +020029 for (std::map<MtpObjectHandle, Node*>::iterator it = entries.begin(); it != entries.end(); ++it)
30 delete it->second;
Ethan Yonker726a0202014-12-16 20:01:38 -060031 entries.clear();
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040032}
33
34int Tree::getCount(void) {
that9e0593e2014-10-08 00:01:24 +020035 int count = entries.size();
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040036 MTPD("node count: %d\n", count);
37 return count;
38}
39
that9e0593e2014-10-08 00:01:24 +020040void Tree::addEntry(Node* node) {
41 if (node->Mtpid() == 0) {
42 MTPE("Tree::addEntry: not adding node with 0 handle.\n");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040043 return;
44 }
that9e0593e2014-10-08 00:01:24 +020045 if (node->Mtpid() == node->getMtpParentId()) {
46 MTPE("Tree::addEntry: not adding node with handle %u == parent.\n", node->Mtpid());
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040047 return;
48 }
that9e0593e2014-10-08 00:01:24 +020049 entries[node->Mtpid()] = node;
50}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040051
that9e0593e2014-10-08 00:01:24 +020052Node* Tree::findEntryByName(std::string name) {
53 for (std::map<MtpObjectHandle, Node*>::iterator it = entries.begin(); it != entries.end(); ++it)
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040054 {
that9e0593e2014-10-08 00:01:24 +020055 Node* node = it->second;
56 if (node->getName().compare(name) == 0 && node->Mtpid() > 0)
57 return node;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040058 }
that9e0593e2014-10-08 00:01:24 +020059 return NULL;
60}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040061
that9e0593e2014-10-08 00:01:24 +020062Node* Tree::findNode(MtpObjectHandle handle) {
63 std::map<MtpObjectHandle, Node*>::iterator it = entries.find(handle);
64 if (it != entries.end())
65 return it->second;
66 return NULL;
67}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040068
that9e0593e2014-10-08 00:01:24 +020069void Tree::getmtpids(MtpObjectHandleList* mtpids) {
70 for (std::map<MtpObjectHandle, Node*>::iterator it = entries.begin(); it != entries.end(); ++it)
71 mtpids->push_back(it->second->Mtpid());
72}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040073
that9e0593e2014-10-08 00:01:24 +020074void Tree::deleteNode(MtpObjectHandle handle) {
75 std::map<MtpObjectHandle, Node*>::iterator it = entries.find(handle);
76 if (it != entries.end()) {
77 delete it->second;
78 entries.erase(it);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040079 }
80}