Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
// This Source Code is in the Public Domain per: http://unlicense.org
package org.litesoft.GWT.client.command.queue;

import com.google.gwt.user.client.*;

import java.util.*;

/**
 * The subclass is responsible for starting the queue once a command has been
 * added and determining how each run cycle is scheduled.
 */
public abstract class CommandQueueBase implements SourcesCommandQueueEvents {
    private final ArrayList<CommandQueueListener> mListeners = new ArrayList<CommandQueueListener>();
    private final ArrayList<Command> mQueue = new ArrayList<Command>();

    @Override
    public void addListener( CommandQueueListener pListener ) {
        mListeners.add( pListener );
    }

    @Override
    public void removeListener( CommandQueueListener pListener ) {
        mListeners.remove( pListener );
    }

    public boolean hasNext() {
        return mQueue.size() > 0;
    }

    /**
     * Get the command at the specified index. <code>0</code> is the next
     * command to be executed.
     *
     * @param pIndex
     *
     * @return the command
     *
     * @throws IndexOutOfBoundsException if <code>index < 0 || index > {@link #getSize()}</code>
     */
    public Command get( int pIndex ) {
        return mQueue.get( pIndex );
    }

    public Command remove( int pIndex ) {
        return mQueue.remove( pIndex );
    }

    public void clear() {
        mQueue.clear();
    }

    public int getSize() {
        return mQueue.size();
    }

    public abstract void add( Command pCommand );

    protected boolean addImpl( Command pCommand ) {
//      Debug.println("CommandQueue.addImpl(" + command + ')');
        if ( !fireBeforeCommandAdded( pCommand ) ) {
            return false;
        }

        mQueue.add( pCommand );
        fireAfterCommandAdded( pCommand );
        return true;
    }

    protected abstract void scheduleRunIteration();

    protected void run() {
//      Debug.println("CommandQueue.run()");
        executeCommand( mQueue.remove( 0 ) );
        if ( hasNext() ) {
            scheduleRunIteration();
        }
    }

    /**
     * Notifies listeners and executes the specified command.
     * <ul>
     * <li>pre: the command has been removed from the queue</li>
     * <li>post: the queue may have be modified</li>
     * </ul>
     *
     * @param pCommand
     */
    protected void executeCommand( Command pCommand ) {
//      Debug.println("CommandQueue.executeCommand(" + command + ")");
        if ( !fireBeforeCommandExecuted( pCommand ) ) {
            return;
        }

        executeCommandImpl( pCommand );
        fireAfterCommandExecuted( pCommand );
    }

    protected void executeCommandImpl( Command pCommand ) {
        pCommand.execute();
    }

    protected boolean fireBeforeCommandAdded( Command pCommand ) {
        if ( mListeners.size() == 0 ) {
            return true;
        }

        boolean result = true;

        Object[] listeners = mListeners.toArray();
        for ( Object listener : listeners ) {
            result &= ((CommandQueueListener) listener).beforeCommandAdded( this, pCommand );
        }
        return result;
    }

    protected void fireAfterCommandAdded( Command pCommand ) {
        if ( mListeners.size() == 0 ) {
            return;
        }

        Object[] listeners = mListeners.toArray();
        for ( Object listener : listeners ) {
            ((CommandQueueListener) listener).afterCommandAdded( this, pCommand );
        }
    }

    protected boolean fireBeforeCommandExecuted( Command pCommand ) {
        if ( mListeners.size() == 0 ) {
            return true;
        }

        boolean result = true;

        Object[] listeners = mListeners.toArray();
        for ( Object listener : listeners ) {
            result &= ((CommandQueueListener) listener).beforeCommandExecuted( this, pCommand );
        }
        return result;
    }

    protected void fireAfterCommandExecuted( Command pCommand ) {
        if ( mListeners.size() == 0 ) {
            return;
        }

        Object[] listeners = mListeners.toArray();
        for ( Object listener : listeners ) {
            ((CommandQueueListener) listener).afterCommandExecuted( this, pCommand );
        }
    }

    @Override
    public String toString() {
        return "CommandQueueBase" + mQueue.toString();
    }
}

Commits for litesoft/trunk/Java/GWT/Client/src/org/litesoft/GWT/client/command/queue/CommandQueueBase.java

Diff revisions: vs.
Revision Author Commited Message
950 Diff Diff GeorgeS picture GeorgeS Thu 19 Jun, 2014 17:57:04 +0000

New Lines

948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

947 Diff Diff GeorgeS picture GeorgeS Fri 06 Jun, 2014 23:36:56 +0000

Correct Spelling of package!

49 Diff Diff GeorgeS picture GeorgeS Mon 12 Apr, 2010 02:59:10 +0000

License Text

23 Diff Diff GeorgeS picture GeorgeS Wed 24 Feb, 2010 00:34:32 +0000
2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000