Package tvbrowser.extras.favoritesplugin.core

Source Code of tvbrowser.extras.favoritesplugin.core.Favorite

/*
* TV-Browser
* Copyright (C) 04-2003 Martin Oberhauser (martin@tvbrowser.org)
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*
* CVS information:
*  $RCSfile$
*   $Source$
*     $Date: 2011-01-16 07:57:13 +0100 (Sun, 16 Jan 2011) $
*   $Author: bananeweizen $
* $Revision: 6894 $
*/

package tvbrowser.extras.favoritesplugin.core;

import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;

import tvbrowser.core.plugin.PluginManagerImpl;
import tvbrowser.extras.common.LimitationConfiguration;
import tvbrowser.extras.common.ReminderConfiguration;
import tvbrowser.extras.favoritesplugin.FavoriteConfigurator;
import tvbrowser.extras.favoritesplugin.FavoritesPlugin;
import tvbrowser.extras.favoritesplugin.FavoritesPluginProxy;
import tvbrowser.extras.favoritesplugin.dlgs.FavoriteTreeModel;
import tvbrowser.extras.favoritesplugin.dlgs.ManageFavoritesDialog;
import tvbrowser.extras.reminderplugin.ReminderPlugin;
import util.exc.ErrorHandler;
import util.exc.TvBrowserException;
import util.program.ProgramUtilities;
import util.ui.SearchFormSettings;
import devplugin.Channel;
import devplugin.Date;
import devplugin.Plugin;
import devplugin.Program;
import devplugin.ProgramReceiveTarget;
import devplugin.ProgramSearcher;

public abstract class Favorite {
  private ArrayList<Program> mPrograms;
  private ArrayList<Program> mNewPrograms;
  private String mName;
  private ReminderConfiguration mReminderConfiguration;
  private LimitationConfiguration mLimitationConfiguration;
  private boolean mRemindAfterDownload;
  private ArrayList<Exclusion> mExclusionList;
  private ProgramReceiveTarget[] mForwardPluginArr;
  protected SearchFormSettings mSearchFormSettings;

  private HashMap<String,Integer> mRemovedPrograms;
  private ArrayList<Program> mRemovedBlacklistPrograms;
  private boolean mNewProgramsWasRequested;

  /**
   * unsorted list of blacklisted (non-favorite) programs
   */
  private ArrayList<Program> mBlackList;

  public Favorite() {
    mReminderConfiguration = new ReminderConfiguration(FavoritesPlugin.getInstance().isAutoSelectingReminder() ? new String[] {ReminderConfiguration.REMINDER_DEFAULT} : new String[0]);
    mLimitationConfiguration = new LimitationConfiguration();
    mPrograms = new ArrayList<Program>(0);
    mNewPrograms = new ArrayList<Program>(0);
    mRemovedPrograms = new HashMap<String,Integer>(0);
    mRemovedBlacklistPrograms = new ArrayList<Program>(0);
    mExclusionList = null; // defer initialisation until needed, save memory
    mBlackList = null; // defer initialization until needed
    mNewProgramsWasRequested = false;

    mForwardPluginArr = new ProgramReceiveTarget[0];
    handleNewGlobalReceiveTargets(new ProgramReceiveTarget[0]);
  }

