using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using LiteDB;
namespace Firebase.Database.Offline
{
///
/// The offline database.
///
public class OfflineDatabase : IDictionary
{
private readonly IDictionary cache;
private readonly LiteRepository db;
///
/// Initializes a new instance of the class.
///
/// The item type which is used to determine the database file name.
/// Custom string which will get appended to the file name.
public OfflineDatabase(Type itemType, string filenameModifier)
{
var fullName = GetFileName(itemType.ToString());
if (fullName.Length > 100) fullName = fullName.Substring(0, 100);
var mapper = BsonMapper.Global;
mapper.Entity().Id(o => o.Key);
var root = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
var filename = fullName + filenameModifier + ".db";
var path = Path.Combine(root, filename);
db = new LiteRepository(new LiteDatabase(path, mapper));
cache = db.Database.GetCollection().FindAll()
.ToDictionary(o => o.Key, o => o);
}
///
/// Gets the number of elements contained in the .
///
/// The number of elements contained in the .
public int Count => cache.Count;
///
/// Gets a value indicating whether this is a read-only collection.
///
public bool IsReadOnly => cache.IsReadOnly;
///
/// Gets an containing the keys of the
/// .
///
///
/// An containing the keys of the object that
/// implements .
///
public ICollection Keys => cache.Keys;
///
/// Gets an containing the values in the
/// .
///
///
/// An containing the values in the object that
/// implements .
///
public ICollection Values => cache.Values;
///
/// Gets or sets the element with the specified key.
///
/// The key of the element to get or set.
/// The element with the specified key.
public OfflineEntry this[string key]
{
get => cache[key];
set
{
cache[key] = value;
db.Upsert(value);
}
}
///
/// Returns an enumerator that iterates through the collection.
///
/// An enumerator that can be used to iterate through the collection.
public IEnumerator> GetEnumerator()
{
return cache.GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
///
/// Adds an item to the .
///
/// The object to add to the .
public void Add(KeyValuePair item)
{
Add(item.Key, item.Value);
}
///
/// Removes all items from the .
///
public void Clear()
{
cache.Clear();
db.Delete(LiteDB.Query.All());
}
///
/// Determines whether the contains a specific value.
///
/// The object to locate in the .
///
/// True if is found in the ;
/// otherwise, false.
///
public bool Contains(KeyValuePair item)
{
return ContainsKey(item.Key);
}
///
/// Copies the elements of the to an
/// , starting at a particular index.
///
///
/// The one-dimensional that is the destination of the elements copied
/// from . The must have
/// zero-based indexing.
///
/// The zero-based index in at which copying begins.
public void CopyTo(KeyValuePair[] array, int arrayIndex)
{
cache.CopyTo(array, arrayIndex);
}
///
/// Removes the first occurrence of a specific object from the
/// .
///
/// The object to remove from the .
///
/// True if was successfully removed from the
/// ; otherwise, false. This method also returns false if
/// is not found in the original .
///
public bool Remove(KeyValuePair item)
{
return Remove(item.Key);
}
///
/// Determines whether the contains an element with the
/// specified key.
///
/// The key to locate in the .
///
/// True if the contains an element with the key;
/// otherwise, false.
///
public bool ContainsKey(string key)
{
return cache.ContainsKey(key);
}
///
/// Adds an element with the provided key and value to the .
///
/// The object to use as the key of the element to add.
/// The object to use as the value of the element to add.
public void Add(string key, OfflineEntry value)
{
cache.Add(key, value);
db.Insert(value);
}
///
/// Removes the element with the specified key from the .
///
/// The key of the element to remove.
///
/// True if the element is successfully removed; otherwise, false. This method also returns false if
/// was not found in the original .
///
public bool Remove(string key)
{
cache.Remove(key);
return db.Delete(key);
}
///
/// Gets the value associated with the specified key.
///
/// The key whose value to get.
///
/// When this method returns, the value associated with the specified key, if the key is found;
/// otherwise, the default value for the type of the parameter. This parameter is passed
/// uninitialized.
///
///
/// True if the object that implements contains an
/// element with the specified key; otherwise, false.
///
public bool TryGetValue(string key, out OfflineEntry value)
{
return cache.TryGetValue(key, out value);
}
private string GetFileName(string fileName)
{
var invalidChars = new[] {'`', '[', ',', '='};
foreach (var c in invalidChars.Concat(Path.GetInvalidFileNameChars()).Distinct())
fileName = fileName.Replace(c, '_');
return fileName;
}
}
}