Interface IClientSessionGyro

    • Field Detail

      • STORAGE_NAME

        static final java.lang.String STORAGE_NAME
        Local storage name in SessionInfo.
    • Method Detail

      • getSessionInstance

        static IClientSessionGyro getSessionInstance()
        Gets the runtime application instance for the current thread in a client session.
        Returns:
        The RuntimeApp instance when called from a thread of the client session, null otherwise.
      • getSessionInstance

        static IClientSessionGyro getSessionInstance​(SessionInfo sessionInfo)
        Gets the runtime application instance for the current thread in a client session.
        Parameters:
        sessionInfo - A session information instance, or null for none.
        Returns:
        The RuntimeApp instance when called from a thread of the client session, null otherwise.
      • addDisposeListener

        boolean addDisposeListener​(IClientSessionDisposeListener listener)
        Adds a dispose listener for the client session. Calling this method multiple times with the same listener will have no effect (but to return false).
        Parameters:
        listener - The listener to add.
        Returns:
        true if the listener was added, false otherwise.
        Throws:
        java.lang.NullPointerException - If the listener is null.
      • removeDisposeListener

        boolean removeDisposeListener​(IClientSessionDisposeListener listener)
        Removes a dispose listener for the client session.
        Parameters:
        listener - The listener to remove.
        Returns:
        true if listener is successfully removed, false otherwise.
      • dispose

        boolean dispose()
        Disposes of the Gyro instance so the client session ends.
        Returns:
        true for dispose success, false if already disposed of.
      • isDisposed

        boolean isDisposed()
        Checks if the client session Gyro is disposed of.
        Returns:
        true if disposed, false otherwise.
      • getAppSessionGyro

        IAppSessionGyro getAppSessionGyro()
        Gets the Gyro for the application session.
      • getClientSessionInfo

        SessionInfo getClientSessionInfo()
        Gets the client sessions information.
        Returns:
        The session information instance.
      • getUIFocusEngine

        IFocusEngine getUIFocusEngine()
        Returns the UI focus engine instance for the specified component.
        Returns:
        The UI focus engine instance.
      • getClientTimerEngine

        ITimerEngine getClientTimerEngine()
        Gets the client timer engine. All timer tasks as disposed of automatically when the client session exits.
        Returns:
        The client session implementation of the timeout engine.
      • synchronizeCurrentFocusWithVS

        boolean synchronizeCurrentFocusWithVS()
        Updates the focus to the VS from the current focused UI component. This may be needed to synchronize the VS focus for a particular UI session to make sure it is synchronized.
        Returns:
        true for success, false if nothing was done.
      • setPseudoActionFocusToVS

        void setPseudoActionFocusToVS​(IUIFocusComp focusComp,
                                      IGProp<?> trigger)
        Called when a "pseudo UI action" is executed, making sure its VS counterpart has the current focus. This "pseudo action" can be e.g. a MLItemProp that has a context menu, as well as an direct action such as a UIButton.

        This method is not intended to be called but is used internally by the framework.

        Parameters:
        focusComp - The "pseudo action" focus component.
        trigger - The trigger component, null for none.
      • getClientWorker

        Worker getClientWorker()
        Gets the Worker for the current Client session.
        Returns:
        The Client Worker, or null if the current thread is not associated to a Client.
      • getEnvironment

        EnvProps getEnvironment()
        Gets the current environment properties for Selector's or Value's.

        This is NOT the same instance as the one available from the IAppSessionGyro.getEnvironment().

        Returns:
        The current environment properties for selectors, null if client hasn't sent them yet.
      • getLocationService

        ILocationService getLocationService()
        Returns an instance of the geolocation service.
        Returns:
        The instance, always non-null.
      • getPrettyLocaledTexts

        PrettyLocaledTexts getPrettyLocaledTexts()
        Gets the locale'd texts instance for the sessions language and text tables.
        Returns:
        The instance used to create locale'd strings for e.g. duration and distances.
      • setLocale

        LocaleInfo setLocale​(LocaleInfo locale)
                      throws PropTypeException
        Changes or sets the LocaleInfo for the environment.
        Parameters:
        locale - localeInfo The locale information to use.
        Returns:
        The old LocaleInfo, or null if not set.
        Throws:
        PropTypeException - If the property is read-only.
      • getLanguageCode

        java.lang.String getLanguageCode()
        Gets the language code to use for the client session, or if not defined, the application session language code.
        Returns:
        The language code, or null for default.
      • getTopmostPanel

        UIPanelBase getTopmostPanel()
        Gets the current top-most panel.
        Returns:
        The panel, null if none has been created.
      • getVirtualizedPanels

        UIPanelBase[] getVirtualizedPanels()
        Gets the cached and sorted array of panels that is currently displayed.

        The index 0 is the topmost panel and the higher the index, the more overlapped the panel is. The highest index is the top-level main panel covering the screen.

        Do not modify this array!

        Returns:
        The virtualized panels.
      • getMatchingPanels

        UIPanelBase[] getMatchingPanels​(VirtualSpace virtualSpace)
        Gets the panels that matches a VirtualSpace for this client session. The VirtualSpace can be virtualized or not, and the client session environment properties are used to determine the panels in question (i.e. depending on their selectors).

        This method is quite CPU intensive and should NOT be done too often. The return value is however cached during the focus handler mappings from VirtualSpace to the UI, so only one such call is done.

        The ordering is not significant and can be a mix of primary and secondary panels, however the matching panel is the virtualized instance if one is present, otherwise it is the non-virtualized instance.

        Note: The result from this method should not be cached because the matching panels may very well change during a client session due to e.g. a change in client capabilities or alike (that affects the result of the selectors used).

        Parameters:
        virtualSpace - The VirtualSpace to look-up the panels for.
        Returns:
        A cloned cached array of the matching panels.

        The array of matching panels, can be a mix of virtualized and non-virtualized panels!

      • getVirtualizedPropFromReference

        GProp<?> getVirtualizedPropFromReference​(java.lang.String reference)
        Attempts to look up a virtualized property from a reference by searching this instance.
        Parameters:
        reference - The reference to look-up.
        Returns:
        The virtualized instance of the property, null if not found.
      • getClientContextMenuReference

        java.lang.String getClientContextMenuReference​(UIContextMenu contextMenu,
                                                       boolean fullPropReference)
        Gets the reference to use for a context menu.
        Parameters:
        contextMenu - The context menu.
        fullPropReference - Flag indicating a full property reference string should be returned, false for short (used internally by the server).
        Returns:
        The reference to use, empty string for none (never null).
        Throws:
        java.lang.IllegalArgumentException - If the context menu is not a stand-alone context menu but a child of a panel component.
      • requestUILock

        ILockState requestUILock()
        Requests a UI lock state. The object returned can be used to set a message below the lock spinner. It can also be used to set a progress indicator, also below the spinner. A progress indicator can also be handled using the lock object.

        Note: You MUST call the objects {link @ILockState#release()} method to release the lock state.

        Returns:
        The lock state object.
        Throws:
        java.lang.IllegalStateException - If the client session is disposed of.
      • isUILocked

        default boolean isUILocked()
        Get the current UI lock state.

        This state is taken from the Application Session Gyro, and callin this method equals to calling getAppSessionGyro().isUILocked().

        Returns:
        true if busy state is on, false otherwise.
        Throws:
        java.lang.IllegalStateException - If the client session is disposed of.
      • setBusy

        void setBusy​(KString msg,
                     int delay,
                     int progress)
        Sets the UI busy state and optionally updates the message and/or progress.

        This method is intended to be used with advanced UI programming where a message is used in conjunction with a progress.

        If this functionality is not required, it is recommended to let the AppSessionGyro handle the busy state.

        Parameters:
        msg - Optional message, null for none.
        delay - Delay of lock spinner: -2 for default (1.5 second), -1 disabled, 0=no delay, >0 wait time in milliseconds (1-20000, i.e. 20 seconds).
        progress - Progress value, -1 for none, otherwise a value between 0 and 100.
        Throws:
        java.lang.IllegalArgumentException - If progress value is not -1 or 0 to 100, or delay is smaller than -2 or larger than 20000.
      • setReady

        void setReady()
        Sets the UI to "ready", i.e. clears busy state.

        Note: the state is not set to ready immediately, merely the busy state. The UI is triggered to be synchronized with the VirtualSpace in the Client Worker thread, and a change of panel may be the result.

        This method is intended to be used with advanced UI programming where a message is used in conjunction with a progress.

        If this functionality is not required, it is recommended to let the AppSessionGyro handle the busy state.

      • setReady

        boolean setReady​(java.lang.Runnable runnable)
        Sets the UI to "ready", i.e. clears busy state.

        Note: the state is not set to ready immediately, merely the busy state. The UI is triggered to be synchronized with the VirtualSpace in the Client Worker thread, and a change of panel may be the result.

        Specify a runnable instance if you wish to be notified when the panel is unlocked. This runnable will be called at a later stage from the Client Worker thread.

        The runnable will be be called if the busy state is turned on or the client has been locked.

        This method is intended to be used with advanced UI programming where a message is used in conjunction with a progress.

        If this functionality is not required, it is recommended to let the AppSessionGyro handle the busy state.

        Parameters:
        runnable - The runnable to be notified, null for none.
        Returns:
        true if the runnable will be called (if present), false if it will not be called.
      • getCurrentFocus

        UIComp getCurrentFocus()
        Returns the current focus in the UI. If no particular component is in focus, the topmost panel is returned.
        Returns:
        The component in focus, or null if not a single panel has yet been created.
      • getNextPanelAnimation

        int getNextPanelAnimation()
        Returns the animation that will be used for next panel that replaces another panel.

        This animation only applies to full-page panels.

        This value is reset to IUIPanelAnimation.ANIMATION_DEFAULT as soon as a panel replacement has been made.

        Returns:
        The composite animation value, or IUIPanelAnimation.ANIMATION_DEFAULT for none.
      • setNextPanelAnimation

        int setNextPanelAnimation​(int nextAnimation)
        Sets the animation that will be used for next panel that replaces another panel.

        This animation only applies to full-page panels.

        This value is reset to IUIPanelAnimation.ANIMATION_DEFAULT as soon as a panel replacement has been made.

        Returns:
        The old "next panel animation" composite animation value, or IUIPanelAnimation.ANIMATION_DEFAULT for none.
      • enterClientLock

        void enterClientLock​(boolean isFromClient)
        Method called whenever the client lock state is enabled.
        Parameters:
        isFromClient - Flag indicating the state change is induced from client side. If this flag is false, the lock state
      • exitClientLock

        void exitClientLock()
        Releases client lock state if the client is not in busy state. The lock state will be released when the VS has been synchronized at a later stage, but very quickly.
      • getHistoryRequest

        HistoryRequest getHistoryRequest()
        Gets the history request instance for the client session.
        Returns:
        This client session's instance for history requests, never changes during the session's lifetime.
      • addHistoryEntry

        IAppHistoryEntry addHistoryEntry()
        Adds a new focus entry at the current location for this client session. The VirtualSpace and UI location is recorded to the previous and forward locations in the entry.

        The entry is added at the current index and will clear all forward operations at that point to the end, i.e. IAppHistory.clearForwardEntries() is called before adding the entry and moving the index forward by one (1).

        Once added, the history entry forward and backward information can be set or adjusted.

        Returns:
        The newly added history entry, null if history operations are currently in progress (i.e. a forward or backward history operation is running).
      • getScreenWidth

        int getScreenWidth()
        Gets the current screen width.
        Returns:
        The current screen width, or zero if not initialized.
      • getScreenHeight

        int getScreenHeight()
        Gets the current screen height.
        Returns:
        The current screen height, or zero if not initialized.
      • getScreenSize

        Size getScreenSize()
        Gets the current screen size.
        Returns:
        The current screen size, zero width and/or height if not initialized.
      • addScreenSizeListener

        boolean addScreenSizeListener​(IScreenSizeListener listener)
        Adds a screen size listener for the client session. Calling this method multiple times with the same listener will have no effect (but to return false).
        Parameters:
        listener - The listener to add.
        Returns:
        true if the listener was added, false otherwise.
        Throws:
        java.lang.NullPointerException - If the listener is null.
      • removeScreenSizeListener

        boolean removeScreenSizeListener​(IScreenSizeListener listener)
        Removes a screen size listener for the client session.
        Parameters:
        listener - The listener to remove.
        Returns:
        true if listener is successfully removed, false otherwise.
      • isScreenOrientationLockSupported

        boolean isScreenOrientationLockSupported()
        Checks if screen orientation locking is supported or not.
        Returns:
        true if the functions to lock or unlock screen orientation are supported, false otherwise.
      • addScreenOrientationListener

        boolean addScreenOrientationListener​(IScreenOrientationListener listener)
        Adds a screen orientation listener for the client session. Calling this method multiple times with the same listener will have no effect (but to return false).
        Parameters:
        listener - The listener to add.
        Returns:
        true if the listener was added, false otherwise.
        Throws:
        java.lang.NullPointerException - If the listener is null.
      • removeScreenOrientationListener

        boolean removeScreenOrientationListener​(IScreenOrientationListener listener)
        Removes a screen orientation listener for the client session.
        Parameters:
        listener - The listener to remove.
        Returns:
        true if listener is successfully removed, false otherwise.
      • setScreenOrientation

        boolean setScreenOrientation​(ScreenOrientation orientation)
        Locks the screen orientation.

        Note that there may be a delay in the orientation change after calling this method. This could be due to slow client connection, disconnected client or just due to device lag.

        Parameters:
        orientation - The orientation.
        Returns:
        true for success, false for not supported.
        Throws:
        java.lang.IllegalArgumentException - If orientation is ScreenOrientation.unknown.
      • unlockScreenOrientation

        boolean unlockScreenOrientation()
        Unlocks the screen orientation.

        Note that there may be a delay in the orientation change after calling this method. This could be due to slow client connection, disconnected client or just due to device lag.

        Returns:
        true for success, false for not supported.
      • sendStat

        void sendStat​(java.lang.String event,
                      DeviceParameter... params)
        Sends statistics event to the analytics engine on the client to log the event.
        Parameters:
        event - The event name.
        params - Parameters to send, null values and sensitive parameters are ignored.
      • saveDeviceParameters

        boolean saveDeviceParameters​(DeviceParameter... params)
        Saves parameters on the device.

        This method is only supported on devices running iiziRun and will always fail for other devices.

        Sensitive parameters are encrypted with a key kept on the server side. The encrypted data is padded and sent to the client and no key is used on the client side. Only the fingerprint of the server key used is included in the encrypted data. This means that the sensitive parameter is virtually undecipherable on the client side.

        Parameters:
        params - Parameters to save. A value of null means that the value is removed from storage.
        Returns:
        true for success, false for failure (or no parameters to save). In case of failure, an error is logged in the server.
      • getDeviceParameters

        boolean getDeviceParameters​(DeviceParameter... params)
        Retrieves parameters from the device. The variables values and state are filled in before the return of this method call. The state indicates success, some error or if the parameter is not found.

        This method will always fail if the device is not running with iiziRun.

        Parameters:
        params - The parameter to retrieve.
        Returns:
        true for success, false if iiziRun is not present and device parameters are not present.
      • triggerRemoteOpenWindow

        default boolean triggerRemoteOpenWindow​(java.lang.String url,
                                                java.lang.String target)
        Triggers opening of a browser window on the client.
        Parameters:
        url - The URL to open.
        target - The target, null for _blank.
        Returns:
        true for success, false if the window cannot be opened because another window already is open or that the session is disposed of. In case of failure, any callback close listener will not be invoked.
      • triggerRemoteOpenWindow

        @Deprecated
        default boolean triggerRemoteOpenWindow​(java.lang.String url,
                                                java.lang.String target,
                                                java.lang.Runnable closeListener)
        Triggers opening of a browser window on the client.
        Parameters:
        url - The URL to open.
        target - The target, null for _blank.
        closeListener - Callback to listen to close window, null for none.
        Returns:
        true for success, false if the window cannot be opened because another window already is open or that the session is disposed of. In case of failure, any callback close listener will not be invoked.
      • triggerRemoteOpenWindow

        boolean triggerRemoteOpenWindow​(java.lang.String url,
                                        java.lang.String target,
                                        WindowOptions options,
                                        IWindowCloseListener windowListener)
        Triggers opening of a browser window on the client.
        Parameters:
        url - The URL to open.
        target - The target, null for _blank.
        options - Options to use, null for "new tab" for a browser client.
        windowListener - Callback to listen to blocked or user close window, null for none. When "spawn mode" is used in the options, this parameter is ignored, i.e. as if set to null.
        Returns:
        true for success, false if the window cannot be opened because another window already is open or that the session is disposed of. In case of failure, any callback close listener will not be invoked.
      • triggerRemoteCloseWindow

        default boolean triggerRemoteCloseWindow()
        Triggers closing of the window on the client that was opened with triggerRemoteOpenWindow.
        Returns:
        true for success, false if no open window is present.
      • triggerRemoteCloseWindow

        boolean triggerRemoteCloseWindow​(boolean ignoreCallbackListener)
        Triggers closing of the window on the client that was opened with triggerRemoteOpenWindow.
        Parameters:
        ignoreCallbackListener - Flag to ignore calling a potential callback listener.
        Returns:
        true for success, false if no open window is present.
      • restartRemoteClient

        void restartRemoteClient()
        Restarts the remote client. This is done without asking anything: it will just restart the iiziRun or browser by disconnecting from server and reloading the page directly. For iiziRun Developer/Custom sessions, this will bring up that interface.