/*
|
* Copyright (c) 2010-2019 Belledonne Communications SARL.
|
*
|
* This file is part of Liblinphone.
|
*
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
*/
|
|
#ifndef _L_C_MAGIC_SEARCH_H_
|
#define _L_C_MAGIC_SEARCH_H_
|
|
#include "linphone/api/c-types.h"
|
|
// =============================================================================
|
|
#ifdef __cplusplus
|
extern "C" {
|
#endif // ifdef __cplusplus
|
|
/**
|
* @addtogroup misc
|
* @{
|
*/
|
|
/**
|
* Constructs a LinphoneMagicSearch object
|
**/
|
LINPHONE_PUBLIC LinphoneMagicSearch *linphone_magic_search_new (LinphoneCore *lc);
|
|
/**
|
* Increment reference count of LinphoneMagicSearch object.
|
**/
|
LINPHONE_PUBLIC LinphoneMagicSearch *linphone_magic_search_ref (LinphoneMagicSearch *magic_search);
|
|
/**
|
* Decrement reference count of LinphoneMagicSearch object. When dropped to zero, memory is freed.
|
**/
|
LINPHONE_PUBLIC void linphone_magic_search_unref (LinphoneMagicSearch *magic_search);
|
|
/**
|
* Set the minimum value used to calculate the weight in search
|
* @param[in] weight minimum weight
|
**/
|
LINPHONE_PUBLIC void linphone_magic_search_set_min_weight (LinphoneMagicSearch *magic_search, unsigned int weight);
|
|
/**
|
* @return the minimum value used to calculate the weight in search
|
**/
|
LINPHONE_PUBLIC unsigned int linphone_magic_search_get_min_weight (const LinphoneMagicSearch *magic_search);
|
|
/**
|
* Set the maximum value used to calculate the weight in search
|
* @param[in] weight maximum weight
|
**/
|
LINPHONE_PUBLIC void linphone_magic_search_set_max_weight (LinphoneMagicSearch *magic_search, unsigned int weight);
|
|
/**
|
* @return the maximum value used to calculate the weight in search
|
**/
|
LINPHONE_PUBLIC unsigned int linphone_magic_search_get_max_weight (const LinphoneMagicSearch *magic_search);
|
|
/**
|
* @return the delimiter used to find matched filter word
|
**/
|
LINPHONE_PUBLIC const char *linphone_magic_search_get_delimiter (const LinphoneMagicSearch *magic_search);
|
|
/**
|
* Set the delimiter used to find matched filter word
|
* @param[in] delimiter delimiter (example "-_.,")
|
**/
|
LINPHONE_PUBLIC void linphone_magic_search_set_delimiter (LinphoneMagicSearch *magic_search, const char *delimiter);
|
|
/**
|
* @return if the delimiter search is used
|
**/
|
LINPHONE_PUBLIC bool_t linphone_magic_search_get_use_delimiter (LinphoneMagicSearch *magic_search);
|
|
/**
|
* Enable or disable the delimiter in search
|
* @param[in] enable
|
**/
|
LINPHONE_PUBLIC void linphone_magic_search_set_use_delimiter (LinphoneMagicSearch *magic_search, bool_t enable);
|
|
/**
|
* @return the number of the maximum SearchResult which will be return
|
**/
|
LINPHONE_PUBLIC unsigned int linphone_magic_search_get_search_limit (const LinphoneMagicSearch *magic_search);
|
|
/**
|
* Set the number of the maximum SearchResult which will be return
|
* @param[in] limit
|
**/
|
LINPHONE_PUBLIC void linphone_magic_search_set_search_limit (LinphoneMagicSearch *magic_search, unsigned int limit);
|
|
/**
|
* @return if the search is limited
|
**/
|
LINPHONE_PUBLIC bool_t linphone_magic_search_get_limited_search (const LinphoneMagicSearch *magic_search);
|
|
/**
|
* Enable or disable the limited search
|
* @param[in] limited
|
**/
|
LINPHONE_PUBLIC void linphone_magic_search_set_limited_search (LinphoneMagicSearch *magic_search, bool_t limited);
|
|
/**
|
* Reset the cache to begin a new search
|
**/
|
LINPHONE_PUBLIC void linphone_magic_search_reset_search_cache (LinphoneMagicSearch *magic_search);
|
|
/**
|
* Create a sorted list of SearchResult from SipUri, Contact name,
|
* Contact displayname, Contact phone number, which match with a filter word
|
* The last item list will be an address formed with "filter" if a proxy config exist
|
* During the first search, a cache is created and used for the next search
|
* Use linphone_magic_search_reset_search_cache() to begin a new search
|
* @param[in] filter word we search
|
* @param[in] domain domain which we want to search only
|
* - "" for searching in all contact
|
* - "*" for searching in contact with sip SipUri
|
* - "yourdomain" for searching in contact from "yourdomain" domain
|
* @return sorted list of \bctbx_list{LinphoneSearchResult} \onTheFlyList
|
**/
|
LINPHONE_PUBLIC bctbx_list_t *linphone_magic_search_get_contact_list_from_filter (
|
const LinphoneMagicSearch *magic_search,
|
const char *filter,
|
const char *domain
|
);
|
|
/**
|
* @}
|
*/
|
|
#ifdef __cplusplus
|
}
|
#endif
|
|
#endif // _L_C_MAGIC_SEARCH_H_
|