/* * Jitsi, the OpenSource Java VoIP and Instant Messaging client. * * Copyright @ 2015 Atlassian Pty Ltd * * 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 net.java.sip.communicator.plugin.addrbook; import net.java.sip.communicator.service.contactsource.*; import java.util.*; import java.util.regex.*; /** * Abstract query that keep tracks of the source contacts * that were created. * * @author Damian Minkov */ public abstract class AbstractAddrBookContactQuery extends AsyncContactQuery { /** * A list of all source contact results. */ protected final List sourceContacts = new LinkedList(); /** * Initializes a new AbstractAddrBookContactQuery which is to perform * a specific query in the Address Book on behalf of a * specific ContactSourceService. * * @param contactSource the ContactSourceService which is to * perform the new ContactQuery instance * @param query the Pattern for which contactSource is * being queried **/ public AbstractAddrBookContactQuery( T contactSource, Pattern query) { super(contactSource, query); } /** * Notifies the ContactQueryListeners registered with this * ContactQuery that a new SourceContact has been * received. * * @param contact the SourceContact which has been received and * which the registered ContactQueryListeners are to be notified * about */ @Override protected void fireContactReceived(SourceContact contact) { synchronized (sourceContacts) { sourceContacts.add(contact); } super.fireContactReceived(contact); } /** * Notifies the ContactQueryListeners registered with this * ContactQuery that a SourceContact has been * removed. * * @param contact the SourceContact which has been removed and * which the registered ContactQueryListeners are to be notified * about */ @Override protected void fireContactRemoved(SourceContact contact) { synchronized (sourceContacts) { sourceContacts.remove(contact); } super.fireContactRemoved(contact); } /** * Clear. */ public void clear() { synchronized (sourceContacts) { sourceContacts.clear(); } } /** * Searches for source contact with the specified id. * @param id the id to search for * @return the source contact found or null. */ protected SourceContact findSourceContactByID(String id) { synchronized(sourceContacts) { for(SourceContact sc : sourceContacts) { Object scID = sc.getData(SourceContact.DATA_ID); if(id.equals(scID)) return sc; } } // not found return null; } }