Package com.caucho.server.resin

Source Code of com.caucho.server.resin.ResinActor

/*
* Copyright (c) 1998-2010 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.server.resin;

import java.util.logging.Level;
import java.util.logging.Logger;

import javax.management.MBeanServer;
import javax.management.ObjectName;

import com.caucho.bam.ActorError;
import com.caucho.bam.QueryGet;
import com.caucho.bam.QuerySet;
import com.caucho.bam.SimpleActor;
import com.caucho.boot.PidQuery;
import com.caucho.boot.WatchdogStopQuery;
import com.caucho.jmx.Jmx;
import com.caucho.util.L10N;

/**
* Service for handling the distributed cache
*/
public class ResinActor extends SimpleActor
{
  private static final Logger log
    = Logger.getLogger(ResinActor.class.getName());

  private static final L10N L = new L10N(ResinActor.class);

  private Resin _resin;
 
  ResinActor(Resin resin)
  {
    _resin = resin;
   
    setJid("resin");
  }
 
  /**
   * Query for the process pid.
   */
  @QueryGet
  public void queryPid(long id,
                       String to,
                       String from,
                       PidQuery query)
  {
    if (log.isLoggable(Level.FINE))
      log.fine(this + " " + query);
   
    try {
      MBeanServer server = Jmx.getGlobalMBeanServer();
      ObjectName objName = new ObjectName("java.lang:type=Runtime");
     
      String runtimeName = (String) server.getAttribute(objName, "Name");
     
      if (runtimeName == null) {
        getLinkStream().queryError(id, from, to, query,
                                   new ActorError("null runtime name"));
        return;
      }
     
      int p = runtimeName.indexOf('@');
     
      if (p > 0) {
        int pid = Integer.parseInt(runtimeName.substring(0, p));
     
        getLinkStream().queryResult(id, from, to, new PidQuery(pid));
        return;
      }
     
      getLinkStream().queryError(id, from, to, query,
                                 new ActorError("malformed name=" + runtimeName));
  
    } catch (Exception e) {
      getLinkStream().queryError(id, from, to, query,
                                 ActorError.create(e));
    }
   }

  @QuerySet
  public void stop(long id,
       String to,
       String from,
       WatchdogStopQuery query)
  {
    log.info(_resin + " stop request from watchdog '" + from + "'");

    _resin.startShutdown(L.l("Resin shutdown from watchdog stop '"
                             + from + "'"));

    getLinkStream().queryResult(id, from, to, query);
  }

  public void destroy()
  {
    _resin.startShutdown(L.l("Resin shutdown from ResinActor"));
  }
}
TOP

Related Classes of com.caucho.server.resin.ResinActor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.