add new backend types
This commit is contained in:
parent
2e6f2f464b
commit
759842b528
@ -1,11 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
using BlubbFish.Utils.IoT.Events;
|
||||
|
||||
namespace BlubbFish.Utils.IoT.Connector {
|
||||
public abstract class ABackend {
|
||||
public enum BackendType {
|
||||
Data,
|
||||
Db,
|
||||
Storage,
|
||||
User
|
||||
}
|
||||
public event BackendMessage MessageIncomming;
|
||||
@ -18,20 +22,44 @@ namespace BlubbFish.Utils.IoT.Connector {
|
||||
|
||||
public ABackend(Dictionary<String, String> settings) => this.settings = settings;
|
||||
|
||||
|
||||
public static ABackend GetInstance(Dictionary<String, String> settings) {
|
||||
if(settings.Count == 0) {
|
||||
return null;
|
||||
}
|
||||
try {
|
||||
return GetInstance(settings, (BackendType)Enum.Parse(typeof(BackendType), settings["backendtype"]));
|
||||
} catch(Exception e) {
|
||||
throw new Exception("Something bad Happend while Loading Connector without type: " + e.Message);
|
||||
}
|
||||
}
|
||||
|
||||
public static ABackend GetStorageInstance(Dictionary<String, String> settings, List<Type> types) {
|
||||
if(settings.Count == 0 || types.Count != 1) {
|
||||
return null;
|
||||
}
|
||||
String object_sensor = "BlubbFish.Utils.IoT.Connector.Storage." + settings["type"].ToUpperLower() + "`"+types.Count+"["+ String.Join(",", new List<String>(types.Select(x => "["+x.FullName + "," + x.Assembly.FullName+"]"))) + "], " + "ConnectorStorage" + settings["type"].ToUpperLower();
|
||||
return LoadInstance(object_sensor, settings, "Storage");
|
||||
}
|
||||
|
||||
public static ABackend GetInstance(Dictionary<String, String> settings, BackendType ty) {
|
||||
if (settings.Count == 0) {
|
||||
return null;
|
||||
}
|
||||
String object_sensor = "BlubbFish.Utils.IoT.Connector." + ty.ToString() + "." + settings["type"].ToUpperLower() + ", " + "Connector" + ty.ToString() + settings["type"].ToUpperLower();
|
||||
return LoadInstance(object_sensor, settings, ty.ToString());
|
||||
}
|
||||
|
||||
public static ABackend LoadInstance(String object_sensor, Dictionary<String, String> settings, String backendtype) {
|
||||
try {
|
||||
Type t = Type.GetType(object_sensor, true);
|
||||
return (ABackend)t.GetConstructor(new Type[] { typeof(Dictionary<String, String>) }).Invoke(new Object[] { settings });
|
||||
} catch(TypeLoadException) {
|
||||
throw new TypeLoadException("Configuration: " + settings["type"] + " is not a " + ty.ToString() + "Backend");
|
||||
throw new TypeLoadException("Configuration: " + settings["type"] + " is not a " + backendtype + "Backend");
|
||||
} catch(System.IO.FileNotFoundException) {
|
||||
throw new DllNotFoundException("Driver " + object_sensor + " could not load!");
|
||||
} catch(Exception e) {
|
||||
throw new Exception("Something bad Happend while Loading Connectior: "+e.Message);
|
||||
throw new Exception("Something bad Happend while Loading Connector: " + e.Message);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
14
Utils-IoT/Connector/ADbBackend.cs
Normal file
14
Utils-IoT/Connector/ADbBackend.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace BlubbFish.Utils.IoT.Connector {
|
||||
public abstract class ADbBackend : ABackend {
|
||||
public ADbBackend(Dictionary<String, String> settings) : base(settings) { }
|
||||
|
||||
public abstract T LoadSingleRow<T>(String query, Dictionary<String, Object> param) where T : new();
|
||||
|
||||
public abstract List<T> LoadMultiRows<T>(String query, Dictionary<String, Object> param) where T : new();
|
||||
|
||||
public abstract Int32 Insert(String query, Dictionary<String, Object> param);
|
||||
}
|
||||
}
|
||||
14
Utils-IoT/Connector/AStorageBackend.cs
Normal file
14
Utils-IoT/Connector/AStorageBackend.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace BlubbFish.Utils.IoT.Connector {
|
||||
public abstract class AStorageBackend<O> : ABackend {
|
||||
public AStorageBackend(Dictionary<String, String> settings) : base(settings) { }
|
||||
|
||||
public abstract Dictionary<String, O> Get() ;
|
||||
|
||||
public abstract O Get(String key);
|
||||
|
||||
public abstract Boolean Put(O param, String key);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user