![JAR search and dependency download from the Maven repository](/logo.png)
com.avos.avoscloud.im.v2.AVIMConversationQuery Maven / Gradle / Ivy
The newest version!
package com.avos.avoscloud.im.v2;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.support.v4.content.LocalBroadcastManager;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.avos.avoscloud.AVCacheManager;
import com.avos.avoscloud.AVErrorUtils;
import com.avos.avoscloud.AVException;
import com.avos.avoscloud.AVGeoPoint;
import com.avos.avoscloud.AVOSCloud;
import com.avos.avoscloud.AVQuery;
import com.avos.avoscloud.AVUtils;
import com.avos.avoscloud.GenericObjectCallback;
import com.avos.avoscloud.ObjectValueFilter;
import com.avos.avoscloud.QueryOperation;
import com.avos.avoscloud.im.v2.callback.AVIMConversationQueryCallback;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* Created by lbt05 on 2/16/15.
*
* 用于查询聊天室对象
* @deprecated 由于历史原因,AVIMConversationQuery 只能检索 _Conversation 表中 attr 列中的属性,
* 而不能完整检索 _Conversation 表的其他自定义属性,所以这里废弃。推荐使用 {@link com.avos.avoscloud.im.v2.AVIMConversationsQuery}
*/
public class AVIMConversationQuery {
private AVIMClient client;
AVIMConversationQueryConditions conditions;
AVQuery.CachePolicy policy = AVQuery.CachePolicy.CACHE_ELSE_NETWORK;
private static final long MAX_CONVERSATION_CACHE_TIME = 60 * 60 * 1000;
private long maxAge = MAX_CONVERSATION_CACHE_TIME;
/**
* @deprecated
* @param client
*/
protected AVIMConversationQuery(AVIMClient client) {
this.client = client;
this.conditions = new AVIMConversationQueryConditions();
}
/**
* 增加查询条件,指定聊天室的组员条件满足条件的才返回
*
* @param peerIds
* @return
*/
public AVIMConversationQuery withMembers(List peerIds) {
return withMembers(peerIds, false);
}
/**
* 增加查询条件,指定聊天室的组员条件满足条件的才返回
*
* @param peerIds
* @param includeSelf 是否包含自己
* @return
*/
public AVIMConversationQuery withMembers(List peerIds, boolean includeSelf) {
Set targetPeerIds = new HashSet(peerIds);
if (includeSelf) {
targetPeerIds.add(client.clientId);
}
containsMembers(new LinkedList(targetPeerIds));
this.whereSizeEqual(Conversation.MEMBERS, targetPeerIds.size());
return this;
}
/**
* 增加查询条件,指定聊天室的组员包含某些成员即可返回
*
* @param peerIds
* @return
*/
public AVIMConversationQuery containsMembers(List peerIds) {
conditions.addWhereItem(Conversation.MEMBERS, "$all", peerIds);
return this;
}
/**
* 增加查询条件,当conversation的属性中对应的字段满足等于条件时即可返回
*
* @param key
* @param value
* @return
*/
public AVIMConversationQuery whereEqualTo(String key, Object value) {
conditions.whereEqualTo(getColumnKey(key), value);
return this;
}
/**
* 增加查询条件,当conversation的属性中对应的字段满足小于条件时即可返回
*
* @param key
* @param value
* @return
*/
public AVIMConversationQuery whereLessThan(String key, Object value) {
conditions.whereLessThan(getColumnKey(key), value);
return this;
}
/**
* 增加查询条件,当conversation的属性中对应的字段满足小于等于条件时即可返回
*
* @param key
* @param value
* @return
*/
public AVIMConversationQuery whereLessThanOrEqualsTo(String key, Object value) {
conditions.whereLessThanOrEqualTo(getColumnKey(key), value);
return this;
}
/**
* 增加查询条件,当conversation的属性中对应的字段满足大于条件时即可返回
*
* @param key
* @param value
* @return
*/
public AVIMConversationQuery whereGreaterThan(String key, Object value) {
conditions.whereGreaterThan(getColumnKey(key), value);
return this;
}
/**
* 增加查询条件,当conversation的属性中对应的字段满足大于等于条件时即可返回
*
* @param key
* @param value
* @return
*/
public AVIMConversationQuery whereGreaterThanOrEqualsTo(String key, Object value) {
conditions.whereGreaterThanOrEqualTo(getColumnKey(key), value);
return this;
}
/**
* 增加查询条件,当conversation的属性中对应的字段满足不等于条件时即可返回
*
* @param key
* @param value
* @return
*/
public AVIMConversationQuery whereNotEqualsTo(String key, Object value) {
conditions.whereNotEqualTo(getColumnKey(key), value);
return this;
}
/**
* 增加查询条件,当conversation的属性中对应的字段对应的值包含在指定值中时即可返回
*
* @param key
* @param value
* @return
*/
public AVIMConversationQuery whereContainsIn(String key, Collection> value) {
conditions.whereContainedIn(getColumnKey(key), value);
return this;
}
/**
* 增加查询条件,当 conversation 的属性中对应的字段有值时即可返回
*
* @param key The key that should exist.
*/
public AVIMConversationQuery whereExists(String key) {
conditions.whereExists(getColumnKey(key));
return this;
}
/**
* 增加查询条件,当 conversation 的属性中对应的字段没有值时即可返回
* @param key
* @return
*/
public AVIMConversationQuery whereDoesNotExist(String key) {
conditions.whereDoesNotExist(getColumnKey(key));
return this;
}
/**
* 增加查询条件,当conversation的属性中对应的字段对应的值不包含在指定值中时即可返回
*
* @param key
* @param value
* @return
*/
public AVIMConversationQuery whereNotContainsIn(String key, Collection> value) {
conditions.whereNotContainedIn(getColumnKey(key), value);
return this;
}
/**
* 增加查询条件,当conversation的属性中对应的字段中的元素包含所有的值才可返回
*
* @param key
* @param values
* @return
*/
public AVIMConversationQuery whereContainsAll(String key, Collection> values) {
conditions.whereContainsAll(getColumnKey(key), values);
return this;
}
/**
* 增加查询条件,当conversation的属性中对应的字段对应的值包含此字符串即可返回
*
* @param key
* @param subString
* @return
*/
public AVIMConversationQuery whereContains(String key, String subString) {
conditions.whereContains(getColumnKey(key), subString);
return this;
}
/**
* 增加查询条件,当conversation的属性中对应的字段对应的值以此字符串起始即可返回
*
* @param key
* @param prefix
* @return
*/
public AVIMConversationQuery whereStartsWith(String key, String prefix) {
conditions.whereStartsWith(getColumnKey(key), prefix);
return this;
}
/**
* 增加查询条件,当conversation的属性中对应的字段对应的值以此字符串结束即可返回
*
* @param key
* @param suffix
* @return
*/
public AVIMConversationQuery whereEndsWith(String key, String suffix) {
conditions.whereEndsWith(getColumnKey(key), suffix);
return this;
}
/**
* 增加查询条件,当conversation的属性中对应的字段对应的值满足提供的正则表达式即可返回
*
* @param key
* @param regex
* @return
*/
public AVIMConversationQuery whereMatches(String key, String regex) {
conditions.whereMatches(getColumnKey(key), regex);
return this;
}
/**
* 增加查询条件,当conversation的属性中对应的字段对应的值满足提供的正则表达式即可返回
*
* @param key
* @param regex
* @param modifiers 正则表达式的匹配模式,比如"-i"表示忽视大小写区分等
* @return
*/
public AVIMConversationQuery whereMatches(String key, String regex, String modifiers) {
conditions.whereMatches(getColumnKey(key), regex, modifiers);
return this;
}
/**
* 增加一个基于地理位置的近似查询,当conversation的属性中对应字段对应的地理位置在pointer附近时即可返回
*
* @param key
* @param point
* @return
*/
public AVIMConversationQuery whereNear(String key, AVGeoPoint point) {
conditions.whereNear(getColumnKey(key), point);
return this;
}
/**
* 增加一个基于地理位置的查询,当conversation的属性中有对应字段对应的地址位置在指定的矩形区域内时即可返回
*
* @param key 查询字段
* @param southwest 矩形区域的左下角坐标
* @param northeast 去兴趣鱼的右上角坐标
* @return
*/
public AVIMConversationQuery whereWithinGeoBox(String key, AVGeoPoint southwest,
AVGeoPoint northeast) {
conditions.whereWithinGeoBox(getColumnKey(key), southwest, northeast);
return this;
}
/**
* 增加一个基于地理位置的近似查询,当conversation的属性中有对应的地址位置与指定的地理位置间距不超过指定距离时返回
*
* 地球半径为6371.0 千米
*
* @param key
* @param point 指定的地理位置
* @param maxDistance 距离,以千米计算
* @return
*/
public AVIMConversationQuery whereWithinKilometers(String key, AVGeoPoint point,
double maxDistance) {
conditions.whereWithinKilometers(getColumnKey(key), point, maxDistance);
return this;
}
/**
* 增加一个基于地理位置的近似查询,当conversation的属性中有对应的地址位置与指定的地理位置间距不超过指定距离时返回
*
* @param key
* @param point 指定的地理位置
* @param maxDistance 距离,以英里计算
* @return
*/
public AVIMConversationQuery whereWithinMiles(String key, AVGeoPoint point, double maxDistance) {
conditions.whereWithinMiles(getColumnKey(key), point, maxDistance);
return this;
}
/**
* 增加一个基于地理位置的近似查询,当conversation的属性中有对应的地址位置与指定的地理位置间距不超过指定距离时返回
*
* @param key
* @param point 指定的地理位置
* @param maxDistance 距离,以角度计算
* @return
*/
public AVIMConversationQuery whereWithinRadians(String key, AVGeoPoint point, double maxDistance) {
conditions.whereWithinRadians(getColumnKey(key), point, maxDistance);
return this;
}
/**
* 设置返回集合的大小上限
*
* @param limit 上限
* @return
*/
public AVIMConversationQuery setLimit(int limit) {
conditions.setLimit(limit);
return this;
}
/**
* 设置返回集合的大小上限
*
* @param limit 上限
* @return
*/
public AVIMConversationQuery limit(int limit) {
return this.setLimit(limit);
}
/**
* 设置返回集合的起始位置,一般用于分页
*
* @param skip 起始位置跳过几个对象
* @return
*/
public AVIMConversationQuery setSkip(int skip) {
conditions.setSkip(skip);
return this;
}
/**
* 设置返回集合的起始位置,一般用于分页
*
* @param skip 起始位置跳过几个对象
* @return
*/
public AVIMConversationQuery skip(int skip) {
return this.setSkip(skip);
}
/**
* 设置返回集合按照指定key进行增序排列
*
* @param key
* @return
*/
public AVIMConversationQuery orderByAscending(String key) {
conditions.orderByAscending(getColumnKey(key));
return this;
}
/**
* 设置返回集合按照指定key进行降序排列
*
* @param key
* @return
*/
public AVIMConversationQuery orderByDescending(String key) {
conditions.orderByDescending(getColumnKey(key));
return this;
}
/**
* 设置返回集合按照指定key进行升序排列,此 key 的优先级小于先前设置的 key
*
* @param key
* @return
*/
public AVIMConversationQuery addAscendingOrder(String key) {
conditions.addAscendingOrder(getColumnKey(key));
return this;
}
/**
* 设置返回集合按照指定key进行降序排列,此 key 的优先级小于先前设置的 key
*
* @param key
* @return
*/
public AVIMConversationQuery addDescendingOrder(String key) {
conditions.addDescendingOrder(getColumnKey(key));
return this;
}
/**
* 添加查询约束条件,查找key类型是数组,该数组的长度匹配提供的数值
*
* @param key
* @param size
* @return
*/
public AVIMConversationQuery whereSizeEqual(String key, int size) {
conditions.whereSizeEqual(getColumnKey(key), size);
return this;
}
/**
* 是否携带最后一条消息
*
* @return
*/
public boolean isWithLastMessagesRefreshed() {
return conditions.isWithLastMessagesRefreshed();
}
/**
* 设置是否携带最后一条消息
*
* @param isWithLastMessageRefreshed
*/
public AVIMConversationQuery setWithLastMessagesRefreshed(boolean isWithLastMessageRefreshed) {
conditions.setWithLastMessagesRefreshed(isWithLastMessageRefreshed);
return this;
}
/**
* 是否返回成员列表
* @param isCompact 为 true 的话则不返回,为 false 的话则返回成员列表,默认为 false
* @return
*/
public AVIMConversationQuery setCompact(boolean isCompact) {
conditions.setCompact(isCompact);
return this;
}
private String getAttributeKey(String key) {
return Conversation.ATTRIBUTE + "." + key;
}
private String getColumnKey(String key) {
if (Arrays.asList(Conversation.CONVERSATION_COLUMNS).contains(key)) {
return key;
} else if (key.startsWith(Conversation.ATTRIBUTE + ".")) {
return key;
} else {
return getAttributeKey(key);
}
}
public void findInBackground(final AVIMConversationQueryCallback callback) {
Map queryParams = conditions.assembleParameters();
final String queryParamsString = JSON.toJSONString(queryParams, ObjectValueFilter.instance);
switch (policy) {
case CACHE_THEN_NETWORK:
case CACHE_ELSE_NETWORK:
AVCacheManager.sharedInstance().get(queryParamsString, maxAge, null,
new CacheConversationQueryCallback(client, this, callback) {
@Override
public void onFailure(Throwable error, String content) {
queryFromNetwork(callback, queryParamsString);
}
});
break;
case NETWORK_ELSE_CACHE:
if (AVUtils.isConnected(AVOSCloud.applicationContext)) {
queryFromNetwork(callback, queryParamsString);
} else {
AVCacheManager.sharedInstance().get(queryParamsString, maxAge, null,
new CacheConversationQueryCallback(client, this, callback));
}
break;
case CACHE_ONLY:
AVCacheManager.sharedInstance().get(queryParamsString, maxAge, null,
new CacheConversationQueryCallback(client, this, callback));
break;
case NETWORK_ONLY:
case IGNORE_CACHE:
queryFromNetwork(callback, queryParamsString);
break;
}
}
private void queryFromNetwork(final AVIMConversationQueryCallback callback,
final String queryParamsString) {
if (!AVUtils.isConnected(AVOSCloud.applicationContext)) {
if (callback != null) {
callback.internalDone(null, new AVException(AVException.CONNECTION_FAILED,
"Connection lost"));
}
return;
}
BroadcastReceiver receiver = null;
if (callback != null) {
receiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
try {
Serializable data = intent.getExtras().getSerializable(Conversation.callbackData);
List conversations = null;
Throwable error = null;
if (data instanceof Throwable) {
error = (Throwable) data;
} else if (data instanceof JSONArray) {
JSONArray content = (JSONArray) data;
conversations = parseQueryResult(content);
if (!AVUtils.isEmptyList(conversations)) {
cacheQueryResult(queryParamsString, conversations);
}
} else if (data instanceof String) {
conversations = parseQueryResult(JSON.parseArray(String.valueOf(data)));
if (!AVUtils.isEmptyList(conversations)) {
cacheQueryResult(queryParamsString, conversations);
}
}
if (callback != null) {
callback.internalDone(error == null ? conversations : null, error == null
? null
: new AVException(error));
}
LocalBroadcastManager.getInstance(AVOSCloud.applicationContext)
.unregisterReceiver(this);
} catch (Exception e) {
if (callback != null) {
callback.internalDone(null, new AVException(e));
}
}
}
};
}
client.sendClientCMDToPushService(queryParamsString, receiver,
Conversation.AVIMOperation.CONVERSATION_QUERY);
}
private void cacheQueryResult(String queryParamsStr, List conversations) {
List conversationList = new LinkedList();
AVIMMessageStorage storage = null;
for (AVIMConversation conversation : conversations) {
conversationList.add(conversation.getConversationId());
storage = conversation.storage;
}
if (storage != null) {
storage.insertConversations(conversations);
}
AVCacheManager.sharedInstance().save(queryParamsStr, JSON.toJSONString(conversationList), null);
}
private List parseQueryResult(JSONArray content) {
List conversations = new LinkedList();
for (int i = 0; i < content.size(); i++) {
JSONObject jsonObject = content.getJSONObject(i);
AVIMConversation allNewConversation = AVIMConversation.parseFromJson(client, jsonObject);
if (null != allNewConversation) {
AVIMConversation convResult = client.mergeConversationCache(allNewConversation, false, jsonObject);
if (null != convResult) {
conversations.add(convResult);
}
}
}
return conversations;
}
static class CacheConversationQueryCallback extends GenericObjectCallback {
AVIMConversationQueryCallback callback;
AVIMClient client;
public CacheConversationQueryCallback(AVIMClient client, AVIMConversationQuery query,
AVIMConversationQueryCallback callback) {
this.callback = callback;
this.client = client;
}
@Override
public void onSuccess(String content, AVException e) {
if (!AVUtils.isBlankString(content)) {
try {
List conversationList = JSON.parseObject(content, List.class);
List conversations =
client.storage.getCachedConversations(conversationList);
if (conversations == null || conversations.size() < conversationList.size()) {
this.onFailure(AVErrorUtils.createException(AVException.CACHE_MISS,
AVException.cacheMissingErrorString), null);
return;
} else {
callback.internalDone(conversations, null);
}
} catch (Exception e1) {
callback.internalDone(null, new AVException(e1));
}
} else {
callback.internalDone(new LinkedList(), null);
}
}
@Override
public void onFailure(Throwable error, String content) {
callback.internalDone(null, new AVException(error));
}
}
/**
* 设置 AVIMConversationQuery的查询策略
*
* @param policy
*/
public void setQueryPolicy(AVQuery.CachePolicy policy) {
this.policy = policy;
}
/**
* Constructs a AVIMConversationQuery that is the or of the given queries.
*
* @param queries
* @return
*/
public static AVIMConversationQuery or(List queries) {
AVIMClient client;
if (queries.size() > 1) {
client = queries.get(0).client;
} else {
throw new IllegalArgumentException("Queries length should be l");
}
AVIMConversationQuery result = new AVIMConversationQuery(client);
if (queries.size() > 1) {
for (AVIMConversationQuery query : queries) {
if (!client.clientId.equals(query.client.getClientId())) {
throw new IllegalArgumentException("All queries must be for the same client");
}
result.conditions.addOrItems(new QueryOperation("$or", "$or", query.conditions
.compileWhereOperationMap()));
}
} else {
result.conditions.setWhere(queries.get(0).conditions.getWhere());
}
return result;
}
/**
* 设置查询缓存的有效时间
* @param maxAgeInSecond
*/
public void setCacheMaxAge(long maxAgeInSecond){
this.maxAge = maxAgeInSecond * 1000;
}
public long getCacheMaxAge(){
return maxAge/1000;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy