Android Open Source - LitePal Associations Analyzer






From Project

Back to project page LitePal.

License

The source code is released under:

Apache License

If you think the Android project LitePal 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

/*
 * Copyright (C)  Tony Green, Litepal Framework Open Source Project
 */*  w w w . ja  va  2s .  com*/
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.litepal.crud;

import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;

import org.litepal.LitePalBase;
import org.litepal.crud.model.AssociationsInfo;
import org.litepal.exceptions.DataSupportException;
import org.litepal.util.DBUtility;

/**
 * Base class of associations analyzer.
 * 
 * @author Tony Green
 * @since 1.1
 */
abstract class AssociationsAnalyzer extends DataHandler {

  /**
   * Get the associated model.
   * 
   * @param baseObj
   *            The instance of self model.
   * @param associationInfo
   *            To get the associated model.
   * @return The associated model of self model by analyzing associationInfo.
   * 
   * @throws SecurityException
   * @throws IllegalArgumentException
   * @throws NoSuchMethodException
   * @throws IllegalAccessException
   * @throws InvocationTargetException
   */
  protected DataSupport getAssociatedModel(DataSupport baseObj, AssociationsInfo associationInfo)
      throws SecurityException, IllegalArgumentException, NoSuchMethodException,
      IllegalAccessException, InvocationTargetException {
    return (DataSupport) takeGetMethodValueByField(baseObj,
        associationInfo.getAssociateOtherModelFromSelf());
  }

  /**
   * Get the associated models collection. When it comes to many2one or
   * many2many association. A model may have lots of associated models.
   * 
   * @param baseObj
   *            The instance of self model.
   * @param associationInfo
   *            To get the associated models collection.
   * @return The associated models collection of self model by analyzing
   *         associationInfo.
   * @throws SecurityException
   * @throws IllegalArgumentException
   * @throws NoSuchMethodException
   * @throws IllegalAccessException
   * @throws InvocationTargetException
   */
  @SuppressWarnings("unchecked")
  protected Collection<DataSupport> getAssociatedModels(DataSupport baseObj,
      AssociationsInfo associationInfo) throws SecurityException, IllegalArgumentException,
      NoSuchMethodException, IllegalAccessException, InvocationTargetException {
    return (Collection<DataSupport>) takeGetMethodValueByField(baseObj,
        associationInfo.getAssociateOtherModelFromSelf());
  }

  /**
   * Get the associated models collection of associated model. Used for
   * reverse searching associations.
   * 
   * @param associatedModel
   *            The associated model of baseObj.
   * @param associationInfo
   *            To get reverse associated models collection.
   * @return The associated models collection of associated model by analyzing
   *         associationInfo.
   * @throws SecurityException
   * @throws IllegalArgumentException
   * @throws NoSuchMethodException
   * @throws IllegalAccessException
   * @throws InvocationTargetException
   */
  @SuppressWarnings("unchecked")
  protected Collection<DataSupport> getReverseAssociatedModels(DataSupport associatedModel,
      AssociationsInfo associationInfo) throws SecurityException, IllegalArgumentException,
      NoSuchMethodException, IllegalAccessException, InvocationTargetException {
    return (Collection<DataSupport>) takeGetMethodValueByField(associatedModel,
        associationInfo.getAssociateSelfFromOtherModel());
  }

  /**
   * Set the associated models collection of associated model. Break quote of
   * source collection.
   * 
   * @param associatedModel
   *            The associated model of baseObj.
   * @param associationInfo
   *            To get reverse associated models collection.
   * @param associatedModelCollection
   *            The new associated models collection with same data as source
   *            collection but different quote.
   * @throws SecurityException
   * @throws IllegalArgumentException
   * @throws NoSuchMethodException
   * @throws IllegalAccessException
   * @throws InvocationTargetException
   */
  protected void setReverseAssociatedModels(DataSupport associatedModel,
      AssociationsInfo associationInfo, Collection<DataSupport> associatedModelCollection)
      throws SecurityException, IllegalArgumentException, NoSuchMethodException,
      IllegalAccessException, InvocationTargetException {
    putSetMethodValueByField(associatedModel, associationInfo.getAssociateSelfFromOtherModel(),
        associatedModelCollection);
  }

