Esempio n. 1
0
        protected double GetFromHistory(string key)
        {
            int         result    = 0;
            cls_IPSIAPI api       = new PSI_API.cls_IPSIAPIClass();
            var         loginInfo = new typLoginInfo
            {
                strUser      = @"Suser",
                strPassword  = @"Superuser",
                strUserClass = @"Suser",
                strView      = @"psidisplay"
            };

            try
            {
                api.vbLogin(loginInfo);
                DateTime now = DateTime.Now;

                var values = api.vbGetStdValues(key, now, "MI5", 13);
                foreach (PSI_API.typeValue value in values)
                {
                    if (!IsValueUnknwon(value.Wert))
                    {
                        api.vbLogout();
                        return(value.Wert);
                    }
                }

                values = api.vbGetStdValues(key, now, "H1", 24);
                foreach (PSI_API.typeValue value in values)
                {
                    if (!IsValueUnknwon(value.Wert))
                    {
                        api.vbLogout();
                        return(value.Wert);
                    }
                }
                api.vbLogout();
            }
            catch (COMException e)
            {
            }

            return(-1);
        }
Esempio n. 2
0
        protected double GetFromHistory(string key, String mode)
        {
            int         result = 0;
            cls_IPSIAPI api    = new PSI_API.cls_IPSIAPIClass();

            try
            {
                var loginInfo = new typLoginInfo
                {
                    strUser      = @"Suser",
                    strPassword  = @"Superuser",
                    strUserClass = @"Suser",
                    strView      = @"psidisplay"
                };
                api.vbLogin(loginInfo);
                DateTime now = DateTime.Now;

                var values = api.vbGetStdValues(key, now, "MI5", 13);
                foreach (PSI_API.typeValue value in values)
                {
                    bool isOk = false;
                    if (mode == "general")
                    {
                        isOk = !IsValueUnknwonGeneral(value.Wert);
                    }
                    if (mode == "pik")
                    {
                        isOk = !IsValueUnknwonPIK(value.Wert);
                    }
                    if (mode == "sltm")
                    {
                        isOk = !IsValueUnknwonSLTM(value.Wert);
                    }

                    if (isOk)
                    {
                        api.vbLogout();
                        return(value.Wert);
                    }
                }

                values = api.vbGetStdValues(key, now, "H1", 24);
                foreach (PSI_API.typeValue value in values)
                {
                    bool isOk = false;
                    if (mode == "general")
                    {
                        isOk = !IsValueUnknwonGeneral(value.Wert);
                    }
                    if (mode == "pik")
                    {
                        isOk = !IsValueUnknwonPIK(value.Wert);
                    }
                    if (mode == "sltm")
                    {
                        isOk = !IsValueUnknwonSLTM(value.Wert);
                    }

                    if (isOk)
                    {
                        api.vbLogout();
                        return(value.Wert);
                    }
                }
                api.vbLogout();
            } catch (COMException e)
            {
            }
            return(-1);
        }
