Android Open Source - sana Saved Procedure List






From Project

Back to project page sana.

License

The source code is released under:

Copyright (c) 2010, Moca All rights reserved. The source code for Moca is licensed under the BSD license as follows: Redistribution and use in source and binary forms, with or without modification, ...

If you think the Android project sana listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package org.moca.activity;
/* w  ww  .  j a v  a2  s  . co  m*/
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;

import org.json.JSONException;
import org.json.JSONObject;
import org.json.JSONTokener;
import org.moca.R;
import org.moca.db.MocaDB.ProcedureSQLFormat;
import org.moca.db.MocaDB.SavedProcedureSQLFormat;
import org.moca.service.BackgroundUploader;
import org.moca.service.QueueManager;
import org.moca.service.ServiceConnector;
import org.moca.service.ServiceListener;
import org.moca.util.MocaUtil;

import android.app.ListActivity;
import android.content.ContentUris;
import android.content.Intent;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.CheckBox;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.SimpleCursorAdapter;
import android.widget.TextView;

public class SavedProcedureList extends ListActivity implements SimpleCursorAdapter.ViewBinder {
  private static final String TAG = SavedProcedureList.class.toString();
  private static final String[] PROJECTION = {SavedProcedureSQLFormat._ID,
                        SavedProcedureSQLFormat.GUID, 
                        SavedProcedureSQLFormat.PROCEDURE_ID, 
                        SavedProcedureSQLFormat.PROCEDURE_STATE, 
                        SavedProcedureSQLFormat.UPLOAD_STATUS,
                        SavedProcedureSQLFormat.UPLOAD_QUEUE };
  private HashMap<Integer, String> procedureToName = new HashMap<Integer, String>();

    private ServiceConnector mConnector = new ServiceConnector();
    private BackgroundUploader mUploadService = null;

    private class BackgroundUploaderConnectionListener implements ServiceListener<BackgroundUploader> {
    public void onConnect(BackgroundUploader uploadService) {
      Log.i(TAG, "onServiceConnected");
      mUploadService = uploadService;
    }
    
    public void onDisconnect(BackgroundUploader uploadService) {
      Log.i(TAG, "onServiceDisconnected");
      mUploadService = null;
    }
    }  
  
  /**
   * Lookup procedure name in the database by primary key with memoization.
   * @return the procedure name for procedureId 
   */
  private String lookupProcedureName(int procedureId) {
    
    if(procedureToName.containsKey(procedureId)) {
      return procedureToName.get(procedureId);
    }
    
    Cursor cur2 = getContentResolver().query(ProcedureSQLFormat.CONTENT_URI,
        new String[] { ProcedureSQLFormat.TITLE },
        ProcedureSQLFormat._ID + " = ?",
        new String[] { Integer.toString(procedureId) }, null);
    cur2.moveToFirst();
    String title = cur2.getString(0);
    cur2.deactivate();
    
    procedureToName.put(procedureId, title);
    
    return title;
  }
  
  private String getPatientNameFromData(String jsonData) {
        String patientId = "";
        String patientFirst = "";
        String patientLast = "";
        
        try {
        JSONTokener tokener = new JSONTokener(jsonData);
            JSONObject answersDict = new JSONObject(tokener);
            if (answersDict.has("patientId"))
              patientId = (String)answersDict.get("patientId");
            if (answersDict.has("newPatientFirstName"))
              patientFirst = (String)answersDict.get("newPatientFirstName");
            if (answersDict.has("patientFirstName") && "".equals(patientFirst))
              patientFirst = (String)answersDict.get("patientFirstName");
            if (answersDict.has("newPatientLastName"))
              patientLast = (String)answersDict.get("newPatientLastName");
            if (answersDict.has("patientLastName") && "".equals(patientLast))
              patientLast = (String)answersDict.get("patientLastName");
        } catch(JSONException e) {
          
        }
        
        StringBuilder result = new StringBuilder(patientId);
        if(!patientFirst.equals("")) {
          result.append(" - ");
          result.append(patientFirst);
          result.append(" ");
          result.append(patientLast);
        }
        return result.toString();
  }
  
