Class DefaultClusteringStrategyAbstract<E extends ConnectionRecordIfc>

    • Constructor Detail

      • DefaultClusteringStrategyAbstract

        public DefaultClusteringStrategyAbstract()
    • Method Detail

      • addCommandListener

        public final void addCommandListener​(CommandListener cmd)
      • containsJid

        public boolean containsJid​(BareJID jid)
        Description copied from interface: OnlineJidsReporter
        The method checks whether the given JID is known to the installation, either user connected to local machine or any of the cluster nodes. False result does not mean the user is not connected. It means the method does not know anything about the JID. Some clustering strategies may not cache online users information.
        Specified by:
        containsJid in interface OnlineJidsReporter
        Parameters:
        jid - a user's JID for whom we query information.
        Returns:
        true if the user is known as online to the installation, false if the method does not know.
      • containsJidLocally

        public boolean containsJidLocally​(BareJID jid)
        Description copied from interface: OnlineJidsReporter
        The method checks whether the given JID is known to local cluster node as connected user. False result means that given JID is not connected to local cluster node but it may be connected to other cluster node. Result of this method should be independent of used clustering strategy.
        Specified by:
        containsJidLocally in interface OnlineJidsReporter
        Parameters:
        jid - a user's JID for whom we query information
        Returns:
        true if user is known as connected to local cluster node, false if it is not connected to local node
      • containsJidLocally

        public boolean containsJidLocally​(JID jid)
        Description copied from interface: OnlineJidsReporter
        The method checks whether the given JID is known to local cluster node as connected user. False result means that given JID is not connected to local cluster node but it may be connected to other cluster node. Result of this method should be independent of used clustering strategy.
        Specified by:
        containsJidLocally in interface OnlineJidsReporter
        Parameters:
        jid - a user's JID for whom we query information
        Returns:
        true if user is known as connected to local cluster node, false if it is not connected to local node
      • sendToNextNode

        public boolean sendToNextNode​(JID fromNode,
                                      java.util.Set<JID> visitedNodes,
                                      java.util.Map<java.lang.String,​java.lang.String> data,
                                      Packet packet)
        Method attempts to send the packet to the next cluster node. Returns true on successful attempt and false on failure. The true result does not mean that the packet has been delivered though. Only that it was sent. The send attempt may fail if there is no more cluster nodes to send the packet or if the clustering strategy logic decided that the packet does not have to be sent.
        Parameters:
        packet - to be sent to a next cluster node
        visitedNodes - a list of nodes already visited by the packet.
        Returns:
        true if the packet was sent to next cluster node and false otherwise.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • getConnectionIdsForJid

        public JID[] getConnectionIdsForJid​(BareJID jid)
        Description copied from interface: OnlineJidsReporter
        Retrieve all connection IDs (CIDs) for the given user.
        Specified by:
        getConnectionIdsForJid in interface OnlineJidsReporter
        Parameters:
        jid - id of the user for which we want to retrieve the list.
        Returns:
        an array of JID containing all Connection IDs (CIDs) for the given user.
      • getConnectionRecord

        public E getConnectionRecord​(JID jid)
        Description copied from interface: ClusteringStrategyIfc
        Returns a ConnectionRecord object associated with this user's full JID if it exists in the cache or null if it does not. All parts of the user's JID are checked and ConnectionRecord is returned only if there is a match for all parts.
        Specified by:
        getConnectionRecord in interface ClusteringStrategyIfc<E extends ConnectionRecordIfc>
        Parameters:
        jid - is an instance of the user's full JID.
        Returns:
        ConnectionRecord instance associated with given user's JID or null if there is no ConnectionRecord in the cache.
      • getConnectionRecords

        public java.util.Set<E> getConnectionRecords​(BareJID bareJID)
        Description copied from interface: ClusteringStrategyIfc
        Returns a set with all ConnectionRecords found in the cache for a given user ID, that is BareJID. In other words all user's resources/connectionIDs found in the cache associated with user's account.
        Specified by:
        getConnectionRecords in interface ClusteringStrategyIfc<E extends ConnectionRecordIfc>
        Parameters:
        bareJID - is an instance of the user's BareJID, that is account ID.
        Returns:
        a Set instance with all ConnectionRecords found for a given BareJID. Note, the result may be null or it maybe an empty Set or non-empty set.
      • getDefaults

        public java.util.Map<java.lang.String,​java.lang.Object> getDefaults​(java.util.Map<java.lang.String,​java.lang.Object> params)
        Description copied from interface: ClusteringStrategyIfc
        This method is used for configuration purpose. Following the convention used in the Tigase project this method is supposed to provide configuration defaults. All parameters which exist in configuration file overwrite corresponding default parameters. If some parameters are missing in configuration file defaults are used then.
        A compiled set of parameters is then passed to setProperties method.
        Specified by:
        getDefaults in interface ClusteringStrategyIfc<E extends ConnectionRecordIfc>
        Parameters:
        params - a Map with properties loaded from init.properties file which should be used for generating defaults.
        Returns:
        a Map with all the class default configuration parameters.
      • getNodesForPacketForward

        public java.util.List<JID> getNodesForPacketForward​(JID fromNode,
                                                            java.util.Set<JID> visitedNodes,
                                                            Packet packet)
      • isIqResponseToNode

        public boolean isIqResponseToNode​(Packet packet)
      • getNodesForIqResponse

        public java.util.List<JID> getNodesForIqResponse​(Packet packet)
      • hasCompleteJidsInfo

        public boolean hasCompleteJidsInfo()
        Description copied from interface: OnlineJidsReporter
        Method checks whether the clustering strategy has a complete JIDs info. That is whether the strategy knows about all users connected to all nodes. Some strategies may choose not to share this information among nodes, hence the methods returns false. Other may synchronize this information and can provide it to further optimize cluster traffic.
        Specified by:
        hasCompleteJidsInfo in interface OnlineJidsReporter
        Returns:
        a true boolean value if the strategy has a complete information about all users connected to all cluster nodes.
      • setProperties

        public void setProperties​(java.util.Map<java.lang.String,​java.lang.Object> props)
        Description copied from interface: ClusteringStrategyIfc
        Method used to pass configuration parameters to the class. Parameters are stored in Map which contains compiles set of defaults overwritten by parameters loaded from configuration file.
        If he implementation took a good care of providing defaults for all parameters no parameter should be missing.
        Specified by:
        setProperties in interface ClusteringStrategyIfc<E extends ConnectionRecordIfc>
        Parameters:
        props - a Map with all configuration parameters for the class.
      • fireEvent

        public void fireEvent​(java.lang.Object event)
      • isSuitableForForward

        protected boolean isSuitableForForward​(Packet packet)