Package com.totsp.gwittir.client.util.impl

Source Code of com.totsp.gwittir.client.util.impl.WindowContextPersisterHTML5

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package com.totsp.gwittir.client.util.impl;

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

import com.google.gwt.user.client.Window;
import com.totsp.gwittir.client.jsni.JavaScriptObjectDecorator;
import com.totsp.gwittir.client.log.Level;
import com.totsp.gwittir.client.log.Logger;
import com.totsp.gwittir.client.util.WindowContext.WindowContextCallback;
import com.totsp.gwittir.client.util.html5db.Database;
import com.totsp.gwittir.client.util.html5db.Databases;
import com.totsp.gwittir.client.util.html5db.ResultSet;
import com.totsp.gwittir.client.util.html5db.ResultsCallback;
import com.totsp.gwittir.client.util.html5db.SQLError;
import com.totsp.gwittir.client.util.html5db.Transaction;
import com.totsp.gwittir.client.util.html5db.TransactionTask;

/**
* This is a persistence mechanism for newer versions of WebKit based on the
* HTML SQL storage:
*
* http://webkit.org/misc/DatabaseExample.html
*
* @author kebernet
*/
public class WindowContextPersisterHTML5 extends AbstractWindowContextPersister {
  private static final int QUOTA = 512000;
  private Database db;
  private HashMap<String, String> loaded = new HashMap<String, String>();

  @Override
  public int getByteLimit() {
    return 512000;
  }

  @Override
  public Map<String, String> getWindowContextData() {
    return this.loaded;
  }

  @Override
  public void storeWindowContextData(
      final Map<String, String> windowContextData) {
    db.run(new TransactionTask() {
      public void run(Transaction tx) {
        for (Entry<String, String> entry : windowContextData.entrySet()) {
          tx
              .execute(
                  "INSERT INTO windowcontext (key, value) VALUES ( ?, ? )",
                  new String[] { entry.getKey(),
                      entry.getValue() },
                  new ResultsCallback() {

                    public void onFailure(Transaction tx,
                        SQLError error) {
                      Window.alert("Insertion failure "
                          + error.getMessage());
                    }

                    public void onSuccess(Transaction tx,
                        ResultSet rs) {
                      Logger.getAnonymousLogger().log(
                          Level.INFO,
                          "Insertion made.", null);
                    }
                  });
        }
      }

    });
  }

  @Override
  public void init(final WindowContextCallback listener) {

    db = Databases.openDatabase("gwittir-windowcontext", "1.0",
        "This gwittir window context database", QUOTA);
    db.run(new TransactionTask() {
      public void run(Transaction tx) {
        tx.execute("SELECT COUNT(*) FROM windowcontext", null,
            new ResultsCallback() {
              public void onSuccess(Transaction tx, ResultSet rs) {
                tx.execute(
                    "SELECT key, value FROM windowcontext",
                    null, new ResultsCallback() {

                      public void onSuccess(
                          Transaction tx, ResultSet rs) {
                        for (JavaScriptObjectDecorator d : rs
                            .getRows()) {
                          loaded
                              .put(
                                  d
                                      .getStringProperty("key"),
                                  d
                                      .getStringProperty("value"));
                          listener.onInitialized();
                        }
                      }

                      public void onFailure(
                          Transaction tx,
                          SQLError error) {
                        Window.alert("Select failed");
                      }

                    });
              }

              public void onFailure(Transaction tx, SQLError error) {
                tx
                    .execute(
                        "CREATE TABLE IF NOT EXISTS windowcontext (key TEXT, value TEXT)",
                        null, new ResultsCallback() {
                          public void onSuccess(
                              Transaction tx,
                              ResultSet rs) {
                            listener
                                .onInitialized();
                          }

                          public void onFailure(
                              Transaction tx,
                              SQLError error) {
                            Window
                                .alert("Table Create failed");

                          }
                        });
              }
            });
      }
    });
  }

}
TOP

Related Classes of com.totsp.gwittir.client.util.impl.WindowContextPersisterHTML5

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.