  private String getUploadStatus(int queueStatus, int queuePosition) {
    String message = "";
    if (queueStatus == 0 || queueStatus == -1) message = "Not Uploaded";
    else if (queueStatus == QueueManager.UPLOAD_STATUS_WAITING) {
      message = "Waiting in the queue to be uploaded, " + queuePosition;
      if (queuePosition == -1) message = "Waiting in the queue to be uploaded";
      else if (queuePosition == 1) message += "st in line";
      else if (queuePosition == 2) message += "nd in line";
      else if (queuePosition == 3) message += "rd in line";
      else message += "th in line";
    }
    else if (queueStatus == QueueManager.UPLOAD_STATUS_SUCCESS) message = "Uploaded Successfully";
    else if (queueStatus == QueueManager.UPLOAD_STATUS_IN_PROGRESS) message = "Upload in progress";
    else if (queueStatus == QueueManager.UPLOAD_NO_CONNECTIVITY) message = "Upload stalled - Waiting for connectivity";
    else if (queueStatus == QueueManager.UPLOAD_STATUS_FAILURE) message = "Upload failed";
    else if (queueStatus == QueueManager.UPLOAD_STATUS_CREDENTIALS_INVALID) message = "Upload stalled - username/password incorrect";
    else Log.i(TAG, "Not a valid number stored in database.");
    Log.i(TAG, "Message being set as the status of the procedure: " + message);
    return message;
  }
  
  
  public boolean setViewValue(View v, Cursor cur, int columnIndex) {
    try {
      if (v instanceof TextView) {
        ((TextView)v).setText(cur.getString(columnIndex));
        switch(columnIndex) {
        case 2:
          //Log.i(TAG, "Setting procedure name in SavedProcedureList text");
          int procedureId = cur.getInt(columnIndex);
          String procedureName = lookupProcedureName(procedureId);
          ((TextView)v).setText(procedureName);
          break;
        case 3:
          //Log.i(TAG, "Setting patient id and name in SavedProcedureList text");
          String jsonData = cur.getString(columnIndex);
          String patientName = getPatientNameFromData(jsonData);
          ((TextView)v).setText(patientName);
          break;
        case 4:
          Log.i(TAG, "Setting upload queue status in text view.");
          int queueStatus = cur.getInt(columnIndex);
          int queuePosition = cur.getInt(5);
          String message = getUploadStatus(queueStatus, queuePosition + 1);
          ((TextView)v).setText(message);
          break;
        }
      }
    }
    catch (Exception e) {
      Log.e(TAG, "Exception in setting the text in the list: " + e.toString());
    }
    
    return true;
  }
    
