blob: 3a5648db08e9cb533df6d4b8a289552a22b1e7a5 [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;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040031}
32
33int Tree::getCount(void) {
that9e0593e2014-10-08 00:01:24 +020034 int count = entries.size();
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040035 MTPD("node count: %d\n", count);
36 return count;
37}
38
that9e0593e2014-10-08 00:01:24 +020039void Tree::addEntry(Node* node) {
40 if (node->Mtpid() == 0) {
41 MTPE("Tree::addEntry: not adding node with 0 handle.\n");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040042 return;
43 }
that9e0593e2014-10-08 00:01:24 +020044 if (node->Mtpid() == node->getMtpParentId()) {
45 MTPE("Tree::addEntry: not adding node with handle %u == parent.\n", node->Mtpid());
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040046 return;
47 }
that9e0593e2014-10-08 00:01:24 +020048 entries[node->Mtpid()] = node;
49}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040050
that9e0593e2014-10-08 00:01:24 +020051Node* Tree::findEntryByName(std::string name) {
52 for (std::map<MtpObjectHandle, Node*>::iterator it = entries.begin(); it != entries.end(); ++it)
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040053 {
that9e0593e2014-10-08 00:01:24 +020054 Node* node = it->second;
55 if (node->getName().compare(name) == 0 && node->Mtpid() > 0)
56 return node;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040057 }
that9e0593e2014-10-08 00:01:24 +020058 return NULL;
59}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040060
that9e0593e2014-10-08 00:01:24 +020061Node* Tree::findNode(MtpObjectHandle handle) {
62 std::map<MtpObjectHandle, Node*>::iterator it = entries.find(handle);
63 if (it != entries.end())
64 return it->second;
65 return NULL;
66}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040067
that9e0593e2014-10-08 00:01:24 +020068void Tree::getmtpids(MtpObjectHandleList* mtpids) {
69 for (std::map<MtpObjectHandle, Node*>::iterator it = entries.begin(); it != entries.end(); ++it)
70 mtpids->push_back(it->second->Mtpid());
71}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040072
that9e0593e2014-10-08 00:01:24 +020073void Tree::deleteNode(MtpObjectHandle handle) {
74 std::map<MtpObjectHandle, Node*>::iterator it = entries.find(handle);
75 if (it != entries.end()) {
76 delete it->second;
77 entries.erase(it);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040078 }
79}