3 /// bjdwp command line tool
7 Copyright (C) 2008-2009, Nicolas VIVIEN
8 Copyright (C) 2005-2010, Net Direct Inc. (http://www.netdirect.ca/)
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 See the GNU General Public License in the COPYING file at the
20 root directory of this project for more details.
24 #include <barry/barry.h>
30 using namespace Barry
;
33 void printMessage(const std::string
&message
);
39 const char *Version
= Barry::Version(major
, minor
);
42 << "bjdwp - Command line USB Blackberry JDWP\n"
43 << " Copyright 2008-2009, Nicolas VIVIEN.\n"
44 << " Using: " << Version
<< "\n"
47 << " -p pin PIN of device to talk with\n"
48 << " If only one device is plugged in, this flag is optional\n"
49 << " -P pass Simplistic method to specify device password\n"
50 << " -v Dump protocol data during operation\n"
54 << " <address> Interface\n"
55 << " <port> Listen port\n"
60 int main(int argc
, char *argv
[], char *envp
[])
66 bool data_dump
= false;
68 vector
<string
> params
;
71 // process command line options
73 int cmd
= getopt(argc
, argv
, "hp:P:v");
79 case 'p': // Blackberry PIN
80 pin
= strtoul(optarg
, NULL
, 16);
83 case 'P': // Device password
87 case 'v': // data dump on
102 cerr
<< "missing command" << endl
;
107 // Fetch address & port arguments
108 char *address
= argv
[0];
109 int port
= atoi(argv
[1]);
112 // Initialize the barry library. Must be called before
114 Barry::Init(data_dump
);
116 // Probe the USB bus for Blackberry devices and display.
117 // If user has specified a PIN, search for it in the
118 // available device list here as well
120 int activeDevice
= probe
.FindActive(pin
);
121 if( activeDevice
== -1 ) {
122 cerr
<< "No device selected, or PIN not found" << endl
;
126 Barry::Controller
con(probe
.Get(activeDevice
));
127 Barry::Mode::JVMDebug
jvmdebug(con
);
129 // Start JDW daemon...
130 //---------------------
132 // Create JDWP server and configure
133 JDWP::JDWServer
server(jvmdebug
, address
, port
);
136 server
.SetPasswordDevice(password
);
138 // Redirect console message
139 server
.SetConsoleCallback(&printMessage
);
143 // FIXME - is this needed... couldn't we do a join here?
149 catch( Usb::Error
&ue
) {
150 std::cout
<< endl
; // flush any normal output first
151 std::cerr
<< "Usb::Error caught: " << ue
.what() << endl
;
154 catch( Barry::Error
&se
) {
156 std::cerr
<< "Barry::Error caught: " << se
.what() << endl
;
159 catch( std::exception
&e
) {
161 std::cerr
<< "std::exception caught: " << e
.what() << endl
;
169 void printMessage(const std::string
&message
)
172 const int green
= 32;
175 std::cout
<< esc
<< '[' << green
<< "mJVM>" << esc
<< '[' << blue
<< "m " << message
<< esc
<< "[0m";