tonix
tonix

Reputation: 6939

What does this warning mean in Vaadin: "Ignoring RPC call for disabled connector com.vaadin.ui.Window"?

I have tried to google to find some hints and look at the Vaadin's website, but I didn't find anything related to this king of issue:

In the console when I launch the application, I see this warning several times:

Ignoring RPC call for disabled connector com.vaadin.ui.Window, caption=Window's caption

I am using the Refresher addon which polls my server at an interval of 2000 millisec. and the ICEPush addon which implements pushing to the Vaadin UI.

I think that this is related somehow to the Refresher addon, because if I interact with a component I have created for test (below the code), warnings are added to the console.

Here is the code:

package com.example.events;

import java.util.ArrayList;
import java.util.List;

import com.github.wolfie.refresher.Refresher;
import com.vaadin.event.FieldEvents.BlurListener;
import com.vaadin.event.FieldEvents.FocusListener;
import com.vaadin.event.FieldEvents.TextChangeEvent;
import com.vaadin.event.FieldEvents.TextChangeListener;
import com.vaadin.event.LayoutEvents.LayoutClickNotifier;
import com.vaadin.ui.AbstractTextField.TextChangeEventMode;
import com.vaadin.ui.Button;

import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Button.ClickListener;
import com.vaadin.ui.Component;
import com.vaadin.ui.Label;
import com.vaadin.ui.Layout;
import com.vaadin.ui.Notification;
import com.vaadin.ui.TextArea;
import com.vaadin.ui.UI;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.Window;

public class Noticeboard extends VerticalLayout {

    /**
     * 
     */
    private static final long serialVersionUID = -6023888496081433464L;

    private static List<Note> notes = new ArrayList<Note>();
    private List<Window> windows = new ArrayList<Window>();
    private static int userCount;
    private int userId;
    private static int noteId;
    private Refresher refresher = new Refresher();
    private static final int UPDATE_INTERVAL = 2000;
    private Note currentlyFocusedNote;

    public class NoticeboardUpdater extends Thread {

        @Override
        public void run() {
            while (true) {
                try {
                    Thread.sleep(UPDATE_INTERVAL);
                } catch (Exception e) {
                    e.printStackTrace();
                }
                getUI().getSession().getLockInstance().lock();
                try {
                    updateNoticeboard();
                } finally {
                    getUI().getSession().getLockInstance().unlock();
                }
            }
        }

    }

    public Noticeboard() {
        refresher.setRefreshInterval(UPDATE_INTERVAL);
        userId = ++userCount;
        setSpacing(true);
        setMargin(true);
        addComponent(new Label("Logged in as User " + userId));
        Button addNoteButton = new Button("Add note");

        addNoteButton.addClickListener(new ClickListener() {

            /**
             * 
             */
            private static final long serialVersionUID = -4927018162887570343L;

            @Override
            public void buttonClick(ClickEvent event) {
                Note note = new Note(++noteId);
                note.setCaption("Note " + note.getId());
                notes.add(note);

                Window window = createWindow(note);
                windows.add(window);

                UI.getCurrent().addWindow(window);
            }
        });

        addComponent(addNoteButton);
        addExtension(refresher);        
        new NoticeboardUpdater().start();
    }

    private Window createWindow(final Note note) {
        final Window window = new Window(note.getCaption());
        VerticalLayout layout = new VerticalLayout();
        layout.addComponent(createContentNote(note, window));
        window.setContent(layout);
        window.setWidth(300, Unit.PIXELS);
        window.setResizable(false);
        window.setPositionX(note.getPositionX());
        window.setPositionY(note.getPositionY());
        window.setData(note);
        window.addBlurListener(createBlurListener(window));
        window.addFocusListener(createFocusListener(window));

        LayoutClickNotifier mainLayout = (LayoutClickNotifier) getUI().getContent();
        mainLayout.addLayoutClickListener(e -> {
            if (note.isNoteFocusedWindow() || note.isNoteFocusedTextArea()) {               
                if (note.getLockedByUser() > -1 && note.getLockedByUser() == userId) {                  
                    unlockNote(getWindow(currentlyFocusedNote));
                    note.setNoteFocusedWindow(false);
                    note.setNoteBlurredWindow(false);
                    note.setNoteFocusedTextArea(false);
                    note.setNoteBlurredTextArea(false);                 

                    currentlyFocusedNote = null;
                }
            }
        });

        return window;
    }

    private TextArea createContentNote(final Note note, final Window window) {
        TextArea contentNote = new TextArea();
        contentNote.setSizeFull();
        contentNote.setValue(note.getText());
        contentNote.setImmediate(true);
        contentNote.setTextChangeEventMode(TextChangeEventMode.EAGER);
        contentNote.addBlurListener(createBlurListener(window));
        contentNote.addFocusListener(createFocusListener(window));
        contentNote.addTextChangeListener(new TextChangeListener() {

            /**
             * 
             */
            private static final long serialVersionUID = 8552875156973567499L;

            @Override
            public void textChange(TextChangeEvent event) {
                note.setText(event.getText());
            }
        });
        return contentNote;
    }