  @Override
  public void onCreate(Bundle bundle) {
    super.onCreate(bundle);
    
    // Connect to the background uploader service
    try {
          mConnector.setServiceListener(new BackgroundUploaderConnectionListener());
          mConnector.connect(this);
        }
        catch (Exception e) {
          Log.e(TAG, "Exception starting background upload service: " + e.toString());
          e.printStackTrace();
        }
    
        Cursor cursor = managedQuery(SavedProcedureSQLFormat.CONTENT_URI, PROJECTION, null,
                null, SavedProcedureSQLFormat.DEFAULT_SORT_ORDER);

        try {
          SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,                  
              R.layout.row, cursor,
                  new String[] { SavedProcedureSQLFormat.PROCEDURE_ID, SavedProcedureSQLFormat.PROCEDURE_STATE, 
                                        SavedProcedureSQLFormat.UPLOAD_STATUS },
                  new int[] { R.id.toptext, R.id.bottomtext, R.id.queue_status });
          adapter.setViewBinder(this);
          setListAdapter(adapter);
        }
        catch (Exception e) {
      Log.e(TAG, "Exception in creating SimpleCursorAdapter: " + e.toString());
    }
  }
  
  @Override
  public void onDestroy() {
    super.onDestroy();
    try {
      mConnector.disconnect(this);
      mUploadService = null;
    } catch (IllegalArgumentException e) {
      Log.e(TAG, "While disconnecting service got exception: " + e.toString());
      e.printStackTrace();
    }
  }
  
  @Override
    protected void onListItemClick(ListView l, View v, int position, long id) {
        Uri uri = ContentUris.withAppendedId(getIntent().getData(), id);
        Log.i(TAG, "procedure Uri in onListItemClick: " + uri);
        String action = getIntent().getAction();
        if (Intent.ACTION_PICK.equals(action) || Intent.ACTION_GET_CONTENT.equals(action)) {
            // The caller is waiting for us to return a note selected by
            // the user.  The have clicked on one, so return it now.
            setResult(RESULT_OK, new Intent().setData(uri));
            finish();
        } else {
            // Launch activity to view/edit the currently selected item
            startActivity(new Intent(Intent.ACTION_EDIT, uri));
        }
    }
  
  public static final int SELECT_ALL = 0;
  public static final int DELETE = 1;
  public static final int RESEND = 2;
  //public static final int CANCEL_UPLOAD = 2;

  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    super.onCreateOptionsMenu(menu);
    menu.add(0, SELECT_ALL, 0, "Select All");
    menu.add(0, DELETE, 1, "Delete");
    menu.add(0, RESEND, 2, "Resend");
    //menu.add(0, CANCEL_UPLOAD, 2, "Cancel Upload");
    return true;
  }
  
  public boolean onOptionsItemSelected(MenuItem item){

    switch (item.getItemId()) {
    case SELECT_ALL:
      selectAllProcedures();
      return true;
    case DELETE:
      deleteSelected();
      return true;
    case RESEND:
      resendSelected();
      return true;
    /*case CANCEL_UPLOAD:
      cancelUploads();
      return true;*/
    }
    return false;
  }
  
  //All checkboxes will be checked
  private void selectAllProcedures() {
    try {
      for (int x = 0; x < getListAdapter().getCount(); x++) {
        CheckBox checkbox = (CheckBox) getListView().getChildAt(x).findViewById(R.id.icon);
        checkbox.setChecked(true);
        Log.i(TAG, "Is checkbox checked? (Should be true): " + checkbox.isChecked());
      }
    }
    catch (Exception e) {
      Log.i(TAG, "Exception in selectAll(): " + e.toString());
    }
  }
  
  /**
   * Unselect all checked items in the list.
   */
  private void unselectAllProcedures() {
    try {
      for (int x = 0; x < getListAdapter().getCount(); x++) {
        CheckBox checkbox = (CheckBox) getListView().getChildAt(x).findViewById(R.id.icon);
        checkbox.setChecked(false);
      }
    }
    catch (Exception e) {
      Log.i(TAG, "Exception in unselectAll(): " + e.toString());
    }
  }
  
  /**
   * Delete every checked item in the list.
   */
  private void deleteSelected() {
    List<Long> ids = new LinkedList<Long>();
    ListAdapter adapter = getListAdapter();
    ListView view = getListView();
    try {
      for (int x = 0; x < adapter.getCount(); x++) {
        CheckBox checkbox = (CheckBox) view.getChildAt(x).findViewById(R.id.icon);
        if (checkbox.isChecked()) {
          long itemId = adapter.getItemId(x);
          ids.add(itemId);
        }
      }
      unselectAllProcedures();
      
      String idList = MocaUtil.formatPrimaryKeyList(ids);

      // Now delete the ids
      getContentResolver().delete(SavedProcedureSQLFormat.CONTENT_URI, 
          SavedProcedureSQLFormat._ID + " IN " + idList, null); 
    }
    catch (Exception e) {
      unselectAllProcedures();
      Log.i(TAG, "Exception in deleteSelected(): " + e.toString());
    }
  }
  
  /**
   * Resend every checked item in the list.
   */
  private void resendSelected() {
    try {
      if (mUploadService != null) {
        ListAdapter adapter = getListAdapter();
        ListView view = getListView();
        Uri contentUri = getIntent().getData();
        for (int x = 0; x < adapter.getCount(); x++) {
          CheckBox checkbox = (CheckBox)view.getChildAt(x).findViewById(R.id.icon);
          if (checkbox.isChecked()) {
            Uri procedure = ContentUris.withAppendedId(contentUri, (Long) view.getItemIdAtPosition(x));
            Log.i(TAG, "Resending procedure: " + procedure);
            mUploadService.addProcedureToQueue(procedure);
          }
        }
      }
    } catch (Exception e) {
      Log.e(TAG, "While resending selected procedures, got exception: " + e.toString());
      e.printStackTrace();
    }
  }
  
  //private static ContentResolver contentResolver;
  //If selected procedures are in queue or are currently being uploaded, cancel the upload
  /*private void cancelUploads() {
    try{
      for (int x = 0; x < getListAdapter().getCount(); x++) {
        CheckBox checkbox = (CheckBox) getListView().getChildAt(x).findViewById(R.id.icon);
        Uri procedure = ContentUris.withAppendedId(getIntent().getData(), (Long) getListView().getItemIdAtPosition(x));
        if (checkbox.isChecked()) {
          // TODO Make is cancel if its in the middle of uploading, not just taking it out of the queue
          BackgroundUploader.removeFromQueue(procedure);
        }
      }
      unselectAllProcedures();
    }
    catch (Exception e) {
      unselectAllProcedures();
      Log.i(TAG, "Exception in cancelSelected(): " + e.toString());
    }
  }*/
}