  public Favorite(ObjectInputStream in) throws IOException, ClassNotFoundException {
    this();
    int version = in.readInt()// version
    mName = (String)in.readObject();
    mReminderConfiguration = new ReminderConfiguration(in);
    mLimitationConfiguration = new LimitationConfiguration(in);
    mRemindAfterDownload = in.readBoolean();

    int exclSize = in.readInt();
    if (exclSize > 0) {
      mExclusionList = new ArrayList<Exclusion>();
    }
    for (int i=0; i<exclSize; i++) {
      Exclusion exclusion = new Exclusion(in);

      if(!exclusion.isInvalid()) {
        mExclusionList.add(exclusion);
      }
    }

    int cnt = in.readInt();
    mForwardPluginArr = new ProgramReceiveTarget[cnt];

    for (int i=0; i<cnt; i++) {
      if(version <=2) {
        String id = (String)in.readObject();
        mForwardPluginArr[i] = ProgramReceiveTarget.createDefaultTargetForProgramReceiveIfId(id);
      } else {
        mForwardPluginArr[i] = new ProgramReceiveTarget(in);
      }
    }

    if(version < 4) {
      handleNewGlobalReceiveTargets(new ProgramReceiveTarget[0]);
    }

    // Don't save the programs but only their date and id
    int size = in.readInt();
    ArrayList<Program> programList = new ArrayList<Program>(size);
    readProgramsToList(programList, size, in);

    if(version >= 2) {
      size = in.readInt();
      if (size > 0) {
        mBlackList = new ArrayList<Program>(size);
        readProgramsToList(mBlackList, size, in);
      }
    }
    else {
      mBlackList = null;
    }
    if (mBlackList != null) {
      Collections.sort(mBlackList, ProgramUtilities.getProgramComparator());
    }

    mPrograms = programList;

    mNewPrograms = new ArrayList<Program>(0);
    mRemovedPrograms = new HashMap<String, Integer>(0);
  }

  /**
   * read the programs from the input stream to the list. all programs will be added
   * to the list. the list is not cleared before reding the input stream.
   *
   * @param list out-param. the list of the programs from the input stream.
   * @param size how many programs to read from the input stream
   * @param in the input stream to read from
   * @throws IOException if something went wrong reading from the stream
   * @throws ClassNotFoundException if the program could not be deserialized
   */
  private void readProgramsToList(final ArrayList<Program> list, final int size, final ObjectInputStream in) throws IOException, ClassNotFoundException {
    for (int i = 0; i < size; i++) {
      Date date = Date.readData(in);
      String progID = (String) in.readObject();
      Program program = Plugin.getPluginManager().getProgram(date, progID);
      if (program != null) {
        list.add(program);
      }
    }
  }

  public abstract String getTypeID();

  public String getName() {
    return mName;
  }

  public void setName(String name) {
    mName = name;
  }

  public LimitationConfiguration getLimitationConfiguration() {
    return mLimitationConfiguration;
  }

  public ReminderConfiguration getReminderConfiguration() {
    return mReminderConfiguration;
  }


  public void setRemindAfterDownload(boolean b) {
    mRemindAfterDownload = b;
  }

  public boolean isRemindAfterDownload() {
    return mRemindAfterDownload;
  }


  public void setForwardPlugins(ProgramReceiveTarget[] pluginArr) {
    mForwardPluginArr = pluginArr;
  }

  public ProgramReceiveTarget[] getForwardPlugins() {
    return mForwardPluginArr;
  }

  private String getReceiveTargetId(ProgramReceiveTarget target) {
    return new StringBuilder(target.getReceiveIfId()).append("_").append(target.getTargetId()).toString();
  }

  public void handleNewGlobalReceiveTargets(ProgramReceiveTarget[] oldDefaultTargets) {
    ProgramReceiveTarget[] defaultTargets = FavoritesPlugin.getInstance().getDefaultClientPluginsTargets();

    ArrayList<ProgramReceiveTarget> newTargets = new ArrayList<ProgramReceiveTarget>(defaultTargets.length);

    for(ProgramReceiveTarget target : defaultTargets) {
      newTargets.add(target);
    }

    for(ProgramReceiveTarget target : mForwardPluginArr) {
      if(!arrayContains(oldDefaultTargets,target) && !arrayContains(defaultTargets,target)) {
        newTargets.add(target);
      }
    }

    mForwardPluginArr = newTargets.toArray(new ProgramReceiveTarget[newTargets.size()]);
  }

  private boolean arrayContains(ProgramReceiveTarget[] targetArr, ProgramReceiveTarget target) {
    if(targetArr != null && target != null) {
      for(ProgramReceiveTarget arrayEntry : targetArr) {
        if(arrayEntry != null && arrayEntry.getReceiveIfId().equals(target.getReceiveIfId())
            && arrayEntry.getTargetId().equals(target.getTargetId())) {
          return true;
        }
      }
    }

    return false;
  }