Esempio n. 3
0
        public override void DoWork(object idTaskStatus)
        {
            var session   = Db <WebEnvironmentFiact> .NSession;
            var status    = session.Get <StatusTask>((int)idTaskStatus);
            var listItems = Db <WebEnvironmentFiact> .Get <Domain.Setting.Training.IdsForTraining>();

            var sbForFile         = new StringBuilder(RowFormat.Length * listItems.Count());
            var sbForFileOriginal = new StringBuilder(RowFormat.Length * listItems.Count());

            var item = String.Empty;

            try
            {
                int countValue = 0;

                cls_IPSIAPI api = new PSI_API.cls_IPSIAPIClass();

                var loginInfo = new typLoginInfo
                {
                    strUser      = System.Configuration.ConfigurationManager.AppSettings["psiLogin"],
                    strPassword  = System.Configuration.ConfigurationManager.AppSettings["psiPassword"],
                    strUserClass = System.Configuration.ConfigurationManager.AppSettings["psiUserClass"],
                    strView      = System.Configuration.ConfigurationManager.AppSettings["psiView"]
                };
                api.vbLogin(loginInfo);

                ConverterManager mgr = ConverterManager.Instance;
                foreach (var idsForTraining in listItems)
                {
                    if (Entity.TimeGetData.HasValue)
                    {
                    }

                    item = idsForTraining.Id;


                    try
                    {
                        var value = api.vbGetPAValue(idsForTraining.Id);
                        sbForFile.AppendFormat(RowFormat, idsForTraining.Value,
                                               mgr.GetVestaValue(idsForTraining.Id, value.Wert),
                                               DateTime.Now);
                        sbForFileOriginal.AppendFormat(RowFormat, idsForTraining.Value, value.Wert,
                                                       DateTime.Now);
                    }
                    catch (Exception e)
                    {
                        status.Error += "Problem with tag: " + item + Environment.NewLine + e.Message;
                    }
                }

                api.vbLogout();

                session.Refresh(status);
                status = session.Get <StatusTask>(idTaskStatus);

                String dir = Entity.Param + @"\" + string.Format("{0:yyMMdd}", DateTime.Now);
                if (!Directory.Exists(dir))
                {
                    Directory.CreateDirectory(dir);
                }


                if (!File.Exists(FullPath))
                {
                    using (var streamFile = File.CreateText(FullPath))
                    {
                        streamFile.Write(sbForFile.ToString());
                    }
                    using (var streamFile = File.CreateText(FullPathOriginal))
                    {
                        streamFile.Write(sbForFileOriginal.ToString());
                    }
                    status.TaskExecType = TaskExecType.Succeed;
                }
                else
                {
                    status.TaskExecType = TaskExecType.Failure;
                    status.ErrorRows    = 1;
                    status.Error        = string.Format("‘айл с именем {0} уже существует",
                                                        FullPath);
                }
            }
            catch (Exception e)
            {
                session.Refresh(status);
                status              = session.Get <StatusTask>(idTaskStatus);
                status.Error        = status.Error + Environment.NewLine + e.ToString();
                status.TaskExecType = TaskExecType.Failure;
            }
            status.EndRun = DateTime.Now;
            session.Save(status);
            session.Flush();
        }
