Home | History | Annotate | Download | only in calllog
      1 /*
      2  * Copyright (C) 2011 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 package com.android.dialer.calllog;
     18 
     19 import android.net.Uri;
     20 import android.text.TextUtils;
     21 
     22 import com.android.contacts.common.util.UriUtils;
     23 import com.google.common.base.Objects;
     24 
     25 /**
     26  * Information for a contact as needed by the Call Log.
     27  */
     28 public class ContactInfo {
     29     public Uri lookupUri;
     30     public String lookupKey;
     31     public String name;
     32     public int type;
     33     public String label;
     34     public String number;
     35     public String formattedNumber;
     36     public String normalizedNumber;
     37     /** The photo for the contact, if available. */
     38     public long photoId;
     39     /** The high-res photo for the contact, if available. */
     40     public Uri photoUri;
     41 
     42     public static ContactInfo EMPTY = new ContactInfo();
     43 
     44     public static String GEOCODE_AS_LABEL = "";
     45 
     46     public int sourceType = 0;
     47 
     48     @Override
     49     public int hashCode() {
     50         // Uses only name and contactUri to determine hashcode.
     51         // This should be sufficient to have a reasonable distribution of hash codes.
     52         // Moreover, there should be no two people with the same lookupUri.
     53         final int prime = 31;
     54         int result = 1;
     55         result = prime * result + ((lookupUri == null) ? 0 : lookupUri.hashCode());
     56         result = prime * result + ((name == null) ? 0 : name.hashCode());
     57         return result;
     58     }
     59 
     60     @Override
     61     public boolean equals(Object obj) {
     62         if (this == obj) return true;
     63         if (obj == null) return false;
     64         if (getClass() != obj.getClass()) return false;
     65         ContactInfo other = (ContactInfo) obj;
     66         if (!UriUtils.areEqual(lookupUri, other.lookupUri)) return false;
     67         if (!TextUtils.equals(name, other.name)) return false;
     68         if (type != other.type) return false;
     69         if (!TextUtils.equals(label, other.label)) return false;
     70         if (!TextUtils.equals(number, other.number)) return false;
     71         if (!TextUtils.equals(formattedNumber, other.formattedNumber)) return false;
     72         if (!TextUtils.equals(normalizedNumber, other.normalizedNumber)) return false;
     73         if (photoId != other.photoId) return false;
     74         if (!UriUtils.areEqual(photoUri, other.photoUri)) return false;
     75         return true;
     76     }
     77 
     78     @Override
     79     public String toString() {
     80         return Objects.toStringHelper(this).add("lookupUri", lookupUri).add("name", name).add(
     81                 "type", type).add("label", label).add("number", number).add("formattedNumber",
     82                 formattedNumber).add("normalizedNumber", normalizedNumber).add("photoId", photoId)
     83                 .add("photoUri", photoUri).toString();
     84     }
     85 }
     86