no need for asynctask - just grab the status directly
This commit is contained in:
parent
e2f4f5f1f2
commit
3a82421b63
|
@ -32,7 +32,6 @@ import android.content.pm.PackageManager;
|
||||||
import android.content.pm.PackageManager.NameNotFoundException;
|
import android.content.pm.PackageManager.NameNotFoundException;
|
||||||
import android.content.res.Configuration;
|
import android.content.res.Configuration;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.AsyncTask;
|
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.os.Handler;
|
import android.os.Handler;
|
||||||
import android.os.IBinder;
|
import android.os.IBinder;
|
||||||
|
@ -831,131 +830,94 @@ public class Orbot extends ActionBarActivity implements TorConstants, OnLongClic
|
||||||
aDialog.setCanceledOnTouchOutside(true);
|
aDialog.setCanceledOnTouchOutside(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
private void updateStatus (String torServiceMsg)
|
||||||
* Set the state of the running/not running graphic and label
|
|
||||||
* this all needs to be looked at w/ the shift to progressDialog
|
|
||||||
*/
|
|
||||||
public void updateStatus (String torServiceMsg)
|
|
||||||
{
|
{
|
||||||
new updateStatusAsync().execute(torServiceMsg);
|
|
||||||
}
|
|
||||||
|
|
||||||
private class updateStatusAsync extends AsyncTask<String, Void, Integer> {
|
|
||||||
|
|
||||||
String mTorServiceMsg = null;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected Integer doInBackground(String... params) {
|
|
||||||
|
|
||||||
mTorServiceMsg = params[0];
|
|
||||||
int newTorStatus = TorServiceConstants.STATUS_OFF;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
if (mService != null)
|
|
||||||
return new Integer(mService.getStatus());
|
|
||||||
|
|
||||||
}
|
|
||||||
catch (Exception e)
|
|
||||||
{
|
|
||||||
//error
|
|
||||||
Log.d(TAG,"error in update status",e);
|
|
||||||
}
|
|
||||||
|
|
||||||
return newTorStatus;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
int newTorStatus = torStatus;
|
||||||
protected void onPostExecute(Integer result) {
|
|
||||||
|
if (mService != null)
|
||||||
updateUI(result.intValue());
|
try {newTorStatus = mService.getStatus();}
|
||||||
|
catch (RemoteException e){}
|
||||||
super.onPostExecute(result);
|
|
||||||
}
|
//now update the layout_main UI based on the status
|
||||||
|
if (imgStatus != null)
|
||||||
private void updateUI (int newTorStatus)
|
{
|
||||||
{
|
|
||||||
|
if (newTorStatus == TorServiceConstants.STATUS_ON)
|
||||||
//now update the layout_main UI based on the status
|
|
||||||
if (imgStatus != null)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
if (newTorStatus == TorServiceConstants.STATUS_ON)
|
|
||||||
{
|
|
||||||
|
|
||||||
imgStatus.setImageResource(R.drawable.toron);
|
|
||||||
|
|
||||||
String lblMsg = getString(R.string.status_activated);
|
|
||||||
lblStatus.setText(lblMsg);
|
|
||||||
|
|
||||||
if (mItemOnOff != null)
|
|
||||||
mItemOnOff.setTitle(R.string.menu_stop);
|
|
||||||
|
|
||||||
|
|
||||||
if (mTorServiceMsg != null && mTorServiceMsg.length() > 0)
|
|
||||||
{
|
|
||||||
appendLogTextAndScroll(mTorServiceMsg);
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean showFirstTime = mPrefs.getBoolean("connect_first_time",true);
|
|
||||||
|
|
||||||
if (showFirstTime)
|
|
||||||
{
|
|
||||||
|
|
||||||
Editor pEdit = mPrefs.edit();
|
|
||||||
|
|
||||||
pEdit.putBoolean("connect_first_time",false);
|
|
||||||
|
|
||||||
pEdit.commit();
|
|
||||||
|
|
||||||
showAlert(getString(R.string.status_activated),getString(R.string.connect_first_time),true);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if (autoStartFromIntent)
|
|
||||||
{
|
|
||||||
setResult(RESULT_OK);
|
|
||||||
finish();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
else if (newTorStatus == TorServiceConstants.STATUS_CONNECTING)
|
|
||||||
{
|
|
||||||
|
|
||||||
imgStatus.setImageResource(R.drawable.torstarting);
|
|
||||||
|
|
||||||
if (mItemOnOff != null)
|
|
||||||
mItemOnOff.setTitle(R.string.menu_stop);
|
|
||||||
|
|
||||||
|
imgStatus.setImageResource(R.drawable.toron);
|
||||||
if (lblStatus != null && mTorServiceMsg != null)
|
|
||||||
if (mTorServiceMsg.indexOf('%')!=-1)
|
String lblMsg = getString(R.string.status_activated);
|
||||||
lblStatus.setText(mTorServiceMsg);
|
lblStatus.setText(lblMsg);
|
||||||
|
|
||||||
appendLogTextAndScroll(mTorServiceMsg);
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
else if (newTorStatus == TorServiceConstants.STATUS_OFF)
|
|
||||||
{
|
|
||||||
imgStatus.setImageResource(R.drawable.toroff);
|
|
||||||
lblStatus.setText(getString(R.string.status_disabled) + "\n" + getString(R.string.press_to_start));
|
|
||||||
|
|
||||||
if (mItemOnOff != null)
|
|
||||||
mItemOnOff.setTitle(R.string.menu_start);
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
torStatus = newTorStatus;
|
if (mItemOnOff != null)
|
||||||
|
mItemOnOff.setTitle(R.string.menu_stop);
|
||||||
}
|
|
||||||
|
|
||||||
|
if (torServiceMsg != null && torServiceMsg.length() > 0)
|
||||||
|
{
|
||||||
|
appendLogTextAndScroll(torServiceMsg);
|
||||||
|
}
|
||||||
|
|
||||||
|
boolean showFirstTime = mPrefs.getBoolean("connect_first_time",true);
|
||||||
|
|
||||||
|
if (showFirstTime)
|
||||||
|
{
|
||||||
|
|
||||||
|
Editor pEdit = mPrefs.edit();
|
||||||
|
|
||||||
|
pEdit.putBoolean("connect_first_time",false);
|
||||||
|
|
||||||
|
pEdit.commit();
|
||||||
|
|
||||||
|
showAlert(getString(R.string.status_activated),getString(R.string.connect_first_time),true);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (autoStartFromIntent)
|
||||||
|
{
|
||||||
|
setResult(RESULT_OK);
|
||||||
|
finish();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
else if (newTorStatus == TorServiceConstants.STATUS_CONNECTING)
|
||||||
|
{
|
||||||
|
|
||||||
|
imgStatus.setImageResource(R.drawable.torstarting);
|
||||||
|
|
||||||
|
if (mItemOnOff != null)
|
||||||
|
mItemOnOff.setTitle(R.string.menu_stop);
|
||||||
|
|
||||||
|
|
||||||
|
if (lblStatus != null && torServiceMsg != null)
|
||||||
|
if (torServiceMsg.indexOf('%')!=-1)
|
||||||
|
lblStatus.setText(torServiceMsg);
|
||||||
|
|
||||||
|
appendLogTextAndScroll(torServiceMsg);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
else if (newTorStatus == TorServiceConstants.STATUS_OFF)
|
||||||
|
{
|
||||||
|
imgStatus.setImageResource(R.drawable.toroff);
|
||||||
|
lblStatus.setText(getString(R.string.status_disabled) + "\n" + getString(R.string.press_to_start));
|
||||||
|
|
||||||
|
if (mItemOnOff != null)
|
||||||
|
mItemOnOff.setTitle(R.string.menu_start);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
torStatus = newTorStatus;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// guess what? this start's Tor! actually no it just requests via the local ITorService to the remote TorService instance
|
// guess what? this start's Tor! actually no it just requests via the local ITorService to the remote TorService instance
|
||||||
// to start Tor
|
// to start Tor
|
||||||
|
@ -1209,7 +1171,7 @@ public class Orbot extends ActionBarActivity implements TorConstants, OnLongClic
|
||||||
|
|
||||||
handleIntents();
|
handleIntents();
|
||||||
|
|
||||||
updateStatus("");
|
updateStatus("");
|
||||||
|
|
||||||
} catch (RemoteException e) {
|
} catch (RemoteException e) {
|
||||||
// In this case the service has crashed before we could even
|
// In this case the service has crashed before we could even
|
||||||
|
|
Loading…
Reference in New Issue