  public Program[] getPrograms() {
    Program[] programs = mPrograms.toArray(new Program[mPrograms.size()]);
    if (programs.length > 0) {
      Arrays.sort(programs, ProgramUtilities.getProgramComparator());
    }
    return programs;
  }

  public Program[] getNewPrograms() {
    mNewProgramsWasRequested = true;

    for(int i = mNewPrograms.size()-1; i >= 0; i--) {
      Program test = mNewPrograms.get(i);

      if(test != null) {
        Program newProg = Plugin.getPluginManager().getProgram(mNewPrograms.get(i).getUniqueID());

        if(newProg != null && newProg.getProgramState() == Program.IS_VALID_STATE) {
          mNewPrograms.set(i,newProg);
        }
        else {
          mNewPrograms.remove(i);
        }
      }
      else {
        mNewPrograms.remove(i);
      }
    }

    Program[] programs = mNewPrograms.toArray(new Program[mNewPrograms.size()]);
    if (programs.length > 0) {
      Arrays.sort(programs, ProgramUtilities.getProgramComparator());
    }
    return programs;
  }

  public void handleContainingPrograms(Program[] progs) {
    for (Program p : progs) {
      if (mPrograms.contains(p)) {
        p.mark(FavoritesPluginProxy.getInstance());
      }
    }
  }

  /**
   * serialize this object and write it to a stream.
   *
   * @param out the stream to write to
   * @throws IOException if something went wrong writing to the stream
   */
  public synchronized void writeData(final ObjectOutputStream out) throws IOException {
    out.writeInt(4)// version
    out.writeObject(mName);
    mReminderConfiguration.store(out);
    mLimitationConfiguration.store(out);
    out.writeBoolean(mRemindAfterDownload);

    if (mExclusionList == null) {
      out.writeInt(0);
    }
    else {
      out.writeInt(mExclusionList.size());
      for (Exclusion exclusion : mExclusionList) {
        exclusion.writeData(out);
      }
    }

    out.writeInt(mForwardPluginArr.length);
    for (ProgramReceiveTarget receiveTarget : mForwardPluginArr) {
      receiveTarget.writeData(out);
    }

    // Don't save the programs but only their date and id
    out.writeInt(mPrograms.size());
    for (Program p : mPrograms) {
      p.getDate().writeData((java.io.DataOutput) out);
      out.writeObject(p.getID());
    }

    // Save the programs on BlackList
    if (mBlackList == null) {
      out.writeInt(0);
    }
    else {
      out.writeInt(mBlackList.size());
      for (Program p : mBlackList) {
        p.getDate().writeData((java.io.DataOutput) out);
        out.writeObject(p.getID());
      }
    }

    internalWriteData(out);
  }



  public Exclusion[] getExclusions() {
    if (mExclusionList == null) {
      return new Exclusion[0];
    }
    return mExclusionList.toArray(new Exclusion[mExclusionList.size()]);
  }

  public void addExclusion(final Exclusion exclusion) {
    if (mExclusionList == null) {
      mExclusionList = new ArrayList<Exclusion>(1);
    }
    mExclusionList.add(exclusion);
    try {
      refreshPrograms(ManageFavoritesDialog.getInstance() != null
          && ManageFavoritesDialog.getInstance().isShowingNewFoundPrograms());
      FavoritesPlugin.getInstance().updateRootNode(true);
    } catch (final TvBrowserException exc) {
      ErrorHandler.handle("Could not update favorites.", exc);
    }
    updateManageDialog();
  }

  public void removeExclusion(Exclusion exclusion) {
    if (mExclusionList == null) {
      return;
    }
    mExclusionList.remove(exclusion);
  }

  public void setExclusions(Exclusion[] exclusionArr) {
    if (mExclusionList == null) {
      mExclusionList = new ArrayList<Exclusion>(exclusionArr.length);
    }
    else {
      mExclusionList.clear();
    }
    mExclusionList.addAll(Arrays.asList(exclusionArr));
  }