  /**
   * Check the associated model collection. If the associated model collection
   * is null, try to initialize the associated model collection by the given
   * associated field. If the associated field is subclass of List, make an
   * instance of ArrayList for associated model collection. If the associated
   * field is subclass of Set, make an instance of HashSet for associated
   * model collection. If the associated model collection is not null, doing
   * nothing.
   * 
   * @param associatedModelCollection
   *            The associated model collection to check null and initialize.
   * @param associatedField
   *            The field to decide which type to initialize for associated
   *            model collection.
   * @throws DataSupportException
   */
  protected Collection<DataSupport> checkAssociatedModelCollection(
      Collection<DataSupport> associatedModelCollection, Field associatedField) {
    Collection<DataSupport> collection = null;
    if (isList(associatedField.getType())) {
      collection = new ArrayList<DataSupport>();
    } else if (isSet(associatedField.getType())) {
      collection = new HashSet<DataSupport>();
    } else {
      throw new DataSupportException(DataSupportException.WRONG_FIELD_TYPE_FOR_ASSOCIATIONS);
    }
    if (associatedModelCollection != null) {
      collection.addAll(associatedModelCollection);
    }
    return collection;
  }

  /**
   * Build the bidirectional association by setting the baseObj instance to
   * the associated model.
   * 
   * @param baseObj
   *            The instance of self model.
   * @param associatedModel
   *            The associated model.
   * @param associationInfo
   *            The association info to get the association.
   * @throws SecurityException
   * @throws IllegalArgumentException
   * @throws NoSuchMethodException
   * @throws IllegalAccessException
   * @throws InvocationTargetException
   */
  protected void buildBidirectionalAssociations(DataSupport baseObj, DataSupport associatedModel,
      AssociationsInfo associationInfo) throws SecurityException, IllegalArgumentException,
      NoSuchMethodException, IllegalAccessException, InvocationTargetException {
    putSetMethodValueByField(associatedModel, associationInfo.getAssociateSelfFromOtherModel(),
        baseObj);
  }

  /**
   * If the associated model is saved, add its' name and id to baseObj by
   * calling {@link DataSupport#addAssociatedModelWithFK(String, long)}. Or if
   * the baseObj is saved, add its' name and id to associated model by calling
   * {@link DataSupport#addAssociatedModelWithoutFK(String, long)}.
   * 
   * @param baseObj
   *            The baseObj currently want to persist.
   * @param associationInfo
   *            The associated info analyzed by
   *            {@link LitePalBase#getRelatedInfo}.
   */
  protected void dealsAssociationsOnTheSideWithoutFK(DataSupport baseObj,
      DataSupport associatedModel) {
    if (associatedModel != null) {
      if (associatedModel.isSaved()) {
        baseObj.addAssociatedModelWithFK(associatedModel.getTableName(),
            associatedModel.getBaseObjId());
      } else {
        if (baseObj.isSaved()) {
          associatedModel.addAssociatedModelWithoutFK(baseObj.getTableName(),
              baseObj.getBaseObjId());
        }
      }
    }
  }

  /**
   * If the associated model of self model is null, the FK value in database
   * should be cleared if it exists when updating.
   * 
   * @param baseObj
   *            The baseObj currently want to persist or update.
   * @param associatedInfo
   *            The associated info analyzed by
   *            {@link LitePalBase#getRelatedInfo}.
   */
  protected void mightClearFKValue(DataSupport baseObj, AssociationsInfo associationInfo) {
    baseObj.addFKNameToClearSelf(getForeignKeyName(associationInfo));
  }

