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
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
/*
 * Copyright 2010 Daniel Kurka
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
package com.googlecode.gwtphonegap.client;

import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.Timer;
import com.google.web.bindery.event.shared.EventBus;
import com.google.web.bindery.event.shared.HandlerRegistration;
import com.google.web.bindery.event.shared.SimpleEventBus;

import com.googlecode.gwtphonegap.client.accelerometer.Accelerometer;
import com.googlecode.gwtphonegap.client.camera.Camera;
import com.googlecode.gwtphonegap.client.capture.Capture;
import com.googlecode.gwtphonegap.client.compass.Compass;
import com.googlecode.gwtphonegap.client.connection.Connection;
import com.googlecode.gwtphonegap.client.contacts.Contacts;
import com.googlecode.gwtphonegap.client.device.Device;
import com.googlecode.gwtphonegap.client.event.Event;
import com.googlecode.gwtphonegap.client.file.File;
import com.googlecode.gwtphonegap.client.geolocation.Geolocation;
import com.googlecode.gwtphonegap.client.globalization.Globalization;
import com.googlecode.gwtphonegap.client.inappbrowser.InAppBrowser;
import com.googlecode.gwtphonegap.client.log.PhoneGapLog;
import com.googlecode.gwtphonegap.client.log.PhoneGapLogStandardImpl;
import com.googlecode.gwtphonegap.client.media.MediaModule;
import com.googlecode.gwtphonegap.client.notification.Notification;
import com.googlecode.gwtphonegap.client.plugins.PhoneGapPlugin;
import com.googlecode.gwtphonegap.client.splashscreen.SplashScreen;

import java.util.HashMap;
import java.util.Map;

public class PhoneGapStandardImpl implements PhoneGap {

  private static final int INIT_TICK = 10;

  private Device device;

  private Accelerometer accelerometer;
  private Camera camera;
  private Geolocation geolocation;
  private Notification notification;
  private Contacts contacts;
  private File file;
  private Connection connection;
  private Event event;
  private MediaModule mediaModule;
  private Compass compass;
  private Capture capture;
  private SplashScreen splashScreen;
  private InAppBrowser inAppBrowser;

  private Map<String, PhoneGapPlugin> plugins = new HashMap<String, PhoneGapPlugin>();

  private boolean hasHandlers = false;
  private EventBus handlerManager = new SimpleEventBus();

  private PhoneGapLogStandardImpl phoneGapLog;

  private boolean deviceReady;

  private Globalization globalization;

  public PhoneGapStandardImpl() {
    // log configures it self
    getLog();

    setupReadyHook();
  }

  public PhoneGapLog getLog() {
    if (phoneGapLog == null) {
      phoneGapLog = new PhoneGapLogStandardImpl();
    }
    return phoneGapLog;
  }

  @Override
  public boolean isPhoneGapInitialized() {
    return deviceReady;
  }

  @Override
  public void initializePhoneGap() {
    initializePhoneGap(10000);
  }

  @Override
  public void initializePhoneGap(final int timeoutInMs) {

    final long end = System.currentTimeMillis() + timeoutInMs;
    if (isPhoneGapInitialized()) {

      firePhoneGapAvailable();

    } else {
      Timer timer = new Timer() {

        @Override
        public void run() {
          if (isPhoneGapInitialized()) {
            firePhoneGapAvailable();
            return;
          }

          if (System.currentTimeMillis() - end > 0) {
            handlerManager.fireEvent(new PhoneGapTimeoutEvent());
          } else {
            schedule(INIT_TICK);
          }

        }
      };

      timer.schedule(INIT_TICK);
    }
  }

  @Override
  public HandlerRegistration addHandler(PhoneGapAvailableHandler handler) {
    hasHandlers = true;
    return handlerManager.addHandler(PhoneGapAvailableEvent.TYPE, handler);
  }

  @Override
  public HandlerRegistration addHandler(PhoneGapTimeoutHandler handler) {
    hasHandlers = true;
    return handlerManager.addHandler(PhoneGapTimeoutEvent.TYPE, handler);
  }

  @Override
  public Device getDevice() {
    if (device == null) {
      device = constructDevice();
    }
    return device;
  }

  @Override
  public Accelerometer getAccelerometer() {
    if (accelerometer == null) {
      accelerometer = constructAccelerometer();
    }
    return accelerometer;
  }

  @Override
  public Camera getCamera() {
    if (camera == null) {
      camera = constructCamera();
    }
    return camera;
  }

  @Override
  public Geolocation getGeolocation() {
    if (geolocation == null) {
      geolocation = constructGeolocation();
    }
    return geolocation;
  }

  @Override
  public Notification getNotification() {
    if (notification == null) {
      notification = constructNotification();
    }
    return notification;
  }

  private void firePhoneGapAvailable() {
    phoneGapLog.setClientId(getDevice().getUuid());

    handlerManager.fireEvent(new PhoneGapAvailableEvent());
  }

  @Override
  public Contacts getContacts() {
    if (contacts == null) {
      contacts = constructContacts();
    }
    return contacts;
  }

  @Override
  public PhoneGapPlugin getPluginById(String id) {
    return plugins.get(id);
  }

  @Override
  public void loadPlugin(String id, PhoneGapPlugin instance) {
    if (plugins.containsKey(id)) {
      throw new IllegalStateException("id is already in use");
    }

    plugins.put(id, instance);
  }

  @Override
  public File getFile() {
    if (file == null) {
      file = constructFile();
    }
    return file;
  }

  @Override
  public Connection getConnection() {
    if (connection == null) {
      connection = constructConnection();
    }
    return connection;
  }

  @Override
  public Event getEvent() {
    hasHandlers = true;
    if (event == null) {
      event = constructEvent();
    }
    return event;
  }

  @Override
  public native boolean exitApp() /*-{
		if ($wnd.navigator.app != null) {
			if ($wnd.navigator.app.exitApp != null) {
				$wnd.navigator.app.exitApp();
				return true;
			}
		}
		return false;

  }-*/;

  @Override
  public MediaModule getMedia() {
    if (mediaModule == null) {
      mediaModule = constructMediaModule();
    }
    return mediaModule;
  }

  @Override
  public Compass getCompass() {
    if (compass == null) {
      compass = constructCompass();
    }
    return compass;
  }

  @Override
  public Capture getCapture() {
    if (capture == null) {
      capture = constructCapture();
    }
    return capture;
  }

  @Override
  public SplashScreen getSplashScreen() {
    if (splashScreen == null) {
      splashScreen = constructSplashscreen();
    }
    return splashScreen;
  }

  @Override
  public boolean isPhoneGapDevice() {
    return true;
  }

  protected Device constructDevice() {
    return GWT.create(Device.class);
  }

  protected Accelerometer constructAccelerometer() {
    return GWT.create(Accelerometer.class);
  }

  protected Camera constructCamera() {
    return GWT.create(Camera.class);
  }

  protected Geolocation constructGeolocation() {
    return GWT.create(Geolocation.class);
  }

  protected Notification constructNotification() {
    return GWT.create(Notification.class);
  }

  protected Capture constructCapture() {
    return GWT.create(Capture.class);
  }

  protected SplashScreen constructSplashscreen() {
    return GWT.create(SplashScreen.class);
  }

  protected Compass constructCompass() {
    return GWT.create(Compass.class);
  }

  protected MediaModule constructMediaModule() {
    return GWT.create(MediaModule.class);
  }

  protected Event constructEvent() {
    Event event = GWT.create(Event.class);
    event.setEventBus(handlerManager);
    return event;
  }

  protected Connection constructConnection() {
    return GWT.create(Connection.class);
  }

  protected File constructFile() {
    return GWT.create(File.class);
  }

  protected Contacts constructContacts() {
    return GWT.create(Contacts.class);
  }

  protected void nativeDeviceReady() {
    deviceReady = true;
  }

  private native void setupReadyHook() /*-{
		var that = this;
		var f = function() {
			that.@com.googlecode.gwtphonegap.client.PhoneGapStandardImpl::nativeDeviceReady()();
		};
		$doc.addEventListener("deviceready", $entry(f), false);

  }-*/;

  @Override
  public void setEventBus(EventBus eventBus) {
    assert !hasHandlers : "The handlerManager can not be replaced because it has got handlers";
    handlerManager = eventBus;
    // We force the event construction so as the app can add events directly
    // to the eventBus instead of through the phoneGap.getEvent() method;
    event = constructEvent();
  }

  @Override
  public InAppBrowser getInAppBrowser() {
    if (inAppBrowser == null) {
      inAppBrowser = constructInAppBrowser();
    }
    return inAppBrowser;
  }

  protected InAppBrowser constructInAppBrowser() {
    return GWT.create(InAppBrowser.class);
  }

  @Override
  public Globalization getGlobalization() {
    if (globalization == null) {
      globalization = constructGlobalization();
    }
    return globalization;
  }

  protected Globalization constructGlobalization() {
    return GWT.create(Globalization.class);
  }

}

Commits for litesoft/trunk/mobileGWT/gwt-phonegap/src/main/java/com/googlecode/gwtphonegap/client/PhoneGapStandardImpl.java

Diff revisions: vs.
Revision Author Commited Message
906 Diff Diff GeorgeS picture GeorgeS Fri 07 Jun, 2013 22:50:38 +0000

Update to latest gwt-phonegap & MGWT.

875 Diff Diff GeorgeS picture GeorgeS Mon 10 Dec, 2012 03:37:57 +0000

Updated to current Version

740 Diff Diff GeorgeS picture GeorgeS Tue 26 Jun, 2012 00:47:02 +0000
680 GeorgeS picture GeorgeS Sun 20 May, 2012 23:20:51 +0000