  public boolean contains(Program prog) {
    return !(mBlackList != null && mBlackList.contains(prog)) && mPrograms.contains(prog);
  }

  private Program[] filterByLimitations(Program[] progArr) {
    Exclusion[] globalExclusions = FavoritesPlugin.getInstance().getGlobalExclusions();
    Exclusion[] exclusions = new Exclusion[getExclusions().length + globalExclusions.length];

    System.arraycopy(globalExclusions,0,exclusions,0,globalExclusions.length);
    System.arraycopy(getExclusions(),0,exclusions,globalExclusions.length,exclusions.length - globalExclusions.length);

    ArrayList<Program> list = new ArrayList<Program>();

    int allowedDayOfWeek = getLimitationConfiguration().getDayLimit();
    for (Program program : progArr) {
      boolean isExcluded = false;
      for (Exclusion exclusion : exclusions) {
        if (exclusion.isProgramExcluded(program)) {
          isExcluded = true;
          break;
        }
      }
      if (!isExcluded && getLimitationConfiguration().isLimitedByTime()) {
        if (ProgramUtilities.isNotInTimeRange(getLimitationConfiguration().getTimeFrom(), getLimitationConfiguration().getTimeTo(), program)) {
          isExcluded = true;
        } else {
          if (allowedDayOfWeek != LimitationConfiguration.DAYLIMIT_DAILY) {
            Calendar cal = program.getDate().getCalendar();
            int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK);
            if (allowedDayOfWeek == LimitationConfiguration.DAYLIMIT_WEEKEND) {
              if (dayOfWeek != 1 && dayOfWeek != 7) {
                isExcluded = true;
              }
            } else if (allowedDayOfWeek == LimitationConfiguration.DAYLIMIT_WEEKDAY) {
              if (dayOfWeek == 1 || dayOfWeek == 7) {
                isExcluded = true;
              }
            } else if (allowedDayOfWeek != dayOfWeek) {
              isExcluded = true;
            }
          }
        }
      }

      if (!isExcluded) {
        list.add(program);
      }
    }