    private BlurListener createBlurListener(Window window) {
        return e -> {
            Component blurredComponent = e.getComponent();

            if (blurredComponent == window)  {
                currentlyFocusedNote.setNoteBlurredWindow(true);
            }
            else if (blurredComponent == (((Layout) window.getContent())).iterator().next()) {
                currentlyFocusedNote.setNoteBlurredTextArea(true);
            }

        };
    }

    private FocusListener createFocusListener(Window window) {
        return e -> {
            Component focusedComponent = e.getComponent();
            Note note = (Note) window.getData();

            if (currentlyFocusedNote != null && currentlyFocusedNote != note) {
                unlockNote(getWindow(currentlyFocusedNote));        
                currentlyFocusedNote.setNoteFocusedWindow(false);
                currentlyFocusedNote.setNoteBlurredWindow(false);
                currentlyFocusedNote.setNoteFocusedTextArea(false);
                currentlyFocusedNote.setNoteBlurredTextArea(false);
            }

            currentlyFocusedNote = note;
            if (focusedComponent == window) {
                Notification.show("Focused Note Window");
                currentlyFocusedNote.setNoteFocusedWindow(true);
            }
            else if (focusedComponent == (((Layout) window.getContent())).iterator().next()) {
                Notification.show("Focused Note TextArea");
                currentlyFocusedNote.setNoteFocusedTextArea(true);
            }

            if (currentlyFocusedNote.isNoteFocusedWindow() && currentlyFocusedNote.isNoteBlurredTextArea() || 
                currentlyFocusedNote.isNoteFocusedTextArea() && currentlyFocusedNote.isNoteBlurredWindow()) {
                // Lock is already set here, skipping
                return;
            }                       
            lockNote(window);
        };
    }

    private void lockNote(Window window) {
        Note note = (Note) window.getData();
        note.setLockedByUser(userId);
        String caption = "Locked by User " + userId;
        note.setCaption(caption);
        window.setCaption(caption);
    }

    private void unlockNote(Window window) {
        Note note = (Note) window.getData();
        note.setLockedByUser(-1);
        note.setPositionX(window.getPositionX());
        note.setPositionY(window.getPositionY());
        note.setCaption("Note " + note.getId());
        window.setCaption("Note " + note.getId());
    }

    private void updateNoticeboard() {
        for (Note note : notes) {
            Window window = getWindow(note);

            if (window == null) {
                window = createWindow(note);
                windows.add(window);
                UI.getCurrent().addWindow(window);
            }

            if (note.getLockedByUser() > -1) {
                if (note.getLockedByUser() != userId) {
                    // If the note is locked by another user, then we disable this window. 
                    window.setEnabled(false);

                    updateTextArea(window, note);                   
                    updateWindowPosition(window, note);
                }
                else {                  
                    // Otherwise the window is enabled.
                    window.setEnabled(true);
                    Note focusedNote = (Note) window.getData();

                    updateFocusedNotePosition(focusedNote, window);
                }
            }           
            else {
                window.setEnabled(true);
                updateTextArea(window, note);
                updateWindowPosition(window, note);
            }           
        }
    }

    private void updateTextArea(Window window, Note note) {
        Layout layout = (Layout) window.getContent();
        TextArea area = (TextArea) layout.iterator().next();
        area.setValue(note.getText());
    }

    private Window getWindow(Note note) {
        for (Window window : windows) {
            if (window.getData().equals(note))
                return window;
        }
        return null;
    }

    private void updateWindowPosition(Window window, Note note) {
        window.setPositionX(note.getPositionX());
        window.setPositionY(note.getPositionY());
        window.setCaption(note.getCaption());
    }

    private void updateFocusedNotePosition(Note focusedNote, Window window) {       
        focusedNote.setPositionX(window.getPositionX());
        focusedNote.setPositionY(window.getPositionY());
        focusedNote.setCaption(window.getCaption());
    }
}

And inside the UI's init method I simply use this Noticeboard class:

@Override
protected void init(VaadinRequest request) {
    setContent(new Noticeboard());
}

When I move a window created with the "Add note" button or change the focus from a window to another, I experience the warning.

What could be the reason of such an issue?

I know, code is not of the better ones, it is just to see how the this Vaadin addons behave.

Upvotes: 1

Views: 4164

Answers (1)

KCL
KCL

Reputation: 6873

When you disable a component, the disabled state is handled both on the client and the server side, meaning, a component isn't just visually disabled, but the server also refuses to handle any requests to a disabled component.

The warning you are seeing means, that there is an RPC request (HTTP request from the client-side) that is targeted for a disabled component. Since the component is disabled, the RPC request will be ignored.

This typically happens when you have a background thread that disables a component and then also do polling from the client-side.

Upvotes: 7

Related Questions