/* * Firetweet - Twitter client for Android * * Copyright (C) 2012-2014 Mariotaku Lee <mariotaku.lee@gmail.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.getlantern.firetweet.util; import android.app.Application; import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.content.ServiceConnection; import android.os.IBinder; import android.os.RemoteException; import org.getlantern.firetweet.Constants; import org.getlantern.firetweet.IStatusShortener; import org.getlantern.firetweet.model.ParcelableStatusUpdate; import org.getlantern.firetweet.model.StatusShortenResult; import static org.getlantern.firetweet.util.ServiceUtils.bindToService; public final class StatusShortenerInterface implements Constants, IStatusShortener { private IStatusShortener mShortener; private final ServiceConnection mConntecion = new ServiceConnection() { @Override public void onServiceConnected(final ComponentName service, final IBinder obj) { mShortener = IStatusShortener.Stub.asInterface(obj); } @Override public void onServiceDisconnected(final ComponentName service) { mShortener = null; } }; private StatusShortenerInterface(final Context context, final String shortenerName) { final Intent intent = new Intent(INTENT_ACTION_EXTENSION_SHORTEN_STATUS); final ComponentName component = ComponentName.unflattenFromString(shortenerName); intent.setComponent(component); bindToService(context, intent, mConntecion); } @Override public IBinder asBinder() { // Useless here return mShortener.asBinder(); } @Override public StatusShortenResult shorten(final ParcelableStatusUpdate status, final String overrideStatusText) throws RemoteException { if (mShortener == null) return null; try { return mShortener.shorten(status, overrideStatusText); } catch (final RemoteException e) { e.printStackTrace(); } return null; } public void waitForService() { while (mShortener == null) { try { Thread.sleep(100L); } catch (final InterruptedException e) { e.printStackTrace(); } } } public static StatusShortenerInterface getInstance(final Application application, final String shortener_name) { if (shortener_name == null) return null; final Intent intent = new Intent(INTENT_ACTION_EXTENSION_SHORTEN_STATUS); final ComponentName component = ComponentName.unflattenFromString(shortener_name); intent.setComponent(component); if (application.getPackageManager().queryIntentServices(intent, 0).size() != 1) return null; return new StatusShortenerInterface(application, shortener_name); } }