    return list.toArray(new Program[list.size()]);

  }


  /**
   * Search in a list of Programs to find new Items
   *
   * @param added list of programs to check
   * @param removed list of removed programs
   * @param dataUpdate is a data update running at the moment
   * @param sendToPlugins send data to otheer plugins
   * @throws util.exc.TvBrowserException Problems during search
   * @since 2.7
   */
  public void searchNewPrograms(Program[] added, Program[] removed, boolean dataUpdate, boolean sendToPlugins) throws TvBrowserException {
    SearchFormSettings searchForm = mSearchFormSettings;

    final ArrayList<Program> currentList = new ArrayList<Program>(mPrograms);

    final ProgramSearcher searcher = searchForm.createSearcher();

    for (Program p:added) {
      if (searcher.matches(p, searchForm.getFieldTypes()) && !currentList.contains(p)) {
        currentList.add(p);
      }
    }

    for (Program p:removed) {
      if (currentList.contains(p)) {
        currentList.remove(p);
      }
    }


    updatePrograms(currentList.toArray(new Program[currentList.size()]), dataUpdate, sendToPlugins);
  }


  /**
   * Performs a new search, and refreshes the program marks
   * @throws TvBrowserException Exception during search
   */
  public void updatePrograms() throws TvBrowserException {
    updatePrograms(false, true);
  }

  /**
   * Performs a new search, and refreshes the program marks
   * @param send If the new found programs should be send to plugins.
   * @throws TvBrowserException Exception during search
   */
  public void updatePrograms(boolean send) throws TvBrowserException {
    updatePrograms(false, send);
  }

  /**
   * Performs a new search, and refreshes the program marks
   * @param dataUpdate The update was started after a data update.
   * @param sendToPlugins If the new found programs should be send to plugins.
   * @throws TvBrowserException Exception during search
   */
  public void updatePrograms(boolean dataUpdate, boolean sendToPlugins) throws TvBrowserException {
    updatePrograms(internalSearchForPrograms(), dataUpdate, sendToPlugins);
  }

  /**
   * Checks all current programs if they are not excluded,
   * and refreshes the program marks.
   * @param noNewProgramsUpdate If the list with the new programs should not be updated.
   * @throws TvBrowserException Exception during search
   */
  public void refreshPrograms(boolean noNewProgramsUpdate) throws TvBrowserException {
    updatePrograms(mPrograms.toArray(new Program[mPrograms.size()]), false, false, noNewProgramsUpdate);
  }

  private void updatePrograms(Program[] progs, boolean dataUpdate, boolean send) throws TvBrowserException {
    updatePrograms(progs,dataUpdate,send,false);
  }

  private void updatePrograms(Program[] progs, boolean dataUpdate, boolean send, boolean noNewProgramsUpdate) throws TvBrowserException {
    Program[] newProgList = filterByLimitations(progs);


    /* Now we have two lists:
         - mPrograms:   previous favorite programs
         - newProgList: new favorite programs

       We walk through the lists and remove or add the programs:
       For all programs from mPrograms, that don't exist in newProgList, we REMOVE it from new ProgList
       For all programs from newProgList, that don't exist in mPrograms, we ADD it to mPrograms

     */
    Comparator<Program> comparator = ProgramUtilities.getProgramComparator();
    Arrays.sort(newProgList, comparator);

    Program[] p1 = mPrograms.toArray(new Program[mPrograms.size()]);
    Arrays.sort(p1, comparator);

    ArrayList<Program> resultList = new ArrayList<Program>();
    ArrayList<Program> newPrograms = new ArrayList<Program>();

    int inx1 = 0;
    int inx2 = 0;
    while (inx1 < p1.length && inx2 < newProgList.length) {
      if (comparator.compare(p1[inx1], newProgList[inx2]) < 0) {
        // remove p1[inx1]
        unmarkProgram(p1[inx1]);
        inx1++;
      }
      else if (comparator.compare(p1[inx1], newProgList[inx2]) > 0) {
        // add (p2[inx2]
        markProgram(newProgList[inx2],-1);
        newPrograms.add(newProgList[inx2]);
        resultList.add(newProgList[inx2]);
        inx2++;
      }
      else {
        /* leave
         *
         * check if the new found program is a new instance
         * of the program and mark it if it is so. */
        if(p1[inx1].getProgramState() == Program.WAS_DELETED_STATE) {
          int minutes = ReminderPlugin.getInstance().getReminderMinutesForProgram(p1[inx1]);
          markProgram(newProgList[inx2], minutes);
        }

        resultList.add(newProgList[inx2]);
        inx1++;
        inx2++;
      }
    }

    if (inx2 < newProgList.length) {
      // add (p2[inx2]..p2[p2.length-1])
      for (int i=inx2; i< newProgList.length; i++) {
        markProgram(newProgList[i],-1);
        newPrograms.add(newProgList[i]);
        resultList.add(newProgList[i]);
      }
    }
    if (inx1 < p1.length) {
      // remove (p1[inx1]..p1[p1.length-1])
      for (int i=inx1; i<p1.length; i++) {
        unmarkProgram(p1[i]);
      }
    }

    if(!noNewProgramsUpdate) {
      // pass programs to plugins
      mNewPrograms = newPrograms;
    }
    else {
      for(int i = mNewPrograms.size()-1; i >= 0; i--) {
        if(!resultList.contains(mNewPrograms.get(i))) {
          mNewPrograms.remove(i);
        }
      }
    }

    ProgramReceiveTarget[] pluginArr = getForwardPlugins();

    if(mNewPrograms.size() > 0 && send && !noNewProgramsUpdate) {
      if(!dataUpdate) {
        for (ProgramReceiveTarget receiveTarget : pluginArr) {
          if (receiveTarget != null && receiveTarget.getReceifeIfForIdOfTarget() != null) {
            receiveTarget.getReceifeIfForIdOfTarget().receivePrograms(mNewPrograms.toArray(new Program[mNewPrograms.size()]), receiveTarget);
          }
        }
      } else {
        FavoritesPlugin.getInstance().addProgramsForSending(pluginArr, mNewPrograms.toArray(new Program[mNewPrograms.size()]));
      }
    }

    mPrograms = resultList;
  }


  private void markProgram(Program p, int reminderMinutes) {
    if(mBlackList == null || !mBlackList.contains(p)) {
      p.mark(FavoritesPluginProxy.getInstance());
      String[] reminderServices = getReminderConfiguration().getReminderServices();
      for (String reminderService : reminderServices) {
        if (ReminderConfiguration.REMINDER_DEFAULT.equals(reminderService) && reminderMinutes != -2) {
          ReminderPlugin.getInstance().addProgram(p,reminderMinutes);
        }
      }
    }
  }

  private int unmarkProgram(Program p) {
    if(!FavoriteTreeModel.getInstance().isContainedByOtherFavorites(this,p)) {
      p.unmark(FavoritesPluginProxy.getInstance());
    }

    int reminderMinutes = -2;

    String[] reminderServices = getReminderConfiguration().getReminderServices();
    for (String reminderService : reminderServices) {
      if (ReminderConfiguration.REMINDER_DEFAULT.equals(reminderService)) {
        reminderMinutes = ReminderPlugin.getInstance().removeProgram(p);
      }
    }

    return reminderMinutes;
  }

  /**
   * Checks if all programs on the blacklist are valid.
   */
  public void refreshBlackList() {
    if (mBlackList == null) {
      return;
    }
    for(int i = mBlackList.size() - 1; i >= 0 ; i--) {
      Program programInList = mBlackList.remove(i);
      Program testProg = PluginManagerImpl.getInstance().getProgram(programInList.getDate(), programInList.getID());

      if(testProg != null && programInList.getTitle().toLowerCase().compareTo(testProg.getTitle().toLowerCase()) == 0) {
        mBlackList.add(testProg);
      }
    }
  }

  /**
   * Checks if a program is on the blacklist.
   *
   * @param program The program to check.
   * @return If the program in on the blacklist.
   */
  public boolean isOnBlackList(Program program) {
    return mBlackList != null && mBlackList.contains(program);
  }

  /**
   * Add a program to the blacklist
   *
   * @param program The program to put on the blacklist.
   */
  public void addToBlackList(Program program) {
    if (mBlackList == null) {
      mBlackList = new ArrayList<Program>(1);
    }
    if(!mBlackList.contains(program)) {
      mBlackList.add(program);
      Collections.sort(mBlackList, ProgramUtilities.getProgramComparator());
      unmarkProgram(program);
      FavoritesPlugin.getInstance().updateRootNode(true);
      updateManageDialog();
    }
  }

  /**
   * Removes the program from the blacklist,
   * if it is in it.
   *
   * @param program The program to remove from the blacklist.
   */
  public void removeFromBlackList(Program program) {
    if (mBlackList == null) {
      return;
    }
    if(mBlackList.remove(program)) {
      markProgram(program,-1);
      FavoritesPlugin.getInstance().updateRootNode(true);
      updateManageDialog();
    }
  }

  private void updateManageDialog() {
    if(ManageFavoritesDialog.getInstance() != null) {
      ManageFavoritesDialog.getInstance().favoriteSelectionChanged();
    }
  }

  /**
  * @return The programs that are not on the blacklist.
  */
  public Program[] getWhiteListPrograms() {
    return getWhiteListPrograms(false);
  }

  /**
   * @param onlyNotExpiredPrograms <code>true</code> if only not expired
   * programs should be returned, <code>false</code> otherwise.
   * @return The programs that are not on the blacklist.
   */
  public Program[] getWhiteListPrograms(boolean onlyNotExpiredPrograms) {
    ArrayList<Program> tempProgramArr = new ArrayList<Program>();

    for (final Program p : mPrograms) {
      if((mBlackList == null || !mBlackList.contains(p)) && (!onlyNotExpiredPrograms || !p.isExpired())) {
        tempProgramArr.add(p);
      }
    }

    Program[] retArray = tempProgramArr.toArray(new Program[tempProgramArr.size()]);
    Arrays.sort(retArray, ProgramUtilities.getProgramComparator());

    return retArray;
  }

  /**
   *
   * @return The programs that are on the blacklist.
   */
  public Program[] getBlackListPrograms() {
    if (mBlackList == null) {
      return new Program[0];
    }
    return mBlackList.toArray(new Program[mBlackList.size()]);
  }

  public abstract FavoriteConfigurator createConfigurator();

  protected abstract void internalWriteData(ObjectOutputStream out) throws IOException;

  protected Program[] internalSearchForPrograms() throws TvBrowserException {

    SearchFormSettings searchForm = mSearchFormSettings;

    ProgramSearcher searcher = searchForm.createSearcher();
    return searcher.search(searchForm.getFieldTypes(),
                                                new devplugin.Date().addDays(-1),
                                                1000,
                                                getChannels(),
                                                false
                                                );
  }

  /**
   * Gets if this Favorite contains the given receive target.
   * <p>
   * @param target The target to check for.
   * @return <code>True</code> if this Favorite contains
   * the given target, <code>false</code> otherwise.
   */
  public boolean containsReceiveTarget(ProgramReceiveTarget target) {
    if(mForwardPluginArr != null && target != null) {
      for(ProgramReceiveTarget tar : mForwardPluginArr) {
        if(tar.getReceiveIfId().equals(target.getReceiveIfId())&& tar.getTargetId().equals(target.getTargetId())) {
          return true;
        }
      }
    }

    return false;
  }

  /**
   * get the channels this favorite is searched on
   * @return channel array
   */
  protected Channel[] getChannels() {
    Channel[] channelArr;
    if (getLimitationConfiguration().isLimitedByChannel()) {
      channelArr = getLimitationConfiguration().getChannels();
    }
    else {
      channelArr = Plugin.getPluginManager().getSubscribedChannels();
    }
    return channelArr;
  }

  /**
   * Checks if this program matches the favorite.
   * if it does, it will be added to the favorite.
   *
   * @param p new Program
   * @since 2.7
   * @throws TvBrowserException Exception during search
   */
  public void tryToMatch(Program p) throws TvBrowserException {try {
    if (matches(p) && filterByLimitations(new Program[] {p}).length > 0 && (!getLimitationConfiguration().isLimitedByChannel() || Arrays.asList(getChannels()).contains(p.getChannel()))) {
      boolean wasOnBlackList = false;

      if(mBlackList == null) {
        synchronized(mRemovedBlacklistPrograms) {
          if(mRemovedBlacklistPrograms.remove(p)) {
            mBlackList = new ArrayList<Program>();

            synchronized(mBlackList) {
              mBlackList.add(p);
            }

            wasOnBlackList = true;
          }
        }
      }
      else {
        synchronized(mBlackList) {
          int blackListPos = mBlackList.indexOf(p);

          synchronized(mRemovedBlacklistPrograms) {
            if(mRemovedBlacklistPrograms.remove(p) || blackListPos >= 0) {
              /* Program was in black list so we have to remove it
               * and add the new instance to the black list */
              if(blackListPos >= 0) {
                mBlackList.remove(blackListPos);
              }

              mBlackList.add(p);

              wasOnBlackList = true;
            }
          }
        }
      }

      if(!wasOnBlackList) {
        synchronized(mPrograms) {
          boolean newFound = false;

          int pos = mPrograms.indexOf(p);

          Integer listMinutes = null;

          if (pos >= 0) {
            // Item was in list, remove old item, add new one
            mPrograms.remove(pos);
            mPrograms.add(p);
            /* We don't need to mark the program,
             * that will be done by the MarkedProgramsList */
          }

          boolean wasOnList = false;

          synchronized(mRemovedPrograms) {
            if((listMinutes = mRemovedPrograms.remove(getProgramKeyFor(p))) != null){
              // Item was in list, but was already removed before
              mPrograms.add(p);
              markProgram(p,listMinutes);
              wasOnList = true;
            }
          }

          if(pos < 0 && !wasOnList) {
            mPrograms.add(p);
            markProgram(p,-1);

            if(!p.isExpired()) {
              synchronized(mNewPrograms) {
                mNewPrograms.add(p);
              }
              newFound = true;
            }
          }

          if (newFound) {
            ProgramReceiveTarget[] pluginArr = getForwardPlugins();
            FavoritesPlugin.getInstance().addProgramsForSending(pluginArr, mNewPrograms.toArray(new Program[mNewPrograms.size()]));
          }
        }
      }
    }
  }catch(Throwable t) {t.printStackTrace();}
  }

  /**
   * This function tries to match the given program with the favorite
   *
   * @param p check if this program matches
   * @return <code>true</code> if the program matches
   *
   * @throws TvBrowserException exception during matching
   * @since 2.7
   */
  public boolean matches(Program p) throws TvBrowserException {
    return getSearcher().matches(p, mSearchFormSettings.getFieldTypes());
  }

  /**
   * get the program searcher used by this favorite
   *
   * @return the program searcher
   * @throws TvBrowserException
   * @since 3.0
   */
  public ProgramSearcher getSearcher() throws TvBrowserException {
    return mSearchFormSettings.createSearcher();
  }

  /**
   * Checks if the program is marked by this favorite and remove it if it does.
   * @param p Program to remove
   * @since 2.7
   */
  public void removeProgram(Program p) {
    /* Remove programs from the lists */
    boolean wasInList = false;

    synchronized(mPrograms) {
      if(mPrograms.remove(p)) {
        int reminderMinutes = unmarkProgram(p);
        wasInList = true;

        synchronized(mRemovedPrograms) {
          mRemovedPrograms.put(getProgramKeyFor(p),reminderMinutes);
        }
      }
    }

    if(!wasInList && mBlackList != null) {
      synchronized(mBlackList) {
        if(mBlackList != null && mBlackList.remove(p)) {
          synchronized(mRemovedBlacklistPrograms) {
            mRemovedBlacklistPrograms.add(p);
          }
        }
      }
    }
  }

  /**
   * Clears the list of new programs
   * @since 2.7
   */
  public void clearNewPrograms() {
    if(mNewProgramsWasRequested) {
      mNewPrograms = new ArrayList<Program>(0);
      mNewProgramsWasRequested = false;
    }
  }

  /**
   * Clears the list of removed programs
   * @since 2.7
   */
  public void clearRemovedPrograms() {
    mRemovedPrograms = new HashMap<String,Integer>(0);
    mRemovedBlacklistPrograms = new ArrayList<Program>(0);
  }

  private String getProgramKeyFor(Program p) {
    return new StringBuilder(p.getChannel().getUniqueId()).append(p.getDate().getValue()).append("_").append(p.getStartTime()).append("_").append(p.getTitle()).toString();
  }

  public void revalidatePrograms() {
    new Thread("revalidate favorites") {
      @Override
      public void run() {
        setPriority(Thread.MIN_PRIORITY);

        synchronized(mPrograms) {
          for(int i = mPrograms.size()-1; i >= 0; i--) {
            if(mPrograms.get(i).getProgramState() == Program.WAS_UPDATED_STATE) {
              Program prog = mPrograms.remove(i);
              mPrograms.add(i,Plugin.getPluginManager().getProgram(prog.getDate(),prog.getID()));
            }
          }
        }

        if(mBlackList != null) {
          synchronized(mBlackList) {
            for(int i = mBlackList.size()-1; i >= 0; i--) {
              if(mBlackList.get(i).getProgramState() == Program.WAS_UPDATED_STATE) {
                Program prog = mBlackList.remove(i);
                mBlackList.add(i,Plugin.getPluginManager().getProgram(prog.getDate(),prog.getID()));
              }
            }
          }
        }
      }
    }.start();
  }
}
TOP

Related Classes of tvbrowser.extras.favoritesplugin.core.Favorite

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.