All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.nacos.config.server.service.ClientTrackService Maven / Gradle / Ivy

There is a newer version: 3.0.0-ALPHA.2
Show newest version
/*
 * Copyright 1999-2018 Alibaba Group Holding 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 com.alibaba.nacos.config.server.service;

import com.alibaba.nacos.config.server.model.SubscriberStatus;

import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;

/**
 * ClientTrackService which tracks client's md5 service and delete expired ip's records.
 *
 * @author Nacos
 */
public class ClientTrackService {
    
    /**
     * Put the specified value(ip/groupKey/clientMd5) into clientRecords Map.
     *
     * @param ip        ip string value.
     * @param groupKey  groupKey string value.
     * @param clientMd5 clientMd5 string value.
     */
    public static void trackClientMd5(String ip, String groupKey, String clientMd5) {
        ClientRecord record = getClientRecord(ip);
        record.setLastTime(System.currentTimeMillis());
        record.getGroupKey2md5Map().put(groupKey, clientMd5);
        record.getGroupKey2pollingTsMap().put(groupKey, record.getLastTime());
    }
    
    /**
     * Get subscribe client count.
     *
     * @return subscribe client count.
     */
    public static int subscribeClientCount() {
        return clientRecords.size();
    }
    
    /**
     * Get all of subscriber count.
     *
     * @return all of subscriber count.
     */
    public static long subscriberCount() {
        long count = 0;
        for (ClientRecord record : clientRecords.values()) {
            count += record.getGroupKey2md5Map().size();
        }
        return count;
    }
    
    /**
     * Groupkey ->  SubscriberStatus.
     */
    public static Map listSubStatus(String ip) {
        Map status = new HashMap<>(100);

        // record here is non-null
        ClientRecord record = getClientRecord(ip);
        for (Map.Entry entry : record.getGroupKey2md5Map().entrySet()) {
            String groupKey = entry.getKey();
            String clientMd5 = entry.getValue();
            long lastPollingTs = record.getGroupKey2pollingTsMap().get(groupKey);
            boolean isUpdate = ConfigCacheService.isUptodate(groupKey, clientMd5);
            
            status.put(groupKey, new SubscriberStatus(groupKey, isUpdate, clientMd5, lastPollingTs));
        }
        
        return status;
    }
  
    /**
     * Specify subscriber's ip and look up whether data is latest.
     * groupKey -> isUptodate.
     */
    public static Map isClientUptodate(String ip) {
        Map result = new HashMap<>(100);
        for (Map.Entry entry : getClientRecord(ip).getGroupKey2md5Map().entrySet()) {
            String groupKey = entry.getKey();
            String clientMd5 = entry.getValue();
            Boolean isuptodate = ConfigCacheService.isUptodate(groupKey, clientMd5);
            result.put(groupKey, isuptodate);
        }
        return result;
    }
    
    /**
     * Get and return the record of specified client ip.
     *
     * @param clientIp clientIp string value.
     * @return the record of specified client ip.
     */
    private static ClientRecord getClientRecord(String clientIp) {
        ClientRecord record = clientRecords.get(clientIp);
        if (null != record) {
            return record;
        }
        ClientRecord clientRecord = new ClientRecord(clientIp);
        record = clientRecords.putIfAbsent(clientIp, clientRecord);
        return null == record ? clientRecord : record;
    }
    
    public static void refreshClientRecord() {
        clientRecords = new ConcurrentHashMap<>(50);
    }
    
    /**
     * All of client records, adding or deleting.
     */
    static volatile ConcurrentMap clientRecords = new ConcurrentHashMap<>();
}






© 2015 - 2025 Weber Informatics LLC | Privacy Policy