Java Source Code List

.Moca.java
org.moca.Constants.java
org.moca.ImagePreviewDialog.java
org.moca.ScalingImageAdapter.java
org.moca.SelectableImageView.java
org.moca.activity.NotificationList.java
org.moca.activity.NotificationViewer.java
org.moca.activity.PatientInfoDialog.java
org.moca.activity.ProcedureRunner.java
org.moca.activity.ProceduresList.java
org.moca.activity.SavedProcedureList.java
org.moca.activity.Settings.java
org.moca.db.EncounterDAO.java
org.moca.db.EventDAO.java
org.moca.db.EventProvider.java
org.moca.db.Event.java
org.moca.db.ImageProvider.java
org.moca.db.MocaDB.java
org.moca.db.NotificationMessage.java
org.moca.db.NotificationProvider.java
org.moca.db.PatientInfo.java
org.moca.db.PatientProvider.java
org.moca.db.PatientValidator.java
org.moca.db.ProcedureDAO.java
org.moca.db.ProcedureProvider.java
org.moca.db.SavedProcedureProvider.java
org.moca.db.SoundProvider.java
org.moca.media.AudioPlayer.java
org.moca.net.MDSCode.java
org.moca.net.MDSInterface.java
org.moca.net.MDSNotification.java
org.moca.net.MDSResult.java
org.moca.net.SMSReceive.java
org.moca.procedure.BinaryUploadElement.java
org.moca.procedure.DateElement.java
org.moca.procedure.GpsElement.java
org.moca.procedure.MultiSelectElement.java
org.moca.procedure.PatientIdElement.java
org.moca.procedure.PictureElement.java
org.moca.procedure.ProcedureElement.java
org.moca.procedure.ProcedurePage.java
org.moca.procedure.ProcedureParseException.java
org.moca.procedure.Procedure.java
org.moca.procedure.RadioElement.java
org.moca.procedure.SelectElement.java
org.moca.procedure.SoundElement.java
org.moca.procedure.TextElement.java
org.moca.procedure.TextEntryElement.java
org.moca.procedure.ValidationError.java
org.moca.procedure.branching.Criteria.java
org.moca.procedure.branching.Criterion.java
org.moca.procedure.branching.LogicAnd.java
org.moca.procedure.branching.LogicBase.java
org.moca.procedure.branching.LogicNot.java
org.moca.procedure.branching.LogicOr.java
org.moca.service.BackgroundUploader.java
org.moca.service.QueueManager.java
org.moca.service.ServiceConnector.java
org.moca.service.ServiceListener.java
org.moca.task.CheckCredentialsTask.java
org.moca.task.ImageProcessingTaskRequest.java
org.moca.task.ImageProcessingTask.java
org.moca.task.MDSSyncTask.java
org.moca.task.PatientLookupListener.java
org.moca.task.PatientLookupTask.java
org.moca.task.ResetDatabaseTask.java
org.moca.task.ValidationListener.java
org.moca.util.MocaUtil.java
org.moca.util.UserDatabase.java