-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroidFiler.cpp
More file actions
89 lines (69 loc) · 2.35 KB
/
Copy pathAndroidFiler.cpp
File metadata and controls
89 lines (69 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
AndroidLogger: Android Logger plugin for Notepad++
Copyright (C) 2015 Simbaba at Najing <zhaoxi.du@gmail.com>
******************************************************
Thanks for GedcomLexer & NppFtp plugin source code.
******************************************************
This program 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 2
of the License, or (at your option) any later version.
This program 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.
*/
#include "AndroidDevice.h"
#include "FilerPanel.h"
DeviceCb s_filer_callback;
bool onFilerStart(DeviceBase *device) {
return true;
}
bool onFilerLoop(DeviceBase *device) {
AndroidFiler *self = ((AndroidFiler*)device);
FilerPanel *filer = (FilerPanel*)(self->mLoopArgs);
std::string lines;
std::string line;
self->getLine(line);
while(!line.empty()) {
lines += line;
self->getLine(line);
}
int size = lines.size();
FileList *files = new FileList(lines, filer->currentDir());
::SendMessage(filer->GetHWND(), WM_UPDATE_FILER, (WPARAM)files, (LPARAM)size);
return false;
}
void onFilerExit(DeviceBase *device) {
AndroidFiler *self = ((AndroidFiler*)device);
self->release();
}
bool AndroidFiler::listDir(const char* dir, void *args) {
std::string cmd("shell:ls -l ");
cmd += dir;
mLoopArgs = args;
if ( !connect() ) {
return false;
}
mIsContinue = true;
mSocket->SetTimeOut(0, 10);
std::string msg = formAdbRequest(cmd.c_str());
mSocket->SendLine(msg);
if (checkResult(mSocket, ID_OKAY)) {
startLoop();
return true;
}
return false;
}
void AndroidFiler::release() {
DeviceBase::release();
}
AndroidFiler::AndroidFiler():DeviceBase(){
s_filer_callback.device = this;
s_filer_callback.onExit = onFilerExit;
s_filer_callback.onLoop = onFilerLoop;
s_filer_callback.onStart= onFilerStart;
setDeviceCb(&s_filer_callback);
}
AndroidFiler::~AndroidFiler() {
}