Esempio n. 4
0
        public override void DoWork(object idTaskStatus)
        {
            log.Debug("Stating job execution");
            var session = Db <WebEnvironmentFiact> .NSession;
            var status  = session.Get <StatusTask>((int)idTaskStatus);

            try
            {
                log.Debug("Setting up PSI API");
                cls_IPSIAPI api       = new PSI_API.cls_IPSIAPIClass();
                var         loginInfo = new typLoginInfo
                {
                    strUser      = ConfigurationManager.AppSettings["psiLogin"],
                    strPassword  = ConfigurationManager.AppSettings["psiPassword"],
                    strUserClass = ConfigurationManager.AppSettings["psiUserClass"],
                    strView      = ConfigurationManager.AppSettings["psiView"]
                };
                api.vbLogin(loginInfo);
                log.DebugFormat("Working with API Server: {0}", api.GetActiveServer);
                log.DebugFormat("PSI API Session id:{0}", api.GetSessionID);

                using (OleDbConnection excelConnection = new OleDbConnection(String.Format("Provider=Microsoft.ACE.OLEDB.12.0;Data Source={0}; Extended Properties=Excel 12.0;", ConfigurationManager.AppSettings["eitpConfigFile"])))
                {
                    log.DebugFormat("Opening excel configuration file:{0}", ConfigurationManager.AppSettings["configSheetName"]);
                    excelConnection.Open();


                    using (OleDbCommand excelCommand = new OleDbCommand(String.Format("select * from [{0}$]", ConfigurationManager.AppSettings["configSheetName"]), excelConnection))
                    {
                        log.DebugFormat("Querying excel with Query: {0}", String.Format("select * from [{0}$]", ConfigurationManager.AppSettings["configSheetName"]));
                        using (OleDbDataReader excelReader = excelCommand.ExecuteReader())
                        {
                            log.DebugFormat("Result of execution, extracted {0} fields and {1} records from excel file", excelReader.FieldCount, excelReader.RecordsAffected);
                            while (excelReader.Read())
                            {
                                log.Debug("Trying fetch excel record");
                                if (excelReader.GetValue(5) == DBNull.Value)
                                {
                                    log.Error("REcord had empty value in excel cell, trying to precess next one...");
                                    continue;
                                }
                                String pbTag = excelReader.GetString(5) +
                                               ConfigurationManager.AppSettings["pbTagSuffix"];
                                String pTag = excelReader.GetString(5) + ConfigurationManager.AppSettings["ptagSuffix"];
                                String qTag = excelReader.GetString(5) + ConfigurationManager.AppSettings["qTagSuffix"];
                                String tTag = excelReader.GetString(5) + ConfigurationManager.AppSettings["tTagSuffix"];

                                String internalTag = excelReader.GetString(1);
                                log.Debug("Excel cell value found.");
                                log.Debug("Generating tags:");
                                log.DebugFormat("   PB Tag:{0}", pbTag);
                                log.DebugFormat("   P Tag :{0}", pTag);
                                log.DebugFormat("   T Tag  :{0}", tTag);
                                log.DebugFormat("Integral EITP Tag:{0}", internalTag);

                                if (String.IsNullOrEmpty(internalTag))
                                {
                                    log.Error("EITP Tag is empty going to the next record.");
                                    continue;
                                }

                                log.Debug("Opening Postgres connection");

                                using (NpgsqlConnection connection = new NpgsqlConnection(ConfigurationManager.ConnectionStrings["eitp"].ConnectionString))
                                {
                                    String sql = String.Format(ConfigurationManager.AppSettings["eitpHOURsql"],
                                                               internalTag);
                                    log.DebugFormat("Extracting values with query: {0}", sql);
                                    try
                                    {
                                        using (NpgsqlCommand command = new NpgsqlCommand(sql, connection))
                                        {
                                            connection.Open();



                                            using (NpgsqlDataReader reader = command.ExecuteReader())
                                            {
                                                log.DebugFormat("Query returned {0} records", reader.RecordsAffected);
                                                while (reader.Read())

                                                {
                                                    if (reader.GetValue(1) != DBNull.Value)
                                                    {
                                                        api.vbSetStdValue(pbTag, "H",
                                                                          new typeValue
                                                        {
                                                            Wert = reader.GetDouble(1),
                                                            Zeit = reader.GetDateTime(0)
                                                        });
                                                        log.DebugFormat("Setting value:{0} for tag:{1}, and time {2}", reader.GetDouble(1), pbTag, reader.GetDateTime(0));
                                                    }
                                                    if (reader.GetValue(2) != DBNull.Value)
                                                    {
                                                        api.vbSetStdValue(pTag, "H",
                                                                          new typeValue
                                                        {
                                                            Wert = reader.GetDouble(2),
                                                            Zeit = reader.GetDateTime(0)
                                                        });
                                                        log.DebugFormat("Setting value:{0} for tag:{1}, and time {2}", reader.GetDouble(1), pTag, reader.GetDateTime(0));
                                                    }
                                                    if (reader.GetValue(3) != DBNull.Value)
                                                    {
                                                        api.vbSetStdValue(tTag, "H",
                                                                          new typeValue
                                                        {
                                                            Wert = reader.GetDouble(3),
                                                            Zeit = reader.GetDateTime(0)
                                                        });
                                                        log.DebugFormat("Setting value:{0} for tag:{1}, and time {2}", reader.GetDouble(1), tTag, reader.GetDateTime(0));
                                                    }
                                                }
                                            }
                                        }
                                    }
                                    catch (COMException ex)
                                    {
                                        log.ErrorFormat("COM Error occurred while setting values: {0}", ex.Message);
                                    }
                                }
                            }
                        }
                    }
                }
                log.Debug("Logout from PSI");
                log.Debug("Job completed");
                api.vbLogout();


                session.Evict(status);
                status = session.Get <StatusTask>(idTaskStatus);
                status.TaskExecType = TaskExecType.Succeed;
            }
            catch (Exception e)
            {
                session.Evict(status);
                status              = session.Get <StatusTask>(idTaskStatus);
                status.Error        = e.ToString();
                status.TaskExecType = TaskExecType.Failure;
            }

            status.EndRun = DateTime.Now;
            session.Save(status);
            session.Flush();
        }
