This repository has been archived by the owner on Mar 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 218
/
Telephone.scala
78 lines (66 loc) · 2.44 KB
/
Telephone.scala
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
/*
* Copyright 2013 zhongl
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.zhongl.housemd.duck
import instrument.Instrumentation
import java.net.Socket
import jline.console.ConsoleReader
import com.github.zhongl.yascli.{Shell, PrintOut, Command}
import jline.TerminalFactory
import jline.console.history.FileHistory
import java.io.File
import com.github.zhongl.housemd.command.Last
/**
* Telephone is used by Duck to communicate with HouseMD.
*
* @author <a href="mailto:[email protected]">zhongl<a>
*/
class Telephone(inst: Instrumentation, port: Int, classes: Array[Class[Command]]) extends Runnable {
def run() {
val socket = new Socket("localhost", port)
val reader = new ConsoleReader(socket.getInputStream, socket.getOutputStream)
val history = new FileHistory(new File("/tmp/housemd/.history"))
reader.setHistory(history)
try {
new Shell(name = "housemd", description = "a runtime diagnosis tool of jvm.", reader = reader) {
private val lastCommand = new Last(out)
override protected def commands = Quit :: helpCommand :: lastCommand :: classes
.map { toCommand(_, PrintOut(reader)) }
.toList
override def error(a: Any) {
super.error(a)
if (a.isInstanceOf[Throwable]) lastCommand.keep(a.asInstanceOf[Throwable])
}
} main (Array.empty[String])
} finally {
TerminalFactory.reset()
history.flush()
socket.shutdownOutput()
socket.shutdownInput()
socket.close()
}
}
private def toCommand(c: Class[Command], out: PrintOut) = {
val I = classOf[Instrumentation]
val O = classOf[PrintOut]
val constructors = c.getConstructors
val args = constructors(0).getParameterTypes map {
case I => inst
case O => out
case x => throw new IllegalStateException("Unsupport parameter type: " + x)
}
constructors(0).newInstance(args: _*).asInstanceOf[Command]
}
}