watchdogclient.java

来自「RESIN 3.2 最新源码」· Java 代码 · 共 471 行

JAVA
471
字号
/* * Copyright (c) 1998-2008 Caucho Technology -- all rights reserved * * This file is part of Resin(R) Open Source * * Each copy or derived work must preserve the copyright notice and this * notice unmodified. * * Resin Open Source 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. * * Resin Open Source 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, or any warranty * of NON-INFRINGEMENT.  See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with Resin Open Source; if not, write to the * *   Free Software Foundation, Inc. *   59 Temple Place, Suite 330 *   Boston, MA 02111-1307  USA * * @author Scott Ferguson */package com.caucho.boot;import com.caucho.config.*;import com.caucho.config.program.*;import com.caucho.server.admin.HessianHmuxProxy;import com.caucho.server.util.*;import com.caucho.util.*;import com.caucho.Version;import com.caucho.vfs.Path;import com.caucho.vfs.Vfs;import java.io.File;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.lang.reflect.*;import java.net.*;import java.util.ArrayList;import java.util.HashMap;import java.util.Map;import java.util.logging.Level;import java.util.logging.Logger;/** * Client to a watchdog-manager, i.e. ResinBoot code to ask the * watchdog-manager to do something. */class WatchdogClient{  private static final L10N L    = new L10N(WatchdogClient.class);  private static final Logger log    = Logger.getLogger(WatchdogClient.class.getName());    private final BootResinConfig _bootManager;  private String _id = "";  private WatchdogConfig _config;  private Watchdog _watchdog;    private Boot _jniBoot;  WatchdogClient(BootResinConfig bootManager, WatchdogConfig config)  {    _bootManager = bootManager;    _config = config;    _id = config.getId();  }  public WatchdogConfig getConfig()  {    return _config;  }  public String getId()  {    return _id;  }  public String getAdminCookie()  {    return _bootManager.getAdminCookie();  }  public String getWatchdogAddress()  {    return _config.getWatchdogAddress();  }  public int getWatchdogPort()  {    return _config.getWatchdogPort();  }  String[] getArgv()  {    return _config.getArgv();  }  Path getPwd()  {    return _config.getPwd();  }  Path getResinHome()  {    return _bootManager.getResinHome();  }  Path getRootDirectory()  {    return _bootManager.getRootDirectory();  }  boolean hasXmx()  {    return _config.hasXmx();  }  boolean hasXss()  {    return _config.hasXss();  }  boolean is64bit()  {    return _config.is64bit();  }  boolean isVerbose()  {    return _config.isVerbose();  }    public String getGroupName()  {    return _config.getGroupName();  }    public String getUserName()  {    return _config.getUserName();  }    public Path getLogDirectory()  {    return _config.getLogDirectory();  }    public long getShutdownWaitTime()  {    return _config.getShutdownWaitTime();  }  public String statusWatchdog()    throws IOException  {    WatchdogAPI watchdog = getProxy();    try {      return watchdog.status(getAdminCookie());    } catch (ConfigException e) {      throw e;    } catch (IllegalStateException e) {      throw e;    } catch (Exception e) {      Throwable e1 = e;            while (e1.getCause() != null)	e1 = e1.getCause();      log.log(Level.FINE, e.toString(), e);            return e1.toString();    }  }  public void startWatchdog(String []argv)    throws ConfigException, IOException  {    if (getUserName() != null && ! hasBoot()) {      throw new ConfigException(L.l("<user-name> requires compiled JNI.  Check the $RESIN_HOME/libexec or $RESIN_HOME/libexec64 directory for libresin_os.so."));    }    if (getGroupName() != null && ! hasBoot()) {      throw new ConfigException(L.l("<group-name> requires compiled JNI.  Check the $RESIN_HOME/libexec or $RESIN_HOME/libexec64 directory for libresin_os.so."));    }        WatchdogAPI watchdog = getProxy();    try {      watchdog.start(getAdminCookie(), argv);      return;    } catch (ConfigException e) {      throw e;    } catch (IllegalStateException e) {      throw e;    } catch (ConnectException e) {      log.log(Level.FINER, e.toString(), e);    } catch (Exception e) {      log.log(Level.FINE, e.toString(), e);    }    launchManager(argv);  }  public void stopWatchdog()    throws IOException  {    WatchdogAPI watchdog = getProxy();    try {      watchdog.stop(getAdminCookie(), getId());    } catch (ConfigException e) {      throw e;    } catch (IllegalStateException e) {      throw e;    } catch (IOException e) {      throw new IllegalStateException(L.l("Can't connect to ResinWatchdogManager.\n{1}",					  Version.VERSION, e.toString()),				      e);    } catch (Exception e) {      log.log(Level.FINE, e.toString(), e);    }  }  public void killWatchdog()    throws IOException  {    WatchdogAPI watchdog = getProxy();    try {      watchdog.kill(getAdminCookie(), getId());    } catch (ConfigException e) {      throw e;    } catch (IllegalStateException e) {      throw e;    } catch (IOException e) {      throw new IllegalStateException(L.l("Can't connect to ResinWatchdogManager.\n{1}",					  Version.VERSION, e.toString()),				      e);    } catch (Exception e) {      log.log(Level.FINE, e.toString(), e);    }  }  public void restartWatchdog(String []argv)    throws IOException  {    try {      stopWatchdog();    } catch (Exception e) {      log.log(Level.FINE, e.toString(), e);    }    try {      Thread.sleep(5000);    } catch (Exception e) {      log.log(Level.FINE, e.toString(), e);    }    startWatchdog(argv);  }  public int startSingle()    throws IOException  {    if (_watchdog == null)      _watchdog = new Watchdog(_config);        return _watchdog.startSingle();  }  public boolean shutdown()    throws IOException  {    WatchdogAPI watchdog = getProxy();    try {      return watchdog.shutdown(getAdminCookie());    } catch (ConfigException e) {      throw e;    } catch (IllegalStateException e) {      throw e;    } catch (IOException e) {      throw new IllegalStateException(L.l("Can't connect to ResinWatchdogManager.\n{1}",					  Version.VERSION, e.toString()),				      e);    } catch (Exception e) {      log.log(Level.FINE, e.toString(), e);      return false;    }  }  private WatchdogAPI getProxy()  {    String url = ("hmux://" + getWatchdogAddress() + ":"		  + getWatchdogPort()		  + "/watchdog");        HashMap<String,Object> attr = new HashMap<String,Object>();    attr.put("host", "resin-admin");        Path path = Vfs.lookup(url, attr);    return HessianHmuxProxy.create(path, WatchdogAPI.class);  }    public void launchManager(String []argv)    throws IOException  {    log.fine(this + " starting ResinWatchdogManager");        Path resinHome = getResinHome();    Path resinRoot = getRootDirectory();        ProcessBuilder builder = new ProcessBuilder();    builder.directory(new File(resinRoot.getNativePath()));    Map<String,String> env = builder.environment();    env.putAll(System.getenv());    String classPath = WatchdogArgs.calculateClassPath(resinHome);    env.put("CLASSPATH", classPath);    String libexecPath;    if (is64bit()) {      libexecPath = resinHome.lookup("libexec64").getNativePath();      appendEnvPath(env, "LD_LIBRARY_PATH", libexecPath);      appendEnvPath(env, "DYLD_LIBRARY_PATH", libexecPath);      appendEnvPath(env, "PATH", resinHome.lookup("win64").getNativePath());    }    else {      libexecPath = resinHome.lookup("libexec").getNativePath();      appendEnvPath(env, "LD_LIBRARY_PATH", libexecPath);      appendEnvPath(env, "DYLD_LIBRARY_PATH", libexecPath);      appendEnvPath(env, "PATH", resinHome.lookup("win32").getNativePath());    }    ArrayList<String> list = new ArrayList<String>();    list.add(_config.getJavaExe());    list.add("-Djava.util.logging.manager=com.caucho.log.LogManagerImpl");    list.add("-Djavax.management.builder.initial=com.caucho.jmx.MBeanServerBuilderImpl");    list.add("-Djava.awt.headless=true");    list.add("-Dresin.home=" + resinHome.getPath());    list.add("-Dresin.root=" + resinRoot.getPath());        for (int i = 0; i < argv.length; i++) {      if (argv[i].startsWith("-Djava.class.path=")) {	// IBM JDK startup issues      }      else if (argv[i].startsWith("-J")) {	list.add(argv[i].substring(2));      }    }    // #2566    list.add("-Xrs");    if (! _config.hasWatchdogXss())      list.add("-Xss256k");    if (! _config.hasWatchdogXmx())      list.add("-Xmx32m");    list.addAll(_config.getWatchdogJvmArgs());    // XXX: can this just be copied from original args?    if (! list.contains("-d32") && ! list.contains("-d64")	&& is64bit() && ! CauchoSystem.isWindows())      list.add("-d64");    list.add("com.caucho.boot.WatchdogManager");    for (int i = 0; i < argv.length; i++) {      if (argv[i].equals("-conf")          || argv[i].equals("--conf")) {        list.add(argv[i]);        list.add(resinHome.lookup(argv[i + 1]).getNativePath());	i++;      }      else        list.add(argv[i]);    }        list.add("--log-directory");    list.add(getLogDirectory().getFullPath());    builder = builder.command(list);    builder.redirectErrorStream(true);    Process process = builder.start();    InputStream stdIs = process.getInputStream();    OutputStream stdOs = process.getOutputStream();    stdIs.close();    stdOs.close();  }  private void appendEnvPath(Map<String,String> env,                             String prop,                             String value)  {    String oldValue = env.get(prop);    if (oldValue != null && ! "".equals(oldValue))      value = value + File.pathSeparator + oldValue;    env.put(prop, value);  }    @Override  public String toString()  {    return getClass().getSimpleName() + "[" + getId() + "]";  }  Boot getJniBoot()  {    if (_jniBoot != null)      return _jniBoot.isValid() ? _jniBoot : null;        try {      ClassLoader loader = Thread.currentThread().getContextClassLoader();            Class cl = Class.forName("com.caucho.bootjni.JniBoot", false, loader);      _jniBoot = (Boot) cl.newInstance();    } catch (ClassNotFoundException e) {      log.fine(e.toString());    } catch (IllegalStateException e) {      log.fine(e.toString());    } catch (Throwable e) {      log.log(Level.FINE, e.toString(), e);    }    return _jniBoot != null && _jniBoot.isValid() ? _jniBoot : null;  }  private boolean hasBoot()  {    try {      Boot boot = getJniBoot();      return boot != null && boot.isValid();    } catch (Throwable e) {      log.log(Level.FINE, e.toString(), e);    }    return false;  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?