Esempio n. 5
0
        public override void DoWork(object idTaskStatus)
        {
            var session = Db <WebEnvironmentFiact> .NSession;
            var status  = session.Get <StatusTask>((int)idTaskStatus);

            try
            {
                cls_IPSIAPI api       = new PSI_API.cls_IPSIAPIClass();
                var         loginInfo = new typLoginInfo
                {
                    strUser      = ConfigurationManager.AppSettings["psiLogin"],
                    strPassword  = ConfigurationManager.AppSettings["psiPassword"],
                    strUserClass = ConfigurationManager.AppSettings["psiUserClass"],
                    strView      = ConfigurationManager.AppSettings["psiView"]
                };
                api.vbLogin(loginInfo);


                using (OleDbConnection excelConnection = new OleDbConnection(String.Format("Provider=Microsoft.ACE.OLEDB.12.0;Data Source={0}; Extended Properties=Excel 12.0;", ConfigurationManager.AppSettings["eitpConfigFile"])))
                {
                    excelConnection.Open();


                    using (OleDbCommand excelCommand = new OleDbCommand(String.Format("select * from [{0}$]", ConfigurationManager.AppSettings["configSheetName"]), excelConnection))
                    {
                        using (OleDbDataReader excelReader = excelCommand.ExecuteReader())
                        {
                            while (excelReader.Read())
                            {
                                if (excelReader.GetValue(5) == DBNull.Value)
                                {
                                    continue;
                                }
                                String pbTag = excelReader.GetString(5) +
                                               ConfigurationManager.AppSettings["pbTagSuffix"];
                                String pTag = excelReader.GetString(5) + ConfigurationManager.AppSettings["ptagSuffix"];
                                String qTag = excelReader.GetString(5) + ConfigurationManager.AppSettings["qTagSuffix"];
                                String tTag = excelReader.GetString(5) + ConfigurationManager.AppSettings["tTagSuffix"];

                                String internalTag = excelReader.GetString(1);
                                if (String.IsNullOrEmpty(internalTag))
                                {
                                    continue;
                                }


                                using (NpgsqlConnection connection = new NpgsqlConnection(ConfigurationManager.ConnectionStrings["eitp"].ConnectionString))
                                {
                                    String sql = String.Format(ConfigurationManager.AppSettings["eitpRTsql"],
                                                               internalTag);
                                    try
                                    {
                                        using (NpgsqlCommand command = new NpgsqlCommand(sql, connection))
                                        {
                                            var tag = String.Format("SY.SNMP.{0}.PKOPET...LINK4", ConfigurationManager.AppSettings["lpuKey"]);
                                            try
                                            {
                                                connection.Open();

                                                api.vbSetPAValue(ref tag, new typeValue {
                                                    Wert = 1
                                                });
                                            }
                                            catch (Exception e)
                                            {
                                                api.vbSetPAValue(ref tag, new typeValue {
                                                    Wert = 1
                                                });
                                            }
                                            using (NpgsqlDataReader reader = command.ExecuteReader())
                                            {
                                                if (reader.HasRows)
                                                {
                                                    reader.Read();
                                                    if (reader.GetValue(1) != DBNull.Value)
                                                    {
                                                        api.vbSetPAValue(pbTag,
                                                                         new typeValue
                                                        {
                                                            Wert = reader.GetDouble(1),
                                                            Zeit = reader.GetDateTime(0)
                                                        });
                                                    }
                                                    if (reader.GetValue(2) != DBNull.Value)
                                                    {
                                                        api.vbSetPAValue(pTag,
                                                                         new typeValue
                                                        {
                                                            Wert = reader.GetDouble(2),
                                                            Zeit = reader.GetDateTime(0)
                                                        });
                                                    }
                                                    if (reader.GetValue(3) != DBNull.Value)
                                                    {
                                                        api.vbSetPAValue(qTag,
                                                                         new typeValue
                                                        {
                                                            Wert = reader.GetDouble(3),
                                                            Zeit = reader.GetDateTime(0)
                                                        });
                                                    }
                                                    if (reader.GetValue(4) != DBNull.Value)
                                                    {
                                                        api.vbSetPAValue(tTag,
                                                                         new typeValue
                                                        {
                                                            Wert = reader.GetDouble(4),
                                                            Zeit = reader.GetDateTime(0)
                                                        });
                                                    }
                                                }
                                            }
                                        }
                                    }
                                    catch (COMException ex)
                                    {
                                    }
                                }
                            }
                        }
                    }
                }
                api.vbLogout();

                session.Evict(status);
                status = session.Get <StatusTask>(idTaskStatus);
                status.TaskExecType = TaskExecType.Succeed;
            }
            catch (Exception e)
            {
                session.Evict(status);
                status              = session.Get <StatusTask>(idTaskStatus);
                status.Error        = e.ToString();
                status.TaskExecType = TaskExecType.Failure;
            }

            status.EndRun = DateTime.Now;
            session.Save(status);
            session.Flush();
        }