Exemplo n.º 1
0
  @Override
  public CachedImage get(CachedImageKey key) {
    boolean isContain = containsKey(key);
    if (!isContain) {
      return null;
    }

    CachedImage cachedImage = memoryCache.get(key);
    if (cachedImage != null && cachedImage.getWrap() != null) {
      if (Logger.isDebug()) Log.v("ImageCache", "hit memory cache");
      return cachedImage;
    }

    CachedImage temp = read(key);
    Bitmap bitmap = null;
    if (temp != null) {
      bitmap = temp.getWrap();
      if (cachedImage != null) {
        cachedImage.setWrap(bitmap);
      } else {
        cachedImage = temp;
        memoryCache.put(key, cachedImage);
      }
      if (Logger.isDebug()) Log.v("ImageCache", "hit local cache");
    }

    return cachedImage;
  }
Exemplo n.º 2
0
  @Override
  protected void onPostExecute(Boolean result) {
    super.onPostExecute(result);

    if (result) {
      if (Logger.isDebug())
        Toast.makeText(context, "reset remind successfully!", Toast.LENGTH_SHORT).show();
    }
    if (Logger.isDebug()) Log.v(TAG, "reset " + type + " remind count!" + result);
  }
Exemplo n.º 3
0
  @Override
  protected User doInBackground(Void... params) {
    if (image == null) {
      return null;
    }

    Weibo microBlog = GlobalVars.getMicroBlog(accountId);
    if (microBlog == null) {
      return null;
    }

    User user = null;
    try {

      if (image != null) {
        String fileExtension = FileUtil.getFileExtensionFromName(image.getName());
        int size = ImageQuality.Low.getSize();
        ImageQuality quality = sheJiaoMao.getImageUploadQuality();
        if (quality == ImageQuality.High || GlobalVars.NET_TYPE == NetType.WIFI) {
          size = ImageQuality.High.getSize();
        } else if (quality == ImageQuality.Middle || quality == ImageQuality.Low) {
          size = quality.getSize();
          if (Logger.isDebug()) Log.d(TAG, "prefix size: " + size);
          // 对低速网络进行压缩
          if (GlobalVars.NET_TYPE == NetType.MOBILE_GPRS
              || GlobalVars.NET_TYPE == NetType.MOBILE_EDGE) {
            size = ImageQuality.Low.getSize();
          }
        }
        String destName =
            ImageCache.getTempFolder()
                + File.separator
                + System.currentTimeMillis()
                + "."
                + fileExtension;
        File dest = new File(destName);
        boolean isSuccess = ImageUtil.scaleImageFile(image, dest, size);
        if (isSuccess) {
          image = dest;
        }
        user = microBlog.updateProfileImage(image);
      }
    } catch (LibException e) {
      if (Logger.isDebug()) Log.e(TAG, "Task", e);
      resultMsg = ResourceBook.getResultCodeValue(e.getErrorCode(), context);
    }

    return user;
  }
Exemplo n.º 4
0
  @Override
  protected Bitmap doInBackground(Void... params) {
    if (imageView == null || url == null) {
      return bitmap;
    }

    if (Logger.isDebug()) Log.i(LOG_TAG, "Get Header image from remote!");
    try {
      Bitmap newBitmap = ImageUtil.getBitmapByUrl(url);

      /** 加入cache中* */
      if (newBitmap != null) {
        // 生成mini图
        Bitmap scaleBitmap =
            ImageUtil.scaleBitmapTo(newBitmap, SheJiaoMaoApplication.getSmallAvatarSize());
        Bitmap roundBitmap = ImageUtil.getRoundedCornerBitmap(scaleBitmap);
        if (scaleBitmap != newBitmap) {
          scaleBitmap.recycle();
        }

        CachedImage resultWrap = new CachedImage(roundBitmap);
        if (isMini) {
          bitmap = roundBitmap;
        }
        imageInfo.setCacheType(CachedImageKey.IMAGE_HEAD_MINI);
        imageCache.put(imageInfo, resultWrap);

        // 生成normal图
        scaleBitmap =
            ImageUtil.scaleBitmapTo(newBitmap, SheJiaoMaoApplication.getNormalAvatarSize());
        roundBitmap = ImageUtil.getRoundedCornerBitmap(scaleBitmap);
        scaleBitmap.recycle();

        resultWrap = new CachedImage(roundBitmap);
        imageInfo.setCacheType(CachedImageKey.IMAGE_HEAD_NORMAL);
        imageCache.put(imageInfo, resultWrap);

        newBitmap.recycle();
        if (!isMini) {
          bitmap = roundBitmap;
        }
      }
    } catch (LibException e) {
      if (Logger.isDebug()) Log.e(LOG_TAG, e.getMessage(), e);
    }

    return bitmap;
  }
