在获得比对设备序列号后,findAttachedDevice就会跟提供的序列号进行比对,如果吻合就返回给调用者” 代码8-6-3 AdbBackend - waitForConnection”了。而AdbBackend的waitForConnection在获得这个Device实例后就会把它传到AdbChimpDevice的构造函数中来构造AdbChimpDevice的实例对象。我们看看它的构造函数是怎么做的:
68 public AdbChimpDevice(IDevice device)
69 {
70 this.device = device;
71 this.manager = createManager("127.0.0.1", 12345);
72
73 Preconditions.checkNotNull(this.manager);
74 }
代码8-6-8 AdbChimpDevice构造函数
如前面一直强调的,AdbChimpDevice是一个很重要的类,它是一个高层抽象的设备对象,它组合了代表通过monkey控制的设备ChimpManager和通过ADB控制的设备Device。这个组合关系就是通过上面这个AdnbChimpDevice构造函数体现出来的了。第70行组合的就是Device设备,71行组合的就是ChimpManager实例。只是Device实例是在启动设备监控线程DeviceMonitor中就已经实例化创建好的,而ChimpManager是在这个时候才进行创建的。创建的时候指定的是本机回环IP地址”127.0.0.1”,端口指定是monkey本地转发端口12345
创建ChimpManager的调用createManager的代码有点长,我们会分两部分来进行分析,其中第一部分是启动Monkey,第二部分是创建ChimpManager。我们先看第一部分:
123 private ChimpManager createManager(String address, int port) {
124 try {
125 this.device.createForward(port, port);
126 } catch (TimeoutException e) {
127 LOG.log(Level.SEVERE, "Timeout creating adb port forwarding", e);
128 return null;
129 } catch (AdbCommandRejectedException e) {
130 LOG.log(Level.SEVERE, "Adb rejected adb port forwarding command: " + e.getMessage(), e);
131 return null;
132 } catch (IOException e) {
133 LOG.log(Level.SEVERE, "Unable to create adb port forwarding: " + e.getMessage(), e);
134 return null;
135 }
136
137 String command = "monkey --port " + port;
138 executeAsyncCommand(command, new LoggingOutputReceiver(LOG, Level.FINE));
139
140 try
141 {
142 Thread.sleep(1000L);
143 } catch (InterruptedException e) {
144 LOG.log(Level.SEVERE, "Unable to sleep", e);
145 }
146 InetAddress addr;
147 try
148 {
149 addr = InetAddress.getByName(address);
150 } catch (UnknownHostException e) {
151 LOG.log(Level.SEVERE, "Unable to convert address into InetAddress: " + address, e);
152 return null;
153 }
...
}
代码8-6-9 AdbChimpDevice - createManager之启动monkey
createManager首先做的事情就是去把目标设备端的monkey服务进程给启动起来接收MonkeyRunner测试脚本发送过去的请求。代码流程如下所示:
- 125行: 设置本机到目标机器monkey进程监听端口的端口转发,调用的是Device的createForward的方法,这个方法我们在下一章描述Device类详解的时候会进行分析。这里只需要它基本可以看作是在命令行发送”adb forward 12345 12345“来完成从本机12345端口到远程monkey监控的12345端口的转发就好了。设置好端口转发后往下的代码就能直接连接本机的12345端口,这就等同于连上的是远端目标设备中monkey监听的12345端口了
- 139-138行: 设置好monkey端口转发后,createManager方法就会往ADB服务器发送shell命令”monkey --port 12345”来启动monkey去监听端口12345。发送adb shell命令使用的方法是createAsyncCommand方法,其实该方法没有什么好分析的,因为它把发送命令请求直接转发给Device类的executeShellCommand而已,而executeShellCommand这个方法我们也是在下一章会进行分析
- 149行: 将本机监听地址“127.0.0.1”转换成InetAddress对象格式,这样往下创建Socket连接的时候才能直接使用
createManager之启动monkey到了这里就完成了,往下我们继续看第二部分createManager之创建ChimpManager:
123 private ChimpManager createManager(String address, int port) {
... //启动monkey代码略
159 boolean success = false;
160 ChimpManager mm = null;
161 long start = System.currentTimeMillis();
162
163 while (!success) {
164 long now = System.currentTimeMillis();
165 long diff = now - start;
166 if (diff > 30000L) {
167 LOG.severe("Timeout while trying to create chimp mananger");
168 return null;
169 }
170 try
171 {
172 Thread.sleep(1000L);
173 } catch (InterruptedException e) {
174 LOG.log(Level.SEVERE, "Unable to sleep", e);
175 }
176 Socket monkeySocket;
177 try
178 {
179 monkeySocket = new Socket(addr, port);
180 } catch (IOException e) {
181 LOG.log(Level.FINE, "Unable to connect socket", e);
182 success = false; }
183 continue;
184
185 try
186 {
187 mm = new ChimpManager(monkeySocket);
188 } catch (IOException e) {
189 LOG.log(Level.SEVERE, "Unable to open writer and reader to socket"); }
190 continue;
191
192 try
193 {
194 mm.wake();
195 } catch (IOException e) {
196 LOG.log(Level.FINE, "Unable to wake up device", e);
197 success = false; }
198 continue;
199
200 success = true;
201 }
202
203 return mm;
}
代码8-6-10 AdbChimpDevice - createManager之创建ChimpManager
其实上面一堆代码无非是在一个循环中做了3个事情:
- 179行: 创建连接到本机monkey转发端口的Socket对象
- 187行: 根据该Socket对象构造ChimpManager实例,ChimpManager的详细分析会放到下一章的描述ChimpManager类详解的时候进行分析
- 194行: 往monkey发送命令去唤醒休眠屏幕,如果屏幕是在休眠状态的话。wake的原理也会在下一章进行分析
分析到这里这一小节的目标就已经达到了,我们已经学习到了monkey服务进程是如何在脚本中通过调用MonkeyRunner的waitForConnection方法启动起来的了,同时我们也学习到了AdbChimpDevice和ChimpManager这两个关键类创建的相关知识点。
下一小节我们来尝试把本章学到的内容进行一个总结。