JAL-3518 pull up closeViewer() and external viewer process monitor
[jalview.git] / src / jalview / ext / pymol / PymolManager.java
1 package jalview.ext.pymol;
2
3 import java.io.BufferedReader;
4 import java.io.File;
5 import java.io.IOException;
6 import java.io.InputStream;
7 import java.io.InputStreamReader;
8 import java.io.PrintWriter;
9 import java.net.HttpURLConnection;
10 import java.net.SocketException;
11 import java.net.URL;
12 import java.nio.file.Paths;
13 import java.util.ArrayList;
14 import java.util.List;
15
16 import jalview.bin.Cache;
17 import jalview.gui.Preferences;
18 import jalview.structure.StructureCommand;
19 import jalview.structure.StructureCommandI;
20
21 public class PymolManager
22 {
23   private static final int RPC_REPLY_TIMEOUT_MS = 15000;
24
25   private static final int CONNECTION_TIMEOUT_MS = 100;
26
27   private static final String POST1 = "<methodCall><methodName>";
28
29   private static final String POST2 = "</methodName><params>";
30
31   private static final String POST3 = "</params></methodCall>";
32
33   private Process pymolProcess;
34
35   private int pymolXmlRpcPort;
36
37   /**
38    * Returns a list of paths to try for the PyMOL executable. Any user
39    * preference is placed first, otherwise 'standard' paths depending on the
40    * operating system.
41    * 
42    * @return
43    */
44   public static List<String> getPymolPaths()
45   {
46     return getPymolPaths(System.getProperty("os.name"));
47   }
48
49   /**
50    * Returns a list of paths to try for the PyMOL executable. Any user
51    * preference is placed first, otherwise 'standard' paths depending on the
52    * operating system.
53    * 
54    * @param os
55    *          operating system as reported by environment variable
56    *          {@code os.name}
57    * @return
58    */
59   protected static List<String> getPymolPaths(String os)
60   {
61     List<String> pathList = new ArrayList<>();
62   
63     String userPath = Cache
64             .getDefault(Preferences.PYMOL_PATH, null);
65     if (userPath != null)
66     {
67       pathList.add(userPath);
68     }
69   
70     /*
71      * add default installation paths
72      */
73     String pymol = "PyMOL";
74     if (os.startsWith("Linux"))
75     {
76       pathList.add("/usr/local/pymol/bin/" + pymol);
77       pathList.add("/usr/local/bin/" + pymol);
78       pathList.add("/usr/bin/" + pymol);
79       pathList.add(System.getProperty("user.home") + "/opt/bin/" + pymol);
80     }
81     else if (os.startsWith("Windows"))
82     {
83       // todo Windows installation path(s)
84     }
85     else if (os.startsWith("Mac"))
86     {
87       pathList.add("/Applications/PyMOL.app/Contents/MacOS/" + pymol);
88     }
89     return pathList;
90   }
91
92   public boolean isPymolLaunched()
93   {
94     // TODO pull up generic methods for external viewer processes
95     boolean launched = false;
96     if (pymolProcess != null)
97     {
98       try
99       {
100         pymolProcess.exitValue();
101         // if we get here, process has ended
102       } catch (IllegalThreadStateException e)
103       {
104         // ok - not yet terminated
105         launched = true;
106       }
107     }
108     return launched;
109   }
110
111   /**
112    * Sends the command to Pymol; if requested, tries to get and return any
113    * replies, else returns null
114    * 
115    * @param command
116    * @param getReply
117    * @return
118    */
119   public List<String> sendCommand(StructureCommandI command,
120           boolean getReply)
121   {
122     String postBody = getPostRequest(command);
123     // System.out.println(postBody);// debug
124     String rpcUrl = "http://127.0.0.1:" + this.pymolXmlRpcPort;
125     PrintWriter out = null;
126     BufferedReader in = null;
127     List<String> result = getReply ? new ArrayList<>() : null;
128
129     try
130     {
131       URL realUrl = new URL(rpcUrl);
132       HttpURLConnection conn = (HttpURLConnection) realUrl.openConnection();
133       conn.setRequestProperty("accept", "*/*");
134       conn.setRequestProperty("content-type", "text/xml");
135       conn.setDoOutput(true);
136       conn.setDoInput(true);
137       out = new PrintWriter(conn.getOutputStream());
138       out.print(postBody);
139       out.flush();
140       int rc = conn.getResponseCode();
141       if (rc != HttpURLConnection.HTTP_OK)
142       {
143         Cache.log.error(
144                 String.format("Error status from %s: %d", rpcUrl, rc));
145         return result;
146       }
147
148       InputStream inputStream = conn.getInputStream();
149       if (getReply)
150       {
151         in = new BufferedReader(new InputStreamReader(inputStream));
152         String line;
153         while ((line = in.readLine()) != null)
154         {
155           result.add(line);
156         }
157       }
158     } catch (SocketException e)
159     {
160       // thrown when 'quit' command is sent to PyMol
161       Cache.log.warn(String.format("Request to %s returned %s", rpcUrl,
162               e.toString()));
163     } catch (Exception e)
164     {
165       e.printStackTrace();
166     } finally
167     {
168       if (out != null)
169       {
170         out.close();
171       }
172     }
173     return result;
174   }
175
176   /**
177    * Builds the body of the XML-RPC format POST request to execute the command
178    * 
179    * @param command
180    * @return
181    */
182   static String getPostRequest(StructureCommandI command)
183   {
184     StringBuilder sb = new StringBuilder(64);
185     sb.append(POST1).append(command.getCommand()).append(POST2);
186     if (command.hasParameters())
187     {
188       for (String p : command.getParameters())
189       {
190         /*
191          * for now assuming all are string - <string> element is optional
192          * refactor in future if other data types needed
193          * https://www.tutorialspoint.com/xml-rpc/xml_rpc_data_model.htm
194          */
195         sb.append("<parameter><value>").append(p)
196                 .append("</value></parameter>");
197       }
198     }
199     sb.append(POST3);
200     return sb.toString();
201   }
202
203   public Process launchPymol()
204   {
205     // todo pull up much of this
206     // Do nothing if already launched
207     if (isPymolLaunched())
208     {
209       return pymolProcess;
210     }
211
212     String error = "Error message: ";
213     for (String pymolPath : getPymolPaths())
214     {
215       try
216       {
217         // ensure symbolic links are resolved
218         pymolPath = Paths.get(pymolPath).toRealPath().toString();
219         File path = new File(pymolPath);
220         // uncomment the next line to simulate Pymol not installed
221         // path = new File(pymolPath + "x");
222         if (!path.canExecute())
223         {
224           error += "File '" + path + "' does not exist.\n";
225           continue;
226         }
227         List<String> args = new ArrayList<>();
228         args.add(pymolPath);
229         args.add("-R"); // https://pymolwiki.org/index.php/RPC
230         ProcessBuilder pb = new ProcessBuilder(args);
231         pymolProcess = pb.start();
232         error = "";
233         break;
234       } catch (Exception e)
235       {
236         // Pymol could not be started using this path
237         error += e.getMessage();
238       }
239     }
240
241     if (pymolProcess != null)
242     {
243       this.pymolXmlRpcPort = getPortNumber();
244       if (pymolXmlRpcPort > 0)
245       {
246         Cache.log.info("PyMOL XMLRPC started on port " + pymolXmlRpcPort);
247       }
248       else
249       {
250         error += "Failed to read PyMOL XMLRPC port number";
251         Cache.log.error(error);
252         pymolProcess.destroy();
253         pymolProcess = null;
254       }
255     }
256
257     return pymolProcess;
258   }
259
260   private int getPortNumber()
261   {
262     // TODO pull up most of this!
263     int port = 0;
264     InputStream readChan = pymolProcess.getInputStream();
265     BufferedReader lineReader = new BufferedReader(
266             new InputStreamReader(readChan));
267     StringBuilder responses = new StringBuilder();
268     try
269     {
270       String response = lineReader.readLine();
271       while (response != null)
272       {
273         responses.append("\n" + response);
274         // expect: xml-rpc server running on host localhost, port 9123
275         if (response.contains("xml-rpc"))
276         {
277           String[] tokens = response.split(" ");
278           for (int i = 0; i < tokens.length - 1; i++)
279           {
280             if ("port".equals(tokens[i]))
281             {
282               port = Integer.parseInt(tokens[i + 1]);
283               break;
284             }
285           }
286         }
287         if (port > 0)
288         {
289           break; // hack for hanging readLine()
290         }
291         response = lineReader.readLine();
292       }
293     } catch (Exception e)
294     {
295       Cache.log.error("Failed to get REST port number from " + responses
296               + ": " + e.getMessage());
297       // logger.error("Failed to get REST port number from " + responses + ": "
298       // + e.getMessage());
299     } finally
300     {
301       try
302       {
303         lineReader.close();
304       } catch (IOException e2)
305       {
306       }
307     }
308     if (port == 0)
309     {
310       Cache.log.error("Failed to start PyMOL with XMLRPC, response was: "
311               + responses);
312     }
313     Cache.log.error("PyMOL started with XMLRPC on port " + port);
314     return port;
315   }
316
317 }