Android Open Source - tdpforce Mem Cache






From Project

Back to project page tdpforce.

License

The source code is released under:

Apache License

If you think the Android project tdpforce 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.telugudesam.cadre.components;
/*  w  w  w.j  a v  a 2  s.com*/
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import org.telugudesam.cadre.App;
import org.telugudesam.cadre.objects.DevelopmentCard;
import org.telugudesam.cadre.objects.Section;
import org.telugudesam.cadre.objects.dao.DevelopmentCardDao;

import android.database.Cursor;

public class MemCache {
  private static ArrayList<DevelopmentCard> yTDPdevCards;
  private static ArrayList<DevelopmentCard> yNotCongressdevCards;
  private static ArrayList<DevelopmentCard> yNotYsrcpdevCards;
  private static ArrayList<DevelopmentCard> yNotLoksattadevCards;
  private static ArrayList<DevelopmentCard> yNotAapdevCards;
  private static ArrayList<DevelopmentCard> yNotTrsdevCards;

  public static ArrayList<DevelopmentCard> getDevelopmentCards(Section section) {
    switch (section) {
    case WHY_TDP:
      return getTdpCards();
    case WHY_NOT_CONGRESS:
      return getCongressCards();
    case WHY_NOT_YSRCP:
      return getYsrcpCards();
    case WHY_NOT_LOKSATTA:
      return getLoksattaCards();
    case WHY_NOT_AAP:
      return getAapCards();
    case WHY_NOT_TRS:
      return getTrsCards();
    default:
      break;
    }
    return null;
  }

  private static ArrayList<DevelopmentCard> getTrsCards() {
    if (yNotTrsdevCards == null) {
      yNotTrsdevCards = (ArrayList<DevelopmentCard>) loadCards(Section.WHY_NOT_TRS);
    }
    return yNotTrsdevCards;
  }

  private static ArrayList<DevelopmentCard> getAapCards() {
    if (yNotAapdevCards == null) {
      yNotAapdevCards = (ArrayList<DevelopmentCard>) loadCards(Section.WHY_NOT_AAP);
    }
    return yNotAapdevCards;
  }

  private static ArrayList<DevelopmentCard> getLoksattaCards() {
    if (yNotLoksattadevCards == null) {
      yNotLoksattadevCards = (ArrayList<DevelopmentCard>) loadCards(Section.WHY_NOT_LOKSATTA);
    }
    return yNotLoksattadevCards;
  }

  private static ArrayList<DevelopmentCard> getYsrcpCards() {
    if (yNotYsrcpdevCards == null) {
      yNotYsrcpdevCards = (ArrayList<DevelopmentCard>) loadCards(Section.WHY_NOT_YSRCP);
    }
    return yNotYsrcpdevCards;
  }

  private static ArrayList<DevelopmentCard> getCongressCards() {
    if (yNotCongressdevCards == null) {
      yNotCongressdevCards = (ArrayList<DevelopmentCard>) loadCards(Section.WHY_NOT_CONGRESS);
    }
    return yNotCongressdevCards;
  }

  private static ArrayList<DevelopmentCard> getTdpCards() {
    if (yTDPdevCards == null) {
      yTDPdevCards = (ArrayList<DevelopmentCard>) loadCards(Section.WHY_TDP);
    }
    return yTDPdevCards;
  }

  private static List<DevelopmentCard> loadCards(Section section) {
    DevelopmentCardDao cardDao = new DevelopmentCardDao(App.getContext());
    Cursor cursor = cardDao.query(
        "SECTIONSARRAY LIKE '%" + section.ordinal()
            + "%' and isDeleted=0 ", null);
    List<DevelopmentCard> list = cardDao.asList(cursor);
    Collections.sort(list);
    return list;
  }

  public static void resetDevelopmentCards() {
    yTDPdevCards = null;
    yNotYsrcpdevCards = null;
    yNotCongressdevCards = null;
    yNotLoksattadevCards = null;
    yNotAapdevCards = null;
    yNotTrsdevCards = null;
  }

}




Java Source Code List

com.etsy.android.grid.ClassLoaderSavedState.java
com.etsy.android.grid.ExtendableListView.java
com.etsy.android.grid.HeaderViewListAdapter.java
com.etsy.android.grid.StaggeredGridView.java
com.etsy.android.grid.util.DynamicHeightImageView.java
com.etsy.android.grid.util.DynamicHeightTextView.java
com.polites.android.Animation.java
com.polites.android.Animator.java
com.polites.android.FlingAnimationListener.java
com.polites.android.FlingAnimation.java
com.polites.android.FlingListener.java
com.polites.android.GestureImageViewListener.java
com.polites.android.GestureImageViewTouchListener.java
com.polites.android.GestureImageView.java
com.polites.android.MathUtils.java
com.polites.android.MoveAnimationListener.java
com.polites.android.MoveAnimation.java
com.polites.android.VectorF.java
com.polites.android.ZoomAnimationListener.java
com.polites.android.ZoomAnimation.java
com.readystatesoftware.systembartint.SystemBarTintManager.java
org.telugudesam.cadre.App.java
org.telugudesam.cadre.Config.java
org.telugudesam.cadre.Constants.java
org.telugudesam.cadre.activity.BaseTdpActivity.java
org.telugudesam.cadre.activity.ConversionCounterActivity.java
org.telugudesam.cadre.activity.ConversionRegistrationActivity.java
org.telugudesam.cadre.activity.PreviewActivity.java
org.telugudesam.cadre.activity.TdpMainActivity.java
org.telugudesam.cadre.adapters.DevelopmentCardsAdapter.java
org.telugudesam.cadre.components.MemCache.java
org.telugudesam.cadre.database.DbHelper.java
org.telugudesam.cadre.database.DbUtils.java
org.telugudesam.cadre.database.Tdp_cadre_boxFactory.java
org.telugudesam.cadre.fragments.DevelopmentCardsFragment.java
org.telugudesam.cadre.objects.DevelopmentCard.java
org.telugudesam.cadre.objects.Events.java
org.telugudesam.cadre.objects.Section.java
org.telugudesam.cadre.objects.dao.DevelopmentCardDao.java
org.telugudesam.cadre.objects.dao.DevelopmentCardTable.java
org.telugudesam.cadre.util.L.java
org.telugudesam.cadre.util.SystemUiHiderBase.java
org.telugudesam.cadre.util.SystemUiHiderHoneycomb.java
org.telugudesam.cadre.util.SystemUiHider.java
org.telugudesam.cadre.util.Utils.java