Ejemplo n.º 1
0
  /**
   * Return true if the given application is registered with the server associated with the given
   * port; false otherwise. The model name is used to identify the application - only one instance
   * of a model may be registered to a server. (Note that multiple instances of a model are possible
   * by different servers on different ports.)
   *
   * @param fullModelName The full name of the model
   * @param portNumber The port this application would be hosted on
   * @return true if the given application is registered with the server associated with the given
   *     port; false otherwise.
   */
  public boolean isRegistered(String fullModelName, int portNumber) {
    // Check if a server is associated with this port
    WebServerUtilities server = null;

    for (WebServerUtilities theServer : _servers) {
      if (theServer.getPortNumber() == portNumber) {
        server = theServer;
        break;
      }
    }

    if (server != null) {
      // FIXME:  Use just model name, or whole application info object?
      if (server.isHostingModel(fullModelName)) {
        return true;
      }
    }
    return false;
  }
Ejemplo n.º 2
0
  /**
   * Unregister the following application with the manager. Remove all context handlers specific to
   * this application and stop the web server if this is the only application running on it.
   * Providing a port number allows other instances of the application on other ports to continue
   * running.
   *
   * @param appInfo Information about the unregistered web application
   * @param portNumber The port number that this application is running on
   * @exception Exception if there is no server associated with this port, the application is not
   *     running on the server associated with this port, or the application cannot be stopped.
   */
  public void unregister(WebApplicationInfo appInfo, int portNumber) throws Exception {
    // Check if this application has been registered to a server.
    // First, get the server running on this port.
    WebServerUtilities server = null;
    for (WebServerUtilities theServer : _servers) {
      if (theServer.getPortNumber() == portNumber) {
        server = theServer;
        break;
      }
    }

    if (server == null) {
      throw new Exception(
          "Application "
              + appInfo.getModelName()
              + " attempted to unregister itself for port number "
              + portNumber
              + ", but there is no server associated with this port.");
    }

    // This will throw an exception if the application is not registered on
    // this server
    server.unregister(appInfo);
  }
Ejemplo n.º 3
0
  /**
   * Register the following application with the manager. Check if the model in appInfo is already
   * associated with a server. If not, assign the web application to the server, checking for
   * conflicts with existing applications, creating new handlers where appropriate and pausing and
   * restarting the server if necessary. Returns true if the application was successfully
   * registered; false otherwise.
   *
   * @param appInfo Information about the registered web application
   * @param dynamicPortSelection True if server may dynamically select a port; false if the server
   *     should use the fixed port and throw an exception if not available
   * @param portNumber The desired port number to host this web application on
   * @param dynamicPortSelection If true, then select the port dynamically.
   * @return The actual port number the web application is running on (may be different from the
   *     portNumber parameter if dynamic selection is enabled)
   * @exception Exception thrown if web server cannot be instantiated or if application conflicts
   *     with an already-registered application
   */
  public int register(WebApplicationInfo appInfo, int portNumber, boolean dynamicPortSelection)
      throws Exception {
    // Fetch server at this port, if any.  If none, create and start a new
    // server for this port.  If the port number is <=0, WebServerUtilities
    // uses a default port
    WebServerUtilities server = null;

    // If dynamic port selection is enabled, first try to reuse any server
    // currently hosting models for this Ptolemy instance.
    // TODO:  Server sharing could be prohibited in the future if desired
    // for security reasons, depending on the application
    // Otherwise, retrieve any server at the specified port
    // Create a new server if no suitable server is found

    if (dynamicPortSelection) {
      if (!_servers.isEmpty()) {
        for (WebServerUtilities reuseServer : _servers) {
          server = reuseServer;
          break;
        }
      }

      if (server == null) {
        server = new WebServerUtilities();
        server.setDynamicPortSelection(dynamicPortSelection);
      }
    } else {
      for (WebServerUtilities theServer : _servers) {
        if (theServer.getPortNumber() == portNumber) {
          server = theServer;
          break;
        }
      }

      if (server == null) {
        server = new WebServerUtilities(portNumber);
        server.setDynamicPortSelection(dynamicPortSelection);
      }
    }

    // Register this application.  This will check for URL conflicts,
    // create handlers for this app (context and resource), and start the
    // server if not already started
    server.register(appInfo);

    // Update information about this server in the server table
    _servers.add(server);

    return server.getPortNumber();
  }