OperationsService.java 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012-2014 ownCloud Inc.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2,
  6. * as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. *
  16. */
  17. package com.owncloud.android.services;
  18. import java.io.IOException;
  19. import java.util.Iterator;
  20. import java.util.concurrent.ConcurrentHashMap;
  21. import java.util.concurrent.ConcurrentLinkedQueue;
  22. import java.util.concurrent.ConcurrentMap;
  23. import com.owncloud.android.MainApp;
  24. import com.owncloud.android.R;
  25. import com.owncloud.android.datamodel.FileDataStorageManager;
  26. import com.owncloud.android.lib.common.OwnCloudAccount;
  27. import com.owncloud.android.lib.common.OwnCloudClient;
  28. import com.owncloud.android.lib.common.OwnCloudClientManagerFactory;
  29. import com.owncloud.android.lib.common.OwnCloudCredentials;
  30. import com.owncloud.android.lib.common.OwnCloudCredentialsFactory;
  31. import com.owncloud.android.lib.common.accounts.AccountUtils.AccountNotFoundException;
  32. import com.owncloud.android.lib.common.operations.OnRemoteOperationListener;
  33. import com.owncloud.android.lib.common.operations.RemoteOperation;
  34. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  35. import com.owncloud.android.lib.common.utils.Log_OC;
  36. import com.owncloud.android.lib.resources.files.ExistenceCheckRemoteOperation;
  37. import com.owncloud.android.lib.resources.shares.ShareType;
  38. import com.owncloud.android.lib.resources.users.GetRemoteUserNameOperation;
  39. import com.owncloud.android.operations.common.SyncOperation;
  40. import com.owncloud.android.operations.CreateFolderOperation;
  41. import com.owncloud.android.operations.CreateShareOperation;
  42. import com.owncloud.android.operations.GetServerInfoOperation;
  43. import com.owncloud.android.operations.MoveFileOperation;
  44. import com.owncloud.android.operations.OAuth2GetAccessToken;
  45. import com.owncloud.android.operations.RemoveFileOperation;
  46. import com.owncloud.android.operations.RenameFileOperation;
  47. import com.owncloud.android.operations.SynchronizeFileOperation;
  48. import com.owncloud.android.operations.UnshareLinkOperation;
  49. import android.accounts.Account;
  50. import android.accounts.AccountsException;
  51. import android.accounts.AuthenticatorException;
  52. import android.accounts.OperationCanceledException;
  53. import android.app.Service;
  54. import android.content.Intent;
  55. import android.net.Uri;
  56. import android.os.Binder;
  57. import android.os.Handler;
  58. import android.os.HandlerThread;
  59. import android.os.IBinder;
  60. import android.os.Looper;
  61. import android.os.Message;
  62. import android.os.Process;
  63. import android.util.Pair;
  64. public class OperationsService extends Service {
  65. private static final String TAG = OperationsService.class.getSimpleName();
  66. public static final String EXTRA_ACCOUNT = "ACCOUNT";
  67. public static final String EXTRA_SERVER_URL = "SERVER_URL";
  68. public static final String EXTRA_OAUTH2_QUERY_PARAMETERS = "OAUTH2_QUERY_PARAMETERS";
  69. public static final String EXTRA_REMOTE_PATH = "REMOTE_PATH";
  70. public static final String EXTRA_SEND_INTENT = "SEND_INTENT";
  71. public static final String EXTRA_NEWNAME = "NEWNAME";
  72. public static final String EXTRA_REMOVE_ONLY_LOCAL = "REMOVE_LOCAL_COPY";
  73. public static final String EXTRA_CREATE_FULL_PATH = "CREATE_FULL_PATH";
  74. public static final String EXTRA_SYNC_FILE_CONTENTS = "SYNC_FILE_CONTENTS";
  75. public static final String EXTRA_RESULT = "RESULT";
  76. public static final String EXTRA_NEW_PARENT_PATH = "NEW_PARENT_PATH";
  77. // TODO review if ALL OF THEM are necessary
  78. public static final String EXTRA_SUCCESS_IF_ABSENT = "SUCCESS_IF_ABSENT";
  79. public static final String EXTRA_USERNAME = "USERNAME";
  80. public static final String EXTRA_PASSWORD = "PASSWORD";
  81. public static final String EXTRA_AUTH_TOKEN = "AUTH_TOKEN";
  82. public static final String EXTRA_COOKIE = "COOKIE";
  83. public static final String ACTION_CREATE_SHARE = "CREATE_SHARE";
  84. public static final String ACTION_UNSHARE = "UNSHARE";
  85. public static final String ACTION_GET_SERVER_INFO = "GET_SERVER_INFO";
  86. public static final String ACTION_OAUTH2_GET_ACCESS_TOKEN = "OAUTH2_GET_ACCESS_TOKEN";
  87. public static final String ACTION_EXISTENCE_CHECK = "EXISTENCE_CHECK";
  88. public static final String ACTION_GET_USER_NAME = "GET_USER_NAME";
  89. public static final String ACTION_RENAME = "RENAME";
  90. public static final String ACTION_REMOVE = "REMOVE";
  91. public static final String ACTION_CREATE_FOLDER = "CREATE_FOLDER";
  92. public static final String ACTION_SYNC_FILE = "SYNC_FILE";
  93. public static final String ACTION_MOVE_FILE = "MOVE_FILE";
  94. public static final String ACTION_OPERATION_ADDED = OperationsService.class.getName() + ".OPERATION_ADDED";
  95. public static final String ACTION_OPERATION_FINISHED = OperationsService.class.getName() + ".OPERATION_FINISHED";
  96. private ConcurrentLinkedQueue<Pair<Target, RemoteOperation>> mPendingOperations =
  97. new ConcurrentLinkedQueue<Pair<Target, RemoteOperation>>();
  98. private ConcurrentMap<Integer, Pair<RemoteOperation, RemoteOperationResult>>
  99. mUndispatchedFinishedOperations =
  100. new ConcurrentHashMap<Integer, Pair<RemoteOperation, RemoteOperationResult>>();
  101. private static class Target {
  102. public Uri mServerUrl = null;
  103. public Account mAccount = null;
  104. public String mUsername = null;
  105. public String mPassword = null;
  106. public String mAuthToken = null;
  107. public String mCookie = null;
  108. public Target(Account account, Uri serverUrl, String username, String password, String authToken,
  109. String cookie) {
  110. mAccount = account;
  111. mServerUrl = serverUrl;
  112. mUsername = username;
  113. mPassword = password;
  114. mAuthToken = authToken;
  115. mCookie = cookie;
  116. }
  117. }
  118. private Looper mServiceLooper;
  119. private ServiceHandler mServiceHandler;
  120. private OperationsServiceBinder mBinder;
  121. private OwnCloudClient mOwnCloudClient = null;
  122. private Target mLastTarget = null;
  123. private FileDataStorageManager mStorageManager;
  124. private RemoteOperation mCurrentOperation = null;
  125. /**
  126. * Service initialization
  127. */
  128. @Override
  129. public void onCreate() {
  130. super.onCreate();
  131. HandlerThread thread = new HandlerThread("Operations service thread", Process.THREAD_PRIORITY_BACKGROUND);
  132. thread.start();
  133. mServiceLooper = thread.getLooper();
  134. mServiceHandler = new ServiceHandler(mServiceLooper, this);
  135. mBinder = new OperationsServiceBinder();
  136. }
  137. /**
  138. * Entry point to add a new operation to the queue of operations.
  139. *
  140. * New operations are added calling to startService(), resulting in a call to this method.
  141. * This ensures the service will keep on working although the caller activity goes away.
  142. *
  143. * IMPORTANT: the only operations performed here right now is {@link GetSharedFilesOperation}. The class
  144. * is taking advantage of it due to time constraints.
  145. */
  146. @Override
  147. public int onStartCommand(Intent intent, int flags, int startId) {
  148. //Log_OC.wtf(TAG, "onStartCommand init" );
  149. Message msg = mServiceHandler.obtainMessage();
  150. msg.arg1 = startId;
  151. mServiceHandler.sendMessage(msg);
  152. //Log_OC.wtf(TAG, "onStartCommand end" );
  153. return START_NOT_STICKY;
  154. }
  155. @Override
  156. public void onDestroy() {
  157. //Log_OC.wtf(TAG, "onDestroy init" );
  158. // Saving cookies
  159. try {
  160. OwnCloudClientManagerFactory.getDefaultSingleton().
  161. saveAllClients(this, MainApp.getAccountType());
  162. // TODO - get rid of these exceptions
  163. } catch (AccountNotFoundException e) {
  164. e.printStackTrace();
  165. } catch (AuthenticatorException e) {
  166. e.printStackTrace();
  167. } catch (OperationCanceledException e) {
  168. e.printStackTrace();
  169. } catch (IOException e) {
  170. e.printStackTrace();
  171. }
  172. //Log_OC.wtf(TAG, "Clear mUndispatchedFinisiedOperations" );
  173. mUndispatchedFinishedOperations.clear();
  174. //Log_OC.wtf(TAG, "onDestroy end" );
  175. super.onDestroy();
  176. }
  177. /**
  178. * Provides a binder object that clients can use to perform actions on the queue of operations,
  179. * except the addition of new operations.
  180. */
  181. @Override
  182. public IBinder onBind(Intent intent) {
  183. //Log_OC.wtf(TAG, "onBind" );
  184. return mBinder;
  185. }
  186. /**
  187. * Called when ALL the bound clients were unbound.
  188. */
  189. @Override
  190. public boolean onUnbind(Intent intent) {
  191. ((OperationsServiceBinder)mBinder).clearListeners();
  192. return false; // not accepting rebinding (default behaviour)
  193. }
  194. /**
  195. * Binder to let client components to perform actions on the queue of operations.
  196. *
  197. * It provides by itself the available operations.
  198. */
  199. public class OperationsServiceBinder extends Binder /* implements OnRemoteOperationListener */ {
  200. /**
  201. * Map of listeners that will be reported about the end of operations from a {@link OperationsServiceBinder} instance
  202. */
  203. private ConcurrentMap<OnRemoteOperationListener, Handler> mBoundListeners =
  204. new ConcurrentHashMap<OnRemoteOperationListener, Handler>();
  205. /**
  206. * Cancels an operation
  207. *
  208. * TODO
  209. */
  210. public void cancel() {
  211. // TODO
  212. }
  213. public void clearListeners() {
  214. mBoundListeners.clear();
  215. }
  216. /**
  217. * Adds a listener interested in being reported about the end of operations.
  218. *
  219. * @param listener Object to notify about the end of operations.
  220. * @param callbackHandler {@link Handler} to access the listener without breaking Android threading protection.
  221. */
  222. public void addOperationListener (OnRemoteOperationListener listener, Handler callbackHandler) {
  223. synchronized (mBoundListeners) {
  224. mBoundListeners.put(listener, callbackHandler);
  225. }
  226. }
  227. /**
  228. * Removes a listener from the list of objects interested in the being reported about the end of operations.
  229. *
  230. * @param listener Object to notify about progress of transfer.
  231. */
  232. public void removeOperationListener (OnRemoteOperationListener listener) {
  233. synchronized (mBoundListeners) {
  234. mBoundListeners.remove(listener);
  235. }
  236. }
  237. /**
  238. * TODO - IMPORTANT: update implementation when more operations are moved into the service
  239. *
  240. * @return 'True' when an operation that enforces the user to wait for completion is in process.
  241. */
  242. public boolean isPerformingBlockingOperation() {
  243. return (!mPendingOperations.isEmpty());
  244. }
  245. /**
  246. * Creates and adds to the queue a new operation, as described by operationIntent
  247. *
  248. * @param operationIntent Intent describing a new operation to queue and execute.
  249. * @return Identifier of the operation created, or null if failed.
  250. */
  251. public long newOperation(Intent operationIntent) {
  252. RemoteOperation operation = null;
  253. Target target = null;
  254. try {
  255. if (!operationIntent.hasExtra(EXTRA_ACCOUNT) &&
  256. !operationIntent.hasExtra(EXTRA_SERVER_URL)) {
  257. Log_OC.e(TAG, "Not enough information provided in intent");
  258. } else {
  259. Account account = operationIntent.getParcelableExtra(EXTRA_ACCOUNT);
  260. String serverUrl = operationIntent.getStringExtra(EXTRA_SERVER_URL);
  261. String username = operationIntent.getStringExtra(EXTRA_USERNAME);
  262. String password = operationIntent.getStringExtra(EXTRA_PASSWORD);
  263. String authToken = operationIntent.getStringExtra(EXTRA_AUTH_TOKEN);
  264. String cookie = operationIntent.getStringExtra(EXTRA_COOKIE);
  265. target = new Target(
  266. account,
  267. (serverUrl == null) ? null : Uri.parse(serverUrl),
  268. username,
  269. password,
  270. authToken,
  271. cookie
  272. );
  273. String action = operationIntent.getAction();
  274. if (action.equals(ACTION_CREATE_SHARE)) { // Create Share
  275. String remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  276. Intent sendIntent = operationIntent.getParcelableExtra(EXTRA_SEND_INTENT);
  277. if (remotePath.length() > 0) {
  278. operation = new CreateShareOperation(remotePath, ShareType.PUBLIC_LINK,
  279. "", false, "", 1, sendIntent);
  280. }
  281. } else if (action.equals(ACTION_UNSHARE)) { // Unshare file
  282. String remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  283. if (remotePath.length() > 0) {
  284. operation = new UnshareLinkOperation(
  285. remotePath,
  286. OperationsService.this);
  287. }
  288. } else if (action.equals(ACTION_GET_SERVER_INFO)) {
  289. // check OC server and get basic information from it
  290. operation = new GetServerInfoOperation(serverUrl, OperationsService.this);
  291. } else if (action.equals(ACTION_OAUTH2_GET_ACCESS_TOKEN)) {
  292. /// GET ACCESS TOKEN to the OAuth server
  293. String oauth2QueryParameters =
  294. operationIntent.getStringExtra(EXTRA_OAUTH2_QUERY_PARAMETERS);
  295. operation = new OAuth2GetAccessToken(
  296. getString(R.string.oauth2_client_id),
  297. getString(R.string.oauth2_redirect_uri),
  298. getString(R.string.oauth2_grant_type),
  299. oauth2QueryParameters);
  300. } else if (action.equals(ACTION_EXISTENCE_CHECK)) {
  301. // Existence Check
  302. String remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  303. boolean successIfAbsent = operationIntent.getBooleanExtra(EXTRA_SUCCESS_IF_ABSENT, false);
  304. operation = new ExistenceCheckRemoteOperation(remotePath, OperationsService.this, successIfAbsent);
  305. } else if (action.equals(ACTION_GET_USER_NAME)) {
  306. // Get User Name
  307. operation = new GetRemoteUserNameOperation();
  308. } else if (action.equals(ACTION_RENAME)) {
  309. // Rename file or folder
  310. String remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  311. String newName = operationIntent.getStringExtra(EXTRA_NEWNAME);
  312. operation = new RenameFileOperation(remotePath, newName);
  313. } else if (action.equals(ACTION_REMOVE)) {
  314. // Remove file or folder
  315. String remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  316. boolean onlyLocalCopy = operationIntent.getBooleanExtra(EXTRA_REMOVE_ONLY_LOCAL, false);
  317. operation = new RemoveFileOperation(remotePath, onlyLocalCopy);
  318. } else if (action.equals(ACTION_CREATE_FOLDER)) {
  319. // Create Folder
  320. String remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  321. boolean createFullPath = operationIntent.getBooleanExtra(EXTRA_CREATE_FULL_PATH, true);
  322. operation = new CreateFolderOperation(remotePath, createFullPath);
  323. } else if (action.equals(ACTION_SYNC_FILE)) {
  324. // Sync file
  325. String remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  326. boolean syncFileContents = operationIntent.getBooleanExtra(EXTRA_SYNC_FILE_CONTENTS, true);
  327. operation = new SynchronizeFileOperation(remotePath, account, syncFileContents, getApplicationContext());
  328. } else if (action.equals(ACTION_MOVE_FILE)) {
  329. // Move file/folder
  330. String remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  331. String newParentPath = operationIntent.getStringExtra(EXTRA_NEW_PARENT_PATH);
  332. operation = new MoveFileOperation(remotePath,newParentPath,account);
  333. }
  334. }
  335. } catch (IllegalArgumentException e) {
  336. Log_OC.e(TAG, "Bad information provided in intent: " + e.getMessage());
  337. operation = null;
  338. }
  339. if (operation != null) {
  340. mPendingOperations.add(new Pair<Target , RemoteOperation>(target, operation));
  341. startService(new Intent(OperationsService.this, OperationsService.class));
  342. //Log_OC.wtf(TAG, "New operation added, opId: " + operation.hashCode());
  343. // better id than hash? ; should be good enough by the time being
  344. return operation.hashCode();
  345. } else {
  346. //Log_OC.wtf(TAG, "New operation failed, returned Long.MAX_VALUE");
  347. return Long.MAX_VALUE;
  348. }
  349. }
  350. public boolean dispatchResultIfFinished(int operationId, OnRemoteOperationListener listener) {
  351. Pair<RemoteOperation, RemoteOperationResult> undispatched =
  352. mUndispatchedFinishedOperations.remove(operationId);
  353. if (undispatched != null) {
  354. listener.onRemoteOperationFinish(undispatched.first, undispatched.second);
  355. return true;
  356. //Log_OC.wtf(TAG, "Sending callback later");
  357. } else {
  358. if (!mPendingOperations.isEmpty()) {
  359. return true;
  360. } else {
  361. return false;
  362. }
  363. //Log_OC.wtf(TAG, "Not finished yet");
  364. }
  365. }
  366. }
  367. /**
  368. * Operations worker. Performs the pending operations in the order they were requested.
  369. *
  370. * Created with the Looper of a new thread, started in {@link OperationsService#onCreate()}.
  371. */
  372. private static class ServiceHandler extends Handler {
  373. // don't make it a final class, and don't remove the static ; lint will warn about a possible memory leak
  374. OperationsService mService;
  375. public ServiceHandler(Looper looper, OperationsService service) {
  376. super(looper);
  377. if (service == null) {
  378. throw new IllegalArgumentException("Received invalid NULL in parameter 'service'");
  379. }
  380. mService = service;
  381. }
  382. @Override
  383. public void handleMessage(Message msg) {
  384. mService.nextOperation();
  385. mService.stopSelf(msg.arg1);
  386. }
  387. }
  388. /**
  389. * Performs the next operation in the queue
  390. */
  391. private void nextOperation() {
  392. //Log_OC.wtf(TAG, "nextOperation init" );
  393. Pair<Target, RemoteOperation> next = null;
  394. synchronized(mPendingOperations) {
  395. next = mPendingOperations.peek();
  396. }
  397. if (next != null) {
  398. mCurrentOperation = next.second;
  399. RemoteOperationResult result = null;
  400. try {
  401. /// prepare client object to send the request to the ownCloud server
  402. if (mLastTarget == null || !mLastTarget.equals(next.first)) {
  403. mLastTarget = next.first;
  404. if (mLastTarget.mAccount != null) {
  405. OwnCloudAccount ocAccount = new OwnCloudAccount(mLastTarget.mAccount, this);
  406. mOwnCloudClient = OwnCloudClientManagerFactory.getDefaultSingleton().
  407. getClientFor(ocAccount, this);
  408. mStorageManager =
  409. new FileDataStorageManager(
  410. mLastTarget.mAccount,
  411. getContentResolver());
  412. } else {
  413. OwnCloudCredentials credentials = null;
  414. if (mLastTarget.mUsername != null &&
  415. mLastTarget.mUsername.length() > 0) {
  416. credentials = OwnCloudCredentialsFactory.newBasicCredentials(
  417. mLastTarget.mUsername,
  418. mLastTarget.mPassword); // basic
  419. } else if (mLastTarget.mAuthToken != null &&
  420. mLastTarget.mAuthToken.length() > 0) {
  421. credentials = OwnCloudCredentialsFactory.newBearerCredentials(
  422. mLastTarget.mAuthToken); // bearer token
  423. } else if (mLastTarget.mCookie != null &&
  424. mLastTarget.mCookie.length() > 0) {
  425. credentials = OwnCloudCredentialsFactory.newSamlSsoCredentials(
  426. mLastTarget.mCookie); // SAML SSO
  427. }
  428. OwnCloudAccount ocAccount = new OwnCloudAccount(
  429. mLastTarget.mServerUrl, credentials);
  430. mOwnCloudClient = OwnCloudClientManagerFactory.getDefaultSingleton().
  431. getClientFor(ocAccount, this);
  432. mStorageManager = null;
  433. }
  434. }
  435. /// perform the operation
  436. if (mCurrentOperation instanceof SyncOperation) {
  437. result = ((SyncOperation)mCurrentOperation).execute(mOwnCloudClient, mStorageManager);
  438. } else {
  439. result = mCurrentOperation.execute(mOwnCloudClient);
  440. }
  441. } catch (AccountsException e) {
  442. if (mLastTarget.mAccount == null) {
  443. Log_OC.e(TAG, "Error while trying to get authorization for a NULL account", e);
  444. } else {
  445. Log_OC.e(TAG, "Error while trying to get authorization for " + mLastTarget.mAccount.name, e);
  446. }
  447. result = new RemoteOperationResult(e);
  448. } catch (IOException e) {
  449. if (mLastTarget.mAccount == null) {
  450. Log_OC.e(TAG, "Error while trying to get authorization for a NULL account", e);
  451. } else {
  452. Log_OC.e(TAG, "Error while trying to get authorization for " + mLastTarget.mAccount.name, e);
  453. }
  454. result = new RemoteOperationResult(e);
  455. } catch (Exception e) {
  456. if (mLastTarget.mAccount == null) {
  457. Log_OC.e(TAG, "Unexpected error for a NULL account", e);
  458. } else {
  459. Log_OC.e(TAG, "Unexpected error for " + mLastTarget.mAccount.name, e);
  460. }
  461. result = new RemoteOperationResult(e);
  462. } finally {
  463. synchronized(mPendingOperations) {
  464. mPendingOperations.poll();
  465. }
  466. }
  467. //sendBroadcastOperationFinished(mLastTarget, mCurrentOperation, result);
  468. dispatchResultToOperationListeners(mLastTarget, mCurrentOperation, result);
  469. }
  470. }
  471. /**
  472. * Sends a broadcast when a new operation is added to the queue.
  473. *
  474. * Local broadcasts are only delivered to activities in the same process, but can't be done sticky :\
  475. *
  476. * @param target Account or URL pointing to an OC server.
  477. * @param operation Added operation.
  478. */
  479. private void sendBroadcastNewOperation(Target target, RemoteOperation operation) {
  480. Intent intent = new Intent(ACTION_OPERATION_ADDED);
  481. if (target.mAccount != null) {
  482. intent.putExtra(EXTRA_ACCOUNT, target.mAccount);
  483. } else {
  484. intent.putExtra(EXTRA_SERVER_URL, target.mServerUrl);
  485. }
  486. //LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(this);
  487. //lbm.sendBroadcast(intent);
  488. sendStickyBroadcast(intent);
  489. }
  490. // TODO - maybe add a notification for real start of operations
  491. /**
  492. * Sends a LOCAL broadcast when an operations finishes in order to the interested activities can update their view
  493. *
  494. * Local broadcasts are only delivered to activities in the same process.
  495. *
  496. * @param target Account or URL pointing to an OC server.
  497. * @param operation Finished operation.
  498. * @param result Result of the operation.
  499. */
  500. private void sendBroadcastOperationFinished(Target target, RemoteOperation operation, RemoteOperationResult result) {
  501. Intent intent = new Intent(ACTION_OPERATION_FINISHED);
  502. intent.putExtra(EXTRA_RESULT, result);
  503. if (target.mAccount != null) {
  504. intent.putExtra(EXTRA_ACCOUNT, target.mAccount);
  505. } else {
  506. intent.putExtra(EXTRA_SERVER_URL, target.mServerUrl);
  507. }
  508. //LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(this);
  509. //lbm.sendBroadcast(intent);
  510. sendStickyBroadcast(intent);
  511. }
  512. /**
  513. * Notifies the currently subscribed listeners about the end of an operation.
  514. *
  515. * @param target Account or URL pointing to an OC server.
  516. * @param operation Finished operation.
  517. * @param result Result of the operation.
  518. */
  519. private void dispatchResultToOperationListeners(
  520. Target target, final RemoteOperation operation, final RemoteOperationResult result) {
  521. int count = 0;
  522. Iterator<OnRemoteOperationListener> listeners = mBinder.mBoundListeners.keySet().iterator();
  523. while (listeners.hasNext()) {
  524. final OnRemoteOperationListener listener = listeners.next();
  525. final Handler handler = mBinder.mBoundListeners.get(listener);
  526. if (handler != null) {
  527. handler.post(new Runnable() {
  528. @Override
  529. public void run() {
  530. listener.onRemoteOperationFinish(operation, result);
  531. }
  532. });
  533. count += 1;
  534. }
  535. }
  536. if (count == 0) {
  537. //mOperationResults.put(operation.hashCode(), result);
  538. Pair<RemoteOperation, RemoteOperationResult> undispatched =
  539. new Pair<RemoteOperation, RemoteOperationResult>(operation, result);
  540. mUndispatchedFinishedOperations.put(operation.hashCode(), undispatched);
  541. }
  542. Log_OC.d(TAG, "Called " + count + " listeners");
  543. }
  544. }