blob: 7ebf2819835f6c8303f1e41423274cd29fe28544 [file] [log] [blame]
/*
* Copyright 2007 Google Inc.
*
* 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.google.zxing.client.j2me;
import com.google.zxing.client.result.BookmarkDoCoMoResult;
import com.google.zxing.client.result.EmailDoCoMoResult;
import com.google.zxing.client.result.ParsedReaderResult;
import com.google.zxing.client.result.ParsedReaderResultType;
import com.google.zxing.client.result.URIParsedResult;
import javax.microedition.io.ConnectionNotFoundException;
import javax.microedition.lcdui.Alert;
import javax.microedition.lcdui.AlertType;
import javax.microedition.lcdui.Canvas;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.media.Manager;
import javax.microedition.media.MediaException;
import javax.microedition.media.Player;
import javax.microedition.media.control.VideoControl;
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;
import java.io.IOException;
/**
* <p>The actual reader application {@link MIDlet}.</p>
*
* @author Sean Owen (srowen@google.com)
*/
public final class ZXingMIDlet extends MIDlet {
private Canvas canvas;
private Player player;
private VideoControl videoControl;
Player getPlayer() {
return player;
}
VideoControl getVideoControl() {
return videoControl;
}
protected void startApp() throws MIDletStateChangeException {
try {
player = Manager.createPlayer("capture://video");
player.realize();
AdvancedMultimediaManager.setZoom(player);
videoControl = (VideoControl) player.getControl("VideoControl");
canvas = new VideoCanvas(this);
canvas.setFullScreenMode(true);
videoControl.initDisplayMode(VideoControl.USE_DIRECT_VIDEO, canvas);
videoControl.setDisplayLocation(0, 0);
videoControl.setDisplaySize(canvas.getWidth(), canvas.getHeight());
videoControl.setVisible(true);
player.start();
Display.getDisplay(this).setCurrent(canvas);
} catch (IOException ioe) {
throw new MIDletStateChangeException(ioe.toString());
} catch (MediaException me) {
throw new MIDletStateChangeException(me.toString());
}
}
protected void pauseApp() {
if (player != null) {
try {
player.stop();
} catch (MediaException me) {
// continue?
showError(me);
}
}
}
protected void destroyApp(boolean unconditional) {
if (player != null) {
videoControl = null;
try {
player.stop();
} catch (MediaException me) {
// continue
}
player.deallocate();
player.close();
player = null;
}
}
void stop() {
destroyApp(false);
notifyDestroyed();
}
// Convenience methods to show dialogs
private void showOpenURL(final String text) {
Alert alert = new Alert("Open web page?", text, null, AlertType.CONFIRMATION);
alert.setTimeout(Alert.FOREVER);
final Command cancel = new Command("Cancel", Command.CANCEL, 1);
alert.addCommand(cancel);
CommandListener listener = new CommandListener() {
public void commandAction(Command command, Displayable displayable) {
if (command.getCommandType() == Command.OK) {
try {
platformRequest(text);
} catch (ConnectionNotFoundException cnfe) {
showError(cnfe);
} finally {
stop();
}
} else {
// cancel
Display.getDisplay(ZXingMIDlet.this).setCurrent(canvas);
}
}
};
alert.setCommandListener(listener);
showAlert(alert);
}
private void showAlert(String title, String text) {
Alert alert = new Alert(title, text, null, AlertType.INFO);
alert.setTimeout(Alert.FOREVER);
showAlert(alert);
}
void showError(Throwable t) {
showAlert(new Alert("Error", t.getMessage(), null, AlertType.ERROR));
}
private void showAlert(Alert alert) {
Display display = Display.getDisplay(this);
display.setCurrent(alert, canvas);
}
void handleDecodedText(String text) {
ParsedReaderResult result = ParsedReaderResult.parseReaderResult(text);
ParsedReaderResultType type = result.getType();
if (type.equals(ParsedReaderResultType.URI)) {
showOpenURL(((URIParsedResult) result).getURI());
} else if (type.equals(ParsedReaderResultType.BOOKMARK)) {
showOpenURL(((BookmarkDoCoMoResult) result).getURI());
} else if (type.equals(ParsedReaderResultType.EMAIL)) {
showOpenURL(((EmailDoCoMoResult) result).getMailtoURI());
} else {
showAlert("Barcode detected", result.getDisplayResult());
}
}
}