  /**
   * Get foreign key name by {@link AssociationsInfo}.
   * 
   * @param associationInfo
   *            To get foreign key name from.
   * @return The foreign key name.
   */
  private String getForeignKeyName(AssociationsInfo associationInfo) {
    return getForeignKeyColumnName(DBUtility.getTableNameByClassName(associationInfo
        .getAssociatedClassName()));
  }
}




Java Source Code List

org.litepal.LitePalApplication.java
org.litepal.LitePalBase.java
org.litepal.crud.AssociationsAnalyzer.java
org.litepal.crud.ClusterQuery.java
org.litepal.crud.DataHandler.java
org.litepal.crud.DataSupport.java
org.litepal.crud.DeleteHandler.java
org.litepal.crud.DynamicExecutor.java
org.litepal.crud.Many2ManyAnalyzer.java
org.litepal.crud.Many2OneAnalyzer.java
org.litepal.crud.One2OneAnalyzer.java
org.litepal.crud.QueryHandler.java
org.litepal.crud.SaveHandler.java
org.litepal.crud.UpdateHandler.java
org.litepal.crud.model.AssociationsInfo.java
org.litepal.exceptions.DataSupportException.java
org.litepal.exceptions.DatabaseGenerateException.java
org.litepal.exceptions.GlobalException.java
org.litepal.exceptions.InvalidAttributesException.java
org.litepal.exceptions.ParseConfigurationFileException.java
org.litepal.litepalsample.activity.AggregateActivity.java
org.litepal.litepalsample.activity.AverageSampleActivity.java
org.litepal.litepalsample.activity.CRUDActivity.java
org.litepal.litepalsample.activity.CountSampleActivity.java
org.litepal.litepalsample.activity.DeleteSampleActivity.java
org.litepal.litepalsample.activity.MainActivity.java
org.litepal.litepalsample.activity.ManageTablesActivity.java
org.litepal.litepalsample.activity.MaxSampleActivity.java
org.litepal.litepalsample.activity.MinSampleActivity.java
org.litepal.litepalsample.activity.ModelListActivity.java
org.litepal.litepalsample.activity.ModelStructureActivity.java
org.litepal.litepalsample.activity.QuerySampleActivity.java
org.litepal.litepalsample.activity.SaveSampleActivity.java
org.litepal.litepalsample.activity.SumSampleActivity.java
org.litepal.litepalsample.activity.TableListActivity.java
org.litepal.litepalsample.activity.TableStructureActivity.java
org.litepal.litepalsample.activity.UpdateSampleActivity.java
org.litepal.litepalsample.adapter.DataArrayAdapter.java
org.litepal.litepalsample.adapter.StringArrayAdapter.java
org.litepal.litepalsample.model.Album.java
org.litepal.litepalsample.model.Singer.java
org.litepal.litepalsample.model.Song.java
org.litepal.litepalsample.util.Utility.java
org.litepal.model.Table_Schema.java
org.litepal.parser.LitePalAttr.java
org.litepal.parser.LitePalContentHandler.java
org.litepal.parser.LitePalParser.java
org.litepal.tablemanager.AssociationCreator.java
org.litepal.tablemanager.AssociationUpdater.java
org.litepal.tablemanager.Connector.java
org.litepal.tablemanager.Creator.java
org.litepal.tablemanager.Dropper.java
org.litepal.tablemanager.Generator.java
org.litepal.tablemanager.LitePalOpenHelper.java
org.litepal.tablemanager.Upgrader.java
org.litepal.tablemanager.model.AssociationsModel.java
org.litepal.tablemanager.model.TableModel.java
org.litepal.tablemanager.typechange.BooleanOrm.java
org.litepal.tablemanager.typechange.DateOrm.java
org.litepal.tablemanager.typechange.DecimalOrm.java
org.litepal.tablemanager.typechange.NumericOrm.java
org.litepal.tablemanager.typechange.OrmChange.java
org.litepal.tablemanager.typechange.TextOrm.java
org.litepal.util.BaseUtility.java
org.litepal.util.Const.java
org.litepal.util.DBUtility.java
org.litepal.util.LogUtil.java
org.litepal.util.SharedUtil.java