blob: 6fe0ee3e865a2f095f35cf0b1842ef0c27ad4fcb [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
18#include <string>
19#include <fcntl.h>
20#include <sys/wait.h>
21#include <pthread.h>
22#include <utils/Errors.h>
23#include <utils/threads.h>
24#include "MtpTypes.h"
25#include "MtpPacket.h"
26#include "MtpDataPacket.h"
27#include "MtpDatabase.h"
28#include "MtpRequestPacket.h"
29#include "MtpResponsePacket.h"
30#include "mtp_MtpDatabase.hpp"
31#include "mtp_MtpServer.hpp"
32#include "twrpMtp.hpp"
33#include "MtpDebug.h"
34
35#ifdef TWRPMTP
36static void usage(std::string prg) {
37 printf("Usage: %s <OPTIONS>\n", prg.c_str());
38 printf("Options:\n");
39 printf("\t-h, --help\t\tShow Usage\n");
40 printf("\t-s1, --storage1 /path/to/dir\t\tDestination to first storage directory\n");
41 printf("\t-s2, --storage2 /path/to/dir\t\tDestination to first storage directory\n");
42 printf("\t-sN, --storageN /path/to/dir\t\tDestination to first storage directory\n");
43}
44
45int main(int argc, char* argv[]) {
46 printf("argc: %d\n", argc);
47 if (argc < 2) {
48 usage(argv[0]);
49 return 1;
50 }
51
52 std::vector <std::string> storages;
53
54 for (int i = 1; i < argc; ++i) {
55 std::string arg = argv[i];
56 if ((arg == "-h") || (arg == "--help")) {
57 usage(argv[0]);
58 }
59 else {
60 storages.push_back(arg);
61 }
62 }
63 printf("starting\n");
64 twmtp_MtpServer* mtp = new twmtp_MtpServer();
65 mtp->set_storages(storages);
66 mtp->start();
67 return 0;
68}
69#endif //def TWRPMTP
70
Ethan Yonker6d154c42014-09-03 14:19:43 -050071twrpMtp::twrpMtp(int debug_enabled = 0) {
72 if (debug_enabled)
73 MtpDebug::enableDebug();
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040074 mtpstorages = new storages;
75}
76
77int twrpMtp::start(void) {
78 MTPI("Starting MTP\n");
79 twmtp_MtpServer *mtp = new twmtp_MtpServer();
80 mtp->set_storages(mtpstorages);
81 mtp->start();
82 return 0;
83}
84
85pthread_t twrpMtp::runserver(void) {
86 pthread_t thread;
87 ThreadPtr mtpptr = &twrpMtp::start;
88 PThreadPtr p = *(PThreadPtr*)&mtpptr;
89 pthread_create(&thread, NULL, p, this);
90 return thread;
91}
92
93void twrpMtp::addStorage(std::string display, std::string path, int mtpid) {
94 s = new storage;
95 s->display = display;
96 s->mount = path;
97 s->mtpid = mtpid;
98 MTPD("twrpMtp mtpid: %d\n", s->mtpid);
99 mtpstorages->push_back(s);
100}