Files
MoonPro.net/MP-IO/Controllers/IOBController.cs
T
2017-04-14 13:56:01 +02:00

85 lines
2.5 KiB
C#

using MapoDb;
using SteamWare;
using System;
using System.Web.Mvc;
namespace MP_IO.Controllers
{
public class IOBController : Controller
{
// GET: IOB (è un check alive)
public string Index()
{
return "OK";
}
// disabilitato: non vale la pena
//// GET: IOB/enabled/5 - tenuta in cache per 5 sec...
//[OutputCache(Duration = 5, VaryByParam = "id")]
// GET: IOB/enabled/5
public string enabled(int? id)
{
string answ = "ND";
// se id nullo --> KO!
if (id == null)
{
answ = "KO";
}
else
{
int idx = 0;
Int32.TryParse(id.ToString(), out idx);
// verifico se sia abilitato INSERT x una data macchina
if (MapoDb.MapoDb.obj.insEnabled(idx))
{
answ = "OK";
}
else
{
answ = "NO";
}
}
return answ;
}
// GET: IOB/slog/5
public string slog(int? id)
{
string answ = "ND";
// se id nullo --> KO!
if (id == null)
{
answ = "KO";
}
else
{
int idx = 0;
Int32.TryParse(id.ToString(), out idx);
// verifico se sia abilitato SignalLog x una data macchina
if (MapoDb.MapoDb.obj.sLogEnabled(idx))
{
answ = "OK";
}
else
{
answ = "NO";
}
}
return answ;
}
// GET: IOB/input/5?valore=3&dtEve=20161223180600000&dtCurr=20161223180600000&cnt=999
public string input(string id, string valore, string dtEve, string dtCurr, string cnt)
{
string answ = "";
// formato yyyymmddHHMMSSnnn ovvero da anno a millisecondi
if (cnt == null) cnt = "0";
DateTime dataOraEvento = DateTime.Now;
if (memLayer.ML.CRI("_logLevel") > 6)
{
logger.lg.scriviLog(string.Format("Valori letti:{0}idxMacchina: {1}{0}valore: {2}{0}dtEve: {3}{0}dtCurr: {4}{0}cnt: {5}", Environment.NewLine, id, valore, dtEve, dtCurr, cnt), tipoLog.INFO);
}
answ = DataLayer.processInput(id, valore, dtEve, dtCurr, cnt);
return answ;
}
}
}