Exemplo n.º 5
0
  @Override
  protected List<com.cattong.entity.Status> doInBackground(Void... params) {
    if (microBlog == null) {
      return null;
    }

    List<com.cattong.entity.Status> listStatus = null;
    paging = adapter.getPaging();
    com.cattong.entity.Status max = adapter.getMin();
    paging.setGlobalMax(max);

    if (paging.moveToNext()) {
      try {
        if (type == StatusCatalog.Hot_Retweet.getCatalogNo()) {
          listStatus = microBlog.getDailyHotRetweets(paging);
        } else {
          listStatus = microBlog.getDailyHotComments(paging);
        }
      } catch (LibException e) {
        if (Logger.isDebug()) Log.e(TAG, "Task", e);
        message = ResourceBook.getResultCodeValue(e.getErrorCode(), context);
        paging.moveToPrevious();
      }
    }
    ResponseCountUtil.getResponseCounts(listStatus, microBlog);

    return listStatus;
  }
Exemplo n.º 6
0
  @Override
  protected void onPostExecute(Bitmap result) {
    super.onPostExecute(result);

    if (result != null) {
      imageView.setImageBitmap(result);
      if (Logger.isDebug()) Log.v(LOG_TAG, "update imageview");
    }
  }
Exemplo n.º 7
0
  @Override
  public void onReceive(Context context, Intent intent) {
    if (intent == null) {
      return;
    }
    sheJiaoMao = (SheJiaoMaoApplication) context.getApplicationContext();

    Bundle bundle = intent.getExtras();
    account = (LocalAccount) bundle.getSerializable("ACCOUNT");
    entity = (NotificationEntity) bundle.getSerializable("NOTIFICATION_ENTITY");

    noticeNewBlog(context);
    if (Logger.isDebug()) Log.v(TAG, entity.toString());
  }
Exemplo n.º 8
0
  @Override
  protected Boolean doInBackground(Void... params) {
    boolean isSuccess = false;
    if (microBlog == null || type == null) {
      return isSuccess;
    }

    try {
      isSuccess = microBlog.resetUnreadCount(type);
    } catch (LibException e) {
      if (Logger.isDebug()) e.printStackTrace();
    }

    return isSuccess;
  }
Exemplo n.º 9
0
  public CachedImage getMemoryCached(CachedImageKey key) {
    boolean isContain = containsKey(key);
    CachedImage cachedImage = null;
    if (!isContain) {
      return cachedImage;
    }

    cachedImage = memoryCache.get(key);
    if (cachedImage != null && cachedImage.getWrap() != null) {
      if (Logger.isDebug()) Log.v("ImageCache", "getMemoryCached hit memory cache");
      return cachedImage;
    } else {
      cachedImage = null;
    }

    return cachedImage;
  }
Exemplo n.º 10
0
  @Override
  public void write(CachedImageKey key, CachedImage value) {
    if (value == null) {
      return;
    }

    Bitmap bitmap = value.getWrap();
    if (bitmap == null) {
      return;
    }

    String fileName =
        File.separator + IMAGE_FOLDER[key.getCacheType()] + File.separator + key.getCachedName();
    File file = new File(filePath + fileName);
    if (!Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
      file = new File(secondaryFilePath + fileName);
    }
    if (file.exists()) {
      return;
    }
    if (Logger.isDebug())
      Log.v(TAG, file.getPath() + "|media state: " + Environment.getExternalStorageState());

    FileOutputStream fos = null;
    try {
      file.createNewFile();
      fos = new FileOutputStream(file);

      bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);

      fos.flush();
    } catch (FileNotFoundException e) {
      e.printStackTrace();
    } catch (IOException e) {
      e.printStackTrace();
    } finally {
      if (fos != null) {
        try {
          fos.close();
        } catch (IOException e) {
          e.printStackTrace();
        }
      }
    }
  }
Exemplo n.º 11
0
  @Override
  public CachedImage read(CachedImageKey key) {
    long startRead = System.currentTimeMillis();
    String realPath = getRealPath(key);
    if (realPath == null) {
      return null;
    }

    File file = new File(realPath);
    byte[] fileBytes = null;
    InputStream fis = null;
    try {
      fis = new FileInputStream(file);
      fis = new BufferedInputStream(fis, 8192);
      int offset = 0;
      int byteCount = (int) file.length();
      int readCount = 0;

      fileBytes = new byte[byteCount];
      while ((readCount = fis.read(fileBytes, offset, byteCount)) > 0) {
        offset += readCount;
        byteCount -= readCount;
      }
    } catch (FileNotFoundException e) {
      if (Logger.isDebug()) e.printStackTrace();
    } catch (IOException e) {
      if (Logger.isDebug()) e.printStackTrace();
    } catch (Exception e) {
      if (Logger.isDebug()) e.printStackTrace();
    } finally {
      if (fis != null) {
        try {
          fis.close();
        } catch (IOException e) {
          e.printStackTrace();
        }
      }
    }

    BitmapFactory.Options options = new BitmapFactory.Options();
    // 先指定原始大小
    options.inSampleSize = 1;
    // 只进行大小判断
    options.inJustDecodeBounds = true;
    options.inPreferredConfig = Bitmap.Config.ARGB_8888;
    BitmapFactory.decodeByteArray(fileBytes, 0, fileBytes.length, options);

    long bitmapSize = ImageUtil.calculateBitmapSize(options);
    if (bitmapSize >= BIG_IMG_SIZE_LEVEL) {
      options.inSampleSize = ImageUtil.getScaleSampleSize(options, 120);
      if (Logger.isDebug()) Log.d(TAG, "compress local big bitmap");
    }
    options.inJustDecodeBounds = false;
    Bitmap bitmap = BitmapFactory.decodeByteArray(fileBytes, 0, fileBytes.length, options);

    CachedImage wrap = new CachedImage(bitmap);

    long endRead = System.currentTimeMillis();
    if (Logger.isDebug()) Log.d(TAG, "read local bitmap use time: " + (endRead - startRead) + "ms");
    return wrap;
  }
Exemplo n.º 12
0
  @Override
  protected Boolean doInBackground(Void... arg) {
    boolean isSuccess = false;
    if (auth == null) {
      return isSuccess;
    }

    oauthConfig = auth.getoAuthConfig();
    if (oauthConfig == null) {
      return isSuccess;
    }

    String username = auth.getAccessToken();
    String password = auth.getAccessSecret();
    ServiceProvider sp = auth.getServiceProvider();
    try {
      if (NetUtil.isNETWAP()
          && (URLUtil.isHttpsUrl(oauthConfig.getRequestTokenUrl())
              || URLUtil.isHttpsUrl(oauthConfig.getAccessTokenUrl()))) {
        throw new SheJiaoMaoException(SheJiaoMaoException.NET_HTTPS_UNDER_CMWAP);
      }

      Authorization resultAuth = null;
      switch (sp) {
        case NetEase:
          if (username.indexOf("@") < 0) {
            username += "@163.com"; // 如果用户没输入完整的邮件地址,则自动追加 @163.com
          }
          // 直落
        case Sina:
        case Sohu:
        case Fanfou:
        case Twitter:
          auth.setAccessToken(username);
          auth.setAccessSecret(password);
          if (oauthConfig.getAuthVersion() == Authorization.AUTH_VERSION_OAUTH_2) {
            OAuth2AuthorizeHelper authHelper = new OAuth2AuthorizeHelper();
            resultAuth = authHelper.retrieveAccessToken(auth);
          } else {
            OAuthAuthorizeHelper authHelper = new OAuthAuthorizeHelper();
            resultAuth = authHelper.retrieveAccessToken(auth);
          }

          break;
        default:
          break;
      }

      if (resultAuth == null) {
        throw new SheJiaoMaoException(SheJiaoMaoException.AUTH_TOKEN_IS_NULL);
      }

      Logger.debug(resultAuth.toString());

      BaseUser user = null;
      if (sp.isSns()) {
        Sns sns = SnsFactory.getInstance(resultAuth);
        String userId = sns.getUserId();
        user = sns.showUser(userId);
      } else {
        Weibo mBlog = WeiboFactory.getInstance(resultAuth);
        user = mBlog.verifyCredentials();
      }

      final LocalAccountDao accountDao = new LocalAccountDao(context);
      if (accountDao.isExists(sp, user.getUserId())) {
        throw new SheJiaoMaoException(SheJiaoMaoException.ACCOUNT_IS_EXIST);
      }

      if (accountDao.findAllValid() == null) {
        isMakeDefault = true;
      }

      account = new LocalAccount();
      account.setAuthorization(auth);
      account.setUser(user);
      account.setState(Account.STATE_ACTIVE);
      account.setAppKey(oauthConfig.getConsumerKey());
      account.setAppSecret(oauthConfig.getConsumerSecret());
      account.setCreatedAt(new Date());
      accountDao.add(account);

      if (isMakeDefault) {
        accountDao.makeDefault(account);
      }

      GlobalVars.addAccount(account);

      isSuccess = true;
    } catch (LibException e) {
      resultMsg = ResourceBook.getResultCodeValue(e.getErrorCode(), context);
      Logger.error(resultMsg, e);
      context.resetAuthToken();
    } catch (SheJiaoMaoException e) {
      resultMsg = ResourceBook.getResultCodeValue(e.getStatusCode(), context);
      Logger.error(resultMsg, e);
      context.resetAuthToken();
    }

    return isSuccess;
  }