/* * (C) Copyright 2015-2016 the original author or authors. * * 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. * * Contributors: * ohun@live.cn (夜色) */ package com.mpush.common.user; import com.mpush.api.spi.common.CacheManager; import com.mpush.api.spi.common.CacheManagerFactory; import com.mpush.common.CacheKeys; import com.mpush.tools.config.ConfigManager; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.List; //查询使用 public final class UserManager { private static final Logger LOGGER = LoggerFactory.getLogger(UserManager.class); public static final UserManager I = new UserManager(); private final CacheManager cacheManager = CacheManagerFactory.create(); private final String onlineUserListKey = CacheKeys.getOnlineUserListKey(ConfigManager.I.getPublicIp()); public void clearUserOnlineData() { cacheManager.del(onlineUserListKey); } public void addToOnlineList(String userId) { cacheManager.zAdd(onlineUserListKey, userId); LOGGER.info("user online {}", userId); } public void remFormOnlineList(String userId) { cacheManager.zRem(onlineUserListKey, userId); LOGGER.info("user offline {}", userId); } //在线用户数量 public long getOnlineUserNum() { Long value = cacheManager.zCard(onlineUserListKey); return value == null ? 0 : value; } //在线用户数量 public long getOnlineUserNum(String publicIP) { String online_key = CacheKeys.getOnlineUserListKey(publicIP); Long value = cacheManager.zCard(online_key); return value == null ? 0 : value; } //在线用户列表 public List<String> getOnlineUserList(String publicIP, int start, int end) { String key = CacheKeys.getOnlineUserListKey(publicIP); return cacheManager.zrange(key, start, end, String.class); } }