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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
package org.litesoft.nasvideo.client;

import org.litesoft.GWT.client.*;
import org.litesoft.GWT.client.command.*;
import org.litesoft.GWT.client.command.queue.*;
import org.litesoft.GWT.client.dev.*;
import org.litesoft.GWT.client.logging.*;
import org.litesoft.GWT.client.rpc.*;
import org.litesoft.GWT.client.view.*;
import org.litesoft.GWT.client.widgets.*;
import org.litesoft.GWT.client.widgets.datatables.*;
import org.litesoft.bo.views.*;
import org.litesoft.bo.views.communication.*;
import org.litesoft.core.*;
import org.litesoft.core.simpletypes.temporal.*;
import org.litesoft.core.typeutils.*;
import org.litesoft.nasvideo.client.boviews.*;
import org.litesoft.nasvideo.client.ui.views.admin.*;
import org.litesoft.nasvideo.client.ui.views.home.*;
import org.litesoft.logger.*;
import org.litesoft.loggerconfig.*;
import org.litesoft.security.*;
import org.litesoft.uispecification.*;

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

public class NasVideo extends AbstractClientMainAppEntryPoint implements ViewDefs,
                                                                     RestrictedResourceSwitcherCallBack
{
    private VACMproxy mACM = new VACMproxy();

    // pull in all the factories. This can be broken out into different modules if compile becomes too slow.
    private ViewManagerImpl mVM = new ViewManagerImpl( mACM, //
                                                       // Admin
                                                       new ChangePasswordFactory(), //
                                                       new MyProfileFactory(), //
                                                       new ReportsFactory(), //
                                                       new UsersFactory(), //
                                                       new RestrictedResourceEditorFactory(), //
                                                       new RestrictedResourceManagementFactory(), //
                                                       // Reports...
                                                       // new MedicationTrackingReportFactory(), //
                                                       // HOME!
                                                       new HomeFactory() );

    public NasVideo()
    {
        super( new AppNames( "NasVideo", "NasVideo" ) );

        // add in all the factory-less screens. This can be broken out into different modules if compile becomes too slow.
//        mVM.add( ADMIN_RESTRICTED_RESOURCE_MANAGEMENT );
    }

    @Override
    public void onAppLoad()
    {
        System.out.println( "DevMode " + Dev.state() );

        replaceAppPanel();

        super.onAppLoad();

        CScomm.setInstance( new GwtCScomm( null, mVM, new AppInitializationCallback() ) );
    }

    public void finishAppLoad()
    {
        ClientContext zContext = ClientContext.get();

        Dev.init( zContext );

        AppPanel zAppPanel = new AppPanel( Dev.isDevMode() ? 1 : 0 ); // 1 = see Red Line

        CurrentUserViewAccessor zCUA = new CurrentUserViewAccessor( zAppPanel, mACM );
        CurrentRestrictedResourceViewAccessor zCSA = new CurrentRestrictedResourceViewAccessor( zAppPanel );
        CurrentRestrictedResourceOptionsAccessor zCRROA = new CurrentRestrictedResourceOptionsAccessor( new RestrictedResourceSwitcher( zAppPanel, this ) );

        WindowSizingPanel.setContent( zAppPanel );

        zContext.set( LoginServerStateChecker.class, UserViewDataProvider.getInstance() );
        zContext.set( LoginDialogViewFactory.class, new LoginDialogFactory() );
        zContext.set( LoginPasswordResetDialogViewFactory.class, new ResetPasswordDialogFactory() );
        zContext.set( ViewAccessControlManager.class, mACM );
        zContext.set( CurrentRestrictedResourceOptionsAccessor.class, zCRROA );
        zContext.set( CurrentRestrictedResourceViewAccessor.class, zCSA );
        zContext.set( CurrentUserViewAccessor.class, zCUA );
        zContext.set( LoginPasswordResetAccessor.class, zCUA );
        zContext.set( StatusMessageSinc.class, zAppPanel );
        zContext.set( SingleWidgetPanel.class, zAppPanel );
        zContext.set( PageRefreshableProxy.class, zAppPanel );
        zContext.set( CommandQueue.class, new CommandQueue() );
        zContext.set( ScreenViewShower.class, mVM );
        zContext.set( DialogViewShower.class, mVM );
        zContext.set( ViewFactoryAccessor.class, mVM );
        zContext.set( NextDemoUserRequestHandler.class, new NextDemoUserRequestHandlerImpl() );

        mVM.initialize();

        System.err.println( new UtilDateAdaptor() + " | Application Client Ready" );

        PaddingProperty.setDefaults( 2, 10, 2, 6 );

        zAppPanel.setInfoMessage( "Hello" );
    }

    protected void initializeLoggerFactory()
    {
        //noinspection NonJREEmulationClassesInClientCode
        LoggerFactory.init( new ConfigurationLoggerLevel(), BrowserAsLogSyncFactory.INSTANCE );
    }

    private class AppInitializationCallback implements AsyncCallback<AppInitializationResult>
    {
        @Override
        public void onFailure( Throwable pThrowable )
        {
            String message;

            if ( pThrowable instanceof InvocationException )
            {
                // see javadoc for InvocationException
                message = "A connection could not be established with the server";
            }
            else if ( pThrowable instanceof IncompatibleRemoteServiceException )
            {
                /*
                 * This _should_ not happen to users, so long as the .nocache
                 * file isn't cached by the client.
                 */
                message = "Client and server versions are incompatible. Try ctrl-clicking\n" + //
                          "or shift-clicking the browser refresh button, or clearing your\n" + //
                          "browser's cache in 'Internet Options' / your browser's preferences. ";
            }
            else
            {
                // probably an application-specific execption on the server
                message = "An application error occured on the server";
            }

            reportFailure( pThrowable, "onFailure()", message );
        }

        @Override
        public void onSuccess( AppInitializationResult result )
        {
            System.err.println( new UtilDateAdaptor() + " | Client AppInitialization" );

            if ( result == null )
            {
                UtilsGwt.closeWindowNoConfirm( 5 );
                return;
            }

            try
            {
                new ClientConfiguration( result.getClientConfig() ); // This line must preceed the next
                initializeLoggerFactory(); // ......................... This line must follow the previous

                AlertManager.setVersion( "Version " + result.getApplicationVersion() );

                finishAppLoad();
            }
            catch ( RuntimeException e )
            {
                reportFailure( e, "onSuccess()", null );
            }
        }

        private void reportFailure( Throwable pThrowable, String method, String message )
        {
            pThrowable.printStackTrace(); // prints the trace in the GWT hosted shell
            String html = "<h1>Application Initialization Failed</h1>" + //
                          "<p>" + message + "</p>" + //
                          "<p>at " + getClass().getName() + "." + method + "</p>" + //
                          "<p>Exception: </p>" + //
                          "<p><pre>" + pThrowable + "</pre></p>";
            DOM.setInnerHTML( RootPanel.getBodyElement(), html );
        }
    }

    private static class NextDemoUserRequestHandlerImpl implements NextDemoUserRequestHandler
    {
        @Override
        public void nextDemoUser()
        {
            UserViewDataProvider.getInstance().nextDemoUser( new SimpleDataProviderCallBack()
            {
                @Override
                public void error( String pError )
                {
                    new ShowScreenCommand( ViewDefs.HOME, pError ).execute();
                }
            } );
        }
    }

    @Override
    public void switchToRestrictedResource( AlternateRestrictedResourceOption pAlternateOption )
    {
        UserViewDataProvider.getInstance().attemptSwitchToRestrictedResource( (RestrictedResourceView) pAlternateOption, new SimpleDataProviderCallBack()
        {
            @Override
            public void error( String pError )
            {
                if ( Strings.isNullOrEmpty( pError ) )
                {
                    PageRefreshableProxy zRefreshableProxy = ClientContext.get().checkGet( PageRefreshableProxy.class );
                    if ( zRefreshableProxy != null )
                    {
                        zRefreshableProxy.refreshPage();
                        return;
                    }
                }
                new ShowScreenCommand( ViewDefs.HOME, pError ).execute();
            }
        } );
    }
}

Commits for litesoft/trunk/GWT_Sandbox/NAS-Video/src/org/litesoft/nasvideo/client/NasVideo.java

Diff revisions: vs.
Revision Author Commited Message
912 GeorgeS picture GeorgeS Fri 28 Jun, 2013 06:48:05 +0000

Revert to mixed & Working (PEDS & Prioritizer) code!