blob: b2d5b042bdf0290b63220c77f331dabeddcdabf9 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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.
using System;
using System.Net;
using Microsoft.Extensions.Caching.Memory;
using Org.Apache.REEF.Network.Naming.Parameters;
using Org.Apache.REEF.Tang.Annotations;
using Org.Apache.REEF.Utilities.Logging;
namespace Org.Apache.REEF.Network.Naming
{
/// <summary>
/// Cache class for caching IpEndPoint Lookups
/// </summary>
internal sealed class NameCache
{
private static readonly Logger Logger = Logger.GetLogger(typeof(NameCache));
private readonly IMemoryCache _cache;
/// <summary>
/// Duration in milli seconds after which cache entry expires
/// Usage in cache requires it to be double than int or long
/// </summary>
private readonly double _expirationDuration;
[Inject]
[Obsolete("TODO[JIRA REEF-1856] This constructor will be removed")]
private NameCache(
[Parameter(typeof(NameCacheConfiguration.CacheEntryExpiryTime))] double expirationDuration,
[Parameter(typeof(NameCacheConfiguration.CacheMemoryLimit))] string memoryLimit,
[Parameter(typeof(NameCacheConfiguration.PollingInterval))] string pollingInterval)
{
Logger.Log(Level.Warning, "Received a parameter \"PollingInterval\" which will be interpreted as ExpirationScanFrequency.");
Logger.Log(Level.Warning, "Received a parameter \"CacheMemoryLimit\" which will be ignored.");
var cacheConfig = new MemoryCacheOptions
{
ExpirationScanFrequency = TimeSpan.Parse(pollingInterval)
};
_cache = new MemoryCache(cacheConfig);
_expirationDuration = expirationDuration;
}
[Inject]
private NameCache(
[Parameter(typeof(NameCacheConfiguration.CacheEntryExpiryTime))] double expirationDuration,
[Parameter(typeof(NameCacheConfiguration.ExpirationScanFrequency))] string expirationScanFrequency)
{
var cacheConfig = new MemoryCacheOptions
{
ExpirationScanFrequency = TimeSpan.Parse(expirationScanFrequency)
};
_cache = new MemoryCache(cacheConfig);
_expirationDuration = expirationDuration;
}
/// <summary>
/// Add an entry to cache if it does not exist or replace if it already ecists
/// </summary>
/// <param name="identifier">remote destination Id</param>
/// <param name="value">IPEndPoint of remote destination</param>
internal void Set(string identifier, IPEndPoint value)
{
_cache.Set(identifier, value, DateTimeOffset.Now.AddMilliseconds(_expirationDuration));
}
/// <summary>
/// Gets the cached remote IpEndPoint given the name
/// </summary>
/// <param name="identifier">Remote destination name/Id</param>
/// <returns>IPEndPoint of remote destination if it is cached, null otherwise</returns>
internal IPEndPoint Get(string identifier)
{
var entry = _cache.Get(identifier);
return entry as IPEndPoint;
}
/// <summary>
/// Removes the entry from the cache
/// </summary>
/// <param name="identifier"></param>
internal void RemoveEntry(string identifier)
{
_cache.Remove(identifier);
}
}
}