~dhis-mobile-devs/dhis-mobile/senegal

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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
package org.hisp.dhis.mobile.midlet;

/*
 * Copyright (c) 2004-2011, University of Oslo All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
 * following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of
 * conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation and/or other materials provided with the
 * distribution. * Neither the name of the HISP project nor the names of its contributors may be used to endorse or
 * promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

import java.io.IOException;
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;
import javax.microedition.rms.RecordStoreException;

import org.hisp.dhis.mobile.model.TextMapping;
import org.hisp.dhis.mobile.recordstore.SettingRecordStore;
import org.hisp.dhis.mobile.ui.Text;
import org.hisp.dhis.mobile.ui.TextMappingLoader;
import org.hisp.dhis.mobile.view.LoginView;
import org.hisp.dhis.mobile.view.OrgUnitSelectView;
import org.hisp.dhis.mobile.view.PinView;
import org.hisp.dhis.mobile.view.SettingView;
import org.hisp.dhis.mobile.view.SplashScreenView;
import org.hisp.dhis.mobile.view.WaitingView;

public class DHISMIDlet
    extends MIDlet
{
    // Debug Mode

    public static final boolean DEBUG = false;

    public static final String DEBUG_PREFIX = "[DEBUG] ";

    // Flag

    public static boolean isDownloading;

    // Common MIDlet Variables

    private SplashScreenView splashScreenView;

    private WaitingView waitingView;

    private LoginView loginView;

    private OrgUnitSelectView orgUnitSelectView;

    private PinView pinView;

    private SettingView settingView;

    // Others

    public static String DEFAULT_LOCALE = "en-GB";

    public static final String BLANK = "";

    // For text value

    public static final int TEXT_NUMERIC = 8;

    public static final int TEXT_STRING = 64;

    protected void destroyApp( boolean b )
        throws MIDletStateChangeException
    {
        // TODO Auto-generated method stub
    }

    protected void pauseApp()
    {
        // TODO Auto-generated method stub
    }

    protected void startApp()
        throws MIDletStateChangeException
    {
        try
        {
            this.loadLanguageLocale();
        }
        catch ( RecordStoreException e )
        {
            e.printStackTrace();
        }
        catch ( IOException e )
        {
            e.printStackTrace();
        }
        this.getSplashScreenView().showView();
    }

    private void loadLanguageLocale()
        throws RecordStoreException, IOException
    {
        SettingRecordStore settingRecordStore = new SettingRecordStore();
        String locale = settingRecordStore.get( SettingRecordStore.LOCALE );

        if ( locale.equals( "" ) )
        {
            TextMapping textMapping = TextMappingLoader.load( getSystemLocale() );
            Text.setTextMapping( textMapping );
        }
        else
        {
            TextMapping textMapping = TextMappingLoader.load( locale );
            Text.setTextMapping( textMapping );
        }

    }

    public void exitMIDlet()
    {
        try
        {
            this.destroyApp( true );
        }
        catch ( MIDletStateChangeException e )
        {
            e.printStackTrace();
        }
        notifyDestroyed();
    }

    public static void debug( String message )
    {
        if ( DEBUG )
        {
            System.out.println( DEBUG_PREFIX + message );
        }
    }

    public SplashScreenView getSplashScreenView()
    {
        if ( splashScreenView == null )
        {
            splashScreenView = new SplashScreenView( this );
        }
        return splashScreenView;
    }

    public void setSplashScreenView( SplashScreenView splashScreenView )
    {
        this.splashScreenView = splashScreenView;
    }

    public WaitingView getWaitingView()
    {
        if ( waitingView == null )
        {
            waitingView = new WaitingView( this );
        }
        return waitingView;
    }

    public void setWaitingView( WaitingView waitingView )
    {
        this.waitingView = waitingView;
    }

    public LoginView getLoginView()
    {
        if ( loginView == null )
        {
            loginView = new LoginView( this );
        }
        return loginView;
    }

    public OrgUnitSelectView getOrgUnitSelectView()
    {
        if ( orgUnitSelectView == null )
        {
            orgUnitSelectView = new OrgUnitSelectView( this );
        }
        return orgUnitSelectView;
    }

    public void setOrgUnitSelectView( OrgUnitSelectView orgUnitSelectView )
    {
        this.orgUnitSelectView = orgUnitSelectView;
    }

    public void setLoginView( LoginView loginView )
    {
        this.loginView = loginView;
    }

    public PinView getPinView()
    {
        if ( pinView == null )
        {
            pinView = new PinView( this );
        }
        return pinView;
    }

    public void setPinView( PinView pinView )
    {
        this.pinView = pinView;
    }

    public SettingView getSettingView()
    {
        if ( settingView == null )
        {
            settingView = new SettingView( this );
        }
        return settingView;
    }

    public void setSettingView( SettingView settingView )
    {
        this.settingView = settingView;
    }

    public static boolean isDownloading()
    {
        return isDownloading;
    }

    public static void setDownloading( boolean isDownloading )
    {
        DHISMIDlet.isDownloading = isDownloading;
    }

    public static String getSystemLocale()
    {
        String locale = System.getProperty("microedition.locale");
        String language = locale.substring( 0, 2 );

        if ( locale == null )
        {
            locale = DEFAULT_LOCALE;
        }
        else if ( language.equalsIgnoreCase( "fr" ) )
        {
            locale = "fr_FR";

        }
        else if ( language.equalsIgnoreCase( "en" ) )
        {
            locale = "en_GB";
        }

        return locale;
    }
}