Package freenet.clients.fcp

Source Code of freenet.clients.fcp.WatchGlobal

/* This code is part of Freenet. It is distributed under the GNU General
* Public License, version 2 (or at your option any later version). See
* http://www.gnu.org/ for further details of the GPL. */
package freenet.clients.fcp;

import freenet.node.Node;
import freenet.support.SimpleFieldSet;

public class WatchGlobal extends FCPMessage {

  final boolean enabled;
  final int verbosityMask;
  static final String NAME = "WatchGlobal";

  public WatchGlobal(SimpleFieldSet fs) throws MessageInvalidException {
    enabled = fs.getBoolean("Enabled", true);
    String s = fs.get("VerbosityMask");
    if(s != null)
      try {
        verbosityMask = Integer.parseInt(s);
      } catch (NumberFormatException e) {
        throw new MessageInvalidException(ProtocolErrorMessage.ERROR_PARSING_NUMBER, e.toString(), null, false);
      }
    else
      verbosityMask = Integer.MAX_VALUE;
  }
 
  @Override
  public SimpleFieldSet getFieldSet() {
    SimpleFieldSet fs = new SimpleFieldSet(true);
    fs.put("Enabled", enabled);
    fs.put("VerbosityMask", verbosityMask);
    return fs;
  }

  @Override
  public String getName() {
    return NAME;
  }

  @Override
  public void run(final FCPConnectionHandler handler, Node node)
      throws MessageInvalidException {
    if(!handler.getRebootClient().setWatchGlobal(enabled, verbosityMask, node.clientCore.getFCPServer())) {
      FCPMessage err = new ProtocolErrorMessage(ProtocolErrorMessage.PERSISTENCE_DISABLED, false, "Persistence disabled", null, true);
      handler.outputHandler.queue(err);
    }
    PersistentRequestClient client = handler.getForeverClient();
    if(client != null)
        client.setWatchGlobal(enabled, verbosityMask, handler.server);
  }

}
TOP

Related Classes of freenet.clients.fcp.WatchGlobal

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.