123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include "AppGlobalF.h"
- #include "ITSDbF.h"
- #include "ITSUtilF.h"
- #include "CDSCodeF.h"
- #include <inifiles.hpp>
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- //---------------------------------------------------------------------------
- int g_nPid = -1; // Application Process ID
- String g_sAppDir = ""; // Application Directory
- String g_sAppName= ""; // Program name
- String g_sCfgDir = ""; // Config File Directory
- String g_sLogDir = ""; // Program Log Directory
- String g_sTempDir = ""; // Program Temp Directory
- String g_sFormsDir = ""; // Program Forms Directory
- String g_sBlackBox = "";
- String g_sLangDir = "";
- String g_sImageDir = "";
- String g_sVideoDir = "";
- String g_sMapDir = "";
- APP_CONFIG g_AppCfg;
- LOG_INFO g_LogCfg;
- TITSLog *ITSLog = NULL;
- String g_sLang = "kr";
- String g_IniFileDir = "";
- String g_IniFileName = "Option";
- bool g_bControlAuth = true;
- //---------------------------------------------------------------------------
- bool CheckApplicationParam() {
- int nArgs = ParamCount();
- if (nArgs != 2) {
- return false;
- }
- g_AppCfg.MAGIC_ID = ParamStr(1);
- g_AppCfg.OPER_ID = ParamStr(2);
- g_AppCfg.OPER_ID = g_AppCfg.OPER_ID.SubString(1, 10);
- if (g_AppCfg.MAGIC_ID.UpperCase() != "ICAIR") {
- return false;
- }
- return true;
- }
- //---------------------------------------------------------------------------
- void ActiveProgram(String AClassName, String ATitle) {
- //String AClassName = "TFrmVmsFormEdit";
- //String ATitle = g_AppCfg.sTitle + " - Active";
- HWND hExeForm = FindWindow(AClassName.c_str(), ATitle.c_str());
- if (hExeForm)
- {
- bool bResult = SetWindowPos(hExeForm, HWND_TOP, 0, 0, 0, 0, SWP_SHOWWINDOW | SWP_NOSIZE | SWP_NOMOVE);
- if (bResult) {
- bResult = ShowWindow(hExeForm, SW_RESTORE);
- SetForegroundWindow(hExeForm);
- }
- }
- }
- //---------------------------------------------------------------------------
- bool ApplicationSingleRun(String AClassName, String ATitle) {
- HANDLE hMutex;
- try
- {
- String sLockFile = ChangeFileExt(ExtractFileName(Application->ExeName), ".lock");
- String sProgMutexNm = "ICAIR_" + sLockFile;
- if ((hMutex=OpenMutex(MUTEX_ALL_ACCESS, false, sProgMutexNm.c_str()))==NULL)
- hMutex = CreateMutex(NULL, true, sProgMutexNm.c_str());
- else
- {
- ActiveProgram(AClassName, ATitle);
- return false;
- }
- }
- catch (Exception &exception)
- {
- Application->ShowException(&exception);
- return false;
- }
- return true;
- }
- //---------------------------------------------------------------------------
- void LoadIcon(TIniFile* AIniFile, String ASection, String AItem, String& AValue)
- {
- try
- {
- AValue = AIniFile->ReadString(ASection, AItem, "");
- if (AValue != "")
- {
- AValue = g_sAppDir + "Image\\" + AValue;
- if (!FileExists(AValue)) AValue = "";
- }
- }
- catch(Exception &e)
- {
- }
- }
- //---------------------------------------------------------------------------
- #include <windows.h>
- #include <shlwapi.h>
- #pragma comment (lib, "shlwapi.lib")
- bool IsDirectoryExists(LPCTSTR path)
- {
- return PathFileExists(path);
- #if 0
- struct _stat buffer;
- int iRetTemp = 0;
- memset((void*)&buffer, 0, sizeof(buffer));
- iRetTemp = _stat(path, &buffer);
- if (iRetTemp == 0)
- {
- if (buffer.st_mode & _S_IFDIR)
- {
- return true;
- }
- }
- return false;
- #endif
- }
- //---------------------------------------------------------------------------
- bool LoadDefaultConfigInfo(String ACfgFile/*=""*/)
- {
- String sCfgFile;
- TIniFile *pIniFile = NULL;
- String sIniFile = ACfgFile + ".ini";
- sCfgFile = g_sCfgDir + sIniFile;
- g_AppCfg.sConfigFile = sCfgFile;
- pIniFile = new TIniFile(sCfgFile);
- try
- {
- g_AppCfg.sLang = "kr";
- g_sLang = g_AppCfg.sLang;
- g_AppCfg.sLogDay = pIniFile->ReadString("VMS", "LOGDAY", "");
- g_AppCfg.sSkinName = pIniFile->ReadString("VMS", "SKINNAME", "Silver");
- g_AppCfg.bSaveForm = pIniFile->ReadString("VMS", "SAVEFORM", "0").ToIntDef(1) == 1 ? true : false;
- g_AppCfg.isDispOfflineMsg = pIniFile->ReadString("VMS", "DISPOFFLINEMSG", "1").ToIntDef(1) == 1 ? true : false;
- g_AppCfg.itsdb.bSqlLog = pIniFile->ReadString("DB", "SQLLOG", "0").ToIntDef(0) == 1 ? true : false;
- g_AppCfg.itsdb.sConnectStr = pIniFile->ReadString("DB", "CONNECTSTR", "");
- if (g_AppCfg.itsdb.sConnectStr == "")
- {
- g_AppCfg.itsdb.sProvider = pIniFile->ReadString("DB", "PROVIDER", "OraOLEDB.Oracle.1");
- //g_AppCfg.itsdb.sProvider = pIniFile->ReadString("DB", "PROVIDER", "MSDAORA.1");
- g_AppCfg.itsdb.sServerName = pIniFile->ReadString("DB", "NAME", "ORCL");
- g_AppCfg.itsdb.sUserName = pIniFile->ReadString("DB", "USER", "ICAIR");
- g_AppCfg.itsdb.sPassword = pIniFile->ReadString("DB", "PASS", "ICAIR");
- }
- //VMS FTP
- g_AppCfg.vmsFtp.SERVER = pIniFile->ReadString("VMS_FTP", "SERVER", "");
- g_AppCfg.vmsFtp.PORT = pIniFile->ReadString("VMS_FTP", "PORT", "21").ToIntDef(21);
- g_AppCfg.vmsFtp.USER = pIniFile->ReadString("VMS_FTP", "USER", "");
- g_AppCfg.vmsFtp.PSWD = pIniFile->ReadString("VMS_FTP", "PSWD", "");
- g_AppCfg.vmsFtp.PASSIVE = pIniFile->ReadString("VMS_FTP", "PASSIVE", "0").ToIntDef(0) == 0 ? false : true;
- }
- __finally
- {
- if (pIniFile) delete pIniFile;
- pIniFile = NULL;
- //WriteConfigInfo(g_AppCfg.sConfigFile, "AUTOLOGOUT", "LOGOUTEXIT", "0");
- }
- return true;
- }
- //---------------------------------------------------------------------------
- /*
- * 환경설정 정보를 저장하는 함수.
- * arguments
- * String : RegisterKey 또는 파일이름
- * return
- * bool : 실패하면 false
- */
- bool WriteConfigInfo(String sCfgFile, String sTitle, String sItem, String sValue)
- {
- String ConfigFile;
- TIniFile *pIniFile = NULL;
- ConfigFile = sCfgFile;
- try
- {
- pIniFile = new TIniFile(ConfigFile);
- if (pIniFile == NULL)
- {
- return false;
- }
- pIniFile->WriteString(sTitle, sItem, sValue);
- }
- catch(...)
- {
- }
- if (pIniFile)
- {
- pIniFile->Free();
- pIniFile = NULL;
- }
- return true;
- }
- //---------------------------------------------------------------------------
- /*
- * 환경설정 정보를 읽어오는 함수.
- * arguments
- * String : RegisterKey 또는 파일이름
- * return
- * bool : 실패하면 false
- */
- bool ReadConfigInfo(String sCfgFile, String sTitle, String sItem, String &sValue)
- {
- bool bRes;
- String ConfigFile;
- TIniFile *pIniFile = NULL;
- bRes = false;
- ConfigFile = sCfgFile;
- try
- {
- pIniFile = new TIniFile(ConfigFile);
- if (pIniFile == NULL)
- {
- return bRes;
- }
- sValue = pIniFile->ReadString(sTitle, sItem, "");
- if (sValue != "")
- {
- bRes = true;
- }
- }
- catch(...)
- {
- }
- if (pIniFile)
- {
- pIniFile->Free();
- pIniFile = NULL;
- }
- return bRes;
- }
- //---------------------------------------------------------------------------
- void ShowErrorMsg(String ATitle, String AErrMsg)
- {
- Application->NormalizeTopMosts();
- Application->MessageBox(AErrMsg.c_str(), ATitle.c_str(), MB_OK|MB_ICONERROR|MB_APPLMODAL);
- Application->RestoreTopMosts();
- }
- //----------------------------------------------------------------------------
- String APP_FillCode(TcxComboBox *ACombo, String ACode)
- {
- String sReturn = "";
- if (SysCodeManager == NULL) {
- SysCodeManager = new TSysCodeManager();
- SysCodeManager->LoadFromDb();
- }
- TNotifyEvent evt = ACombo->Properties->OnChange;
- ACombo->Properties->OnChange = NULL;
- ACombo->Properties->Items->Clear();
- TSysClssCode *pSysClssCd = SysCodeManager->FLists.Find(ACode);
- if (pSysClssCd) {
- FOR_STL(TSysCode *, pSubCode, pSysClssCd->FLists)
- {
- if (pSubCode->USE_YN == "N") continue;
- ACombo->Properties->Items->Add(" [" + pSubCode->CODE_NO + "] " + pSubCode->CD_NM);
- if (sReturn == "") {
- sReturn = " [" + pSubCode->CODE_NO + "] " + pSubCode->CD_NM;
- }
- }
- }
- ACombo->ItemIndex = 0;
- ACombo->Properties->OnChange = evt;
- return sReturn;
- }
- //----------------------------------------------------------------------------
- String APP_GetCode(TcxComboBox *ACombo)
- {
- String sReturn = "";
- if (ACombo->ItemIndex >= 0)
- {
- String sDesc = ACombo->Properties->Items->Strings[ACombo->ItemIndex];
- String sCode = sDesc.SubString(sDesc.Pos("[") + 1,
- sDesc.Pos("]") - (sDesc.Pos("[") + 1));
- sReturn = sCode;
- }
- return sReturn;
- }
- //----------------------------------------------------------------------------
- String APP_GetCodeDesc(TcxComboBox *ACombo, String ACode)
- {
- String sReturn = "";
- for (int ii = 0; ii < ACombo->Properties->Items->Count; ii++)
- {
- String sDesc = ACombo->Properties->Items->Strings[ii];
- String sCode = sDesc.SubString(sDesc.Pos("[") + 1,
- sDesc.Pos("]") - (sDesc.Pos("[") + 1));
- if (ACode == sCode)
- {
- sReturn = sDesc;
- break;
- }
- }
- return sReturn;
- }
- //----------------------------------------------------------------------------
- String APP_GetCodeName(TcxComboBox *ACombo)
- {
- String sReturn = "";
- if (ACombo->ItemIndex >= 0)
- {
- String sDesc = ACombo->Properties->Items->Strings[ACombo->ItemIndex];
- String sName = sDesc.SubString(sDesc.Pos("]") + 1, sDesc.Length());
- sReturn = sName.Trim();
- }
- return sReturn;
- }
- //----------------------------------------------------------------------------
- String APP_GetCodeName(TcxComboBox *ACombo, String ACode)
- {
- String sReturn = "";
- for (int ii = 0; ii < ACombo->Properties->Items->Count; ii++)
- {
- String sDesc = ACombo->Properties->Items->Strings[ii];
- String sName = sDesc.SubString(sDesc.Pos("]") + 1, sDesc.Length());
- String sCode = sDesc.SubString(sDesc.Pos("[") + 1,
- sDesc.Pos("]") - (sDesc.Pos("[") + 1));
- if (ACode == sCode)
- {
- sReturn = sName.Trim();
- break;
- }
- }
- return sReturn;
- }
- //----------------------------------------------------------------------------
- String APP_GetCodeIdByName(TcxComboBox *ACombo, String AName)
- {
- String sReturn = "3";
- for (int ii = 0; ii < ACombo->Properties->Items->Count; ii++)
- {
- String sDesc = ACombo->Properties->Items->Strings[ii];
- String sName = sDesc.SubString(sDesc.Pos("]") + 1, sDesc.Length());
- String sCode = sDesc.SubString(sDesc.Pos("[") + 1,
- sDesc.Pos("]") - (sDesc.Pos("[") + 1));
- if (sName.Trim() == AName.Trim())
- {
- sReturn = sCode;
- break;
- }
- }
- return sReturn;
- }
- //----------------------------------------------------------------------------
- String APP_GetCodeDefCode(TcxComboBox *ACombo)
- {
- String sReturn = "";
- if (ACombo->Properties->Items->Count > 0)
- {
- String sDesc = ACombo->Properties->Items->Strings[0];
- String sCode = sDesc.SubString(sDesc.Pos("[") + 1,
- sDesc.Pos("]") - (sDesc.Pos("[") + 1));
- sReturn = sCode;
- }
- return sReturn;
- }
- //----------------------------------------------------------------------------
- String APP_GetCodeDefDesc(TcxComboBox *ACombo)
- {
- String sReturn = "";
- if (ACombo->Properties->Items->Count > 0)
- {
- String sDesc = ACombo->Properties->Items->Strings[0];
- sReturn = sDesc;
- }
- return sReturn;
- }
- //----------------------------------------------------------------------------
- int APP_SetCode(TcxComboBox *ACombo, String ACode)
- {
- int nItemIndex = -1;
- for (int ii = 0; ii < ACombo->Properties->Items->Count; ii++)
- {
- String sDesc = ACombo->Properties->Items->Strings[ii];
- String sCode = sDesc.SubString(sDesc.Pos("[") + 1,
- sDesc.Pos("]") - (sDesc.Pos("[") + 1));
- if (ACode == sCode)
- {
- nItemIndex = ii;
- break;
- }
- }
- ACombo->ItemIndex = nItemIndex;
- return nItemIndex;
- }
- //----------------------------------------------------------------------------
- ULONG ProcIDFromWnd(HWND hwnd) // 윈도우 핸들로 프로세스 아이디 얻기
- {
- ULONG idProc;
- GetWindowThreadProcessId( hwnd, &idProc );
- return idProc;
- }
- //----------------------------------------------------------------------------
- HWND GetWinHandle(ULONG pid) // 프로세스 아이디로 윈도우 핸들 얻기
- {
- HWND tempHwnd = FindWindow(NULL,NULL); // 최상위 윈도우 핸들 찾기
- while( tempHwnd != NULL )
- {
- if( GetParent(tempHwnd) == NULL ) // 최상위 핸들인지 체크, 버튼 등도 핸들을 가질 수 있으므로 무시하기 위해
- if( pid == ProcIDFromWnd(tempHwnd) )
- return tempHwnd;
- tempHwnd = GetWindow(tempHwnd, GW_HWNDNEXT); // 다음 윈도우 핸들 찾기
- }
- return NULL;
- }
- //----------------------------------------------------------------------------
- TColor g_DispColor[MAX_DISPCOLOR];
- void APP_InitDisplayColor()
- {
- #if 0
- g_DispColor[ 0] = Graphics::clBlue;
- g_DispColor[ 1] = Graphics::clRed;
- g_DispColor[ 2] = Graphics::clLime;
- g_DispColor[ 3] = Graphics::clMaroon;
- g_DispColor[ 4] = Graphics::clGreen;
- g_DispColor[ 5] = Graphics::clMenuHighlight;
- g_DispColor[ 6] = Graphics::clBackground;
- g_DispColor[ 7] = Graphics::clPurple;
- g_DispColor[ 8] = Graphics::clTeal;
- g_DispColor[ 9] = Graphics::clYellow;
- g_DispColor[10] = Graphics::clFuchsia;
- g_DispColor[11] = Graphics::clAqua;
- g_DispColor[12] = Graphics::clMoneyGreen;
- g_DispColor[13] = Graphics::clSkyBlue;
- g_DispColor[14] = Graphics::clRed;
- g_DispColor[15] = Graphics::clLime;
- g_DispColor[16] = Graphics::clYellow;
- g_DispColor[17] = Graphics::clBlue;
- g_DispColor[18] = Graphics::clFuchsia;
- g_DispColor[19] = Graphics::clAqua;
- g_DispColor[20] = Graphics::clMoneyGreen;
- g_DispColor[21] = Graphics::clActiveCaption;
- #else
- g_DispColor[ 0] = Graphics::clLime;
- g_DispColor[ 1] = (TColor)RGB(0xFF, 0x00, 0x00);
- g_DispColor[ 2] = (TColor)RGB(0x00, 0x00, 0xFF);
- g_DispColor[ 3] = (TColor)RGB(0xFF, 0x82, 0x00);
- g_DispColor[ 4] = (TColor)RGB(0x94, 0x00, 0xD3);
- g_DispColor[ 5] = Graphics::clPurple;//(TColor)RGB(0x00, 0x00, 0x00);
- g_DispColor[ 6] = (TColor)RGB(0x82, 0x82, 0x82);
- g_DispColor[ 7] = (TColor)RGB(0x1E, 0x90, 0xFF);
- g_DispColor[ 8] = (TColor)RGB(0xB9, 0x06, 0x2F);
- g_DispColor[ 9] = (TColor)RGB(0x8c, 0x00, 0x8c);
- g_DispColor[10] = (TColor)RGB(0xFF, 0x82, 0x00);
- g_DispColor[11] = (TColor)RGB(0x94, 0x00, 0xD3);
- g_DispColor[12] = (TColor)RGB(0xB0, 0xC4, 0xDE);
- g_DispColor[13] = (TColor)RGB(0x00, 0xBF, 0xFF);
- g_DispColor[14] = (TColor)RGB(0x87, 0xCE, 0xEB);
- g_DispColor[15] = (TColor)RGB(0x87, 0xCE, 0xFA);
- g_DispColor[16] = (TColor)RGB(0xAD, 0xD8, 0xE6);
- g_DispColor[17] = (TColor)RGB(0xB0, 0xE0, 0xE6);
- g_DispColor[18] = (TColor)RGB(0xE6, 0xE6, 0xFA);
- g_DispColor[19] = (TColor)RGB(0xF0, 0xF8, 0xFF);
- #endif
- }
- //---------------------------------------------------------------------------
- TColor APP_GetDisplayColor(int ASeq)
- {
- return g_DispColor[ASeq % MAX_DISPCOLOR];
- }
- //---------------------------------------------------------------------------
- void APP_DelVmsSizeCombo(TcxComboBox *cboBox)
- {
- TStrings *pStrItems;
- TVmsSizeType *Ov;
- pStrItems = ((TcxComboBox *)cboBox)->Properties->Items;
- for (int ii = pStrItems->Count-1; ii >= 0; ii--)
- {
- Ov = (TVmsSizeType *)pStrItems->Objects[ii];
- if (Ov != NULL)
- {
- delete Ov;
- Ov = NULL;
- }
- }
- }
- //---------------------------------------------------------------------------
- void APP_FillVmsSizeType(TcxComboBox *cboBox, bool bAddAll/*=false*/)
- {
- String sQry;
- TStrings *pStrItems;
- TADOQuery *pADO = NULL;
- if (!VmsTypeManager)
- {
- VmsTypeManager = new TVmsTypeManager();
- VmsTypeManager->LoadFromDb();
- }
- TNotifyEvent evt = cboBox->Properties->OnChange;
- cboBox->Properties->OnChange = NULL;
- APP_DelVmsSizeCombo(cboBox);
- pStrItems = ((TcxComboBox *)cboBox)->Properties->Items;
- ((TcxComboBox *)cboBox)->Properties->Items->Clear();
- FOR_STL(TVmsType*, pObj, VmsTypeManager->FLists)
- {
- String sTypeCd = pObj->VMS_MODL_KIND;
- String sTypeNm = pObj->VMS_MODL_KIND_NM;
- int nW = pObj->VMS_WDTH;
- int nH = pObj->VMS_HGHT;
- int nR = pObj->VMS_MODL_ROW;
- int nC = pObj->VMS_MODL_COL;
- pStrItems->AddObject(" [" + sTypeCd + "] " + sTypeNm + " (" + String(nH) + "*" + String(nW) + ")", new TVmsSizeType(sTypeCd, sTypeNm, nW, nH, nR, nC) );
- }
- if (bAddAll)
- {
- String sAllName = "전체";
- pStrItems->AddObject(" [ALL] 전체" , new TVmsSizeType("ALL", sAllName, 384, 64, 2, 12));
- }
- cboBox->ItemIndex = 0;
- cboBox->Properties->OnChange = evt;
- }
- //---------------------------------------------------------------------------
- TVmsSizeType* APP_GetVmsSizeTypeObject(TcxComboBox *cboBox)
- {
- TStrings *pStrItems;
- TVmsSizeType *Ov = NULL;
- int nItemIndex;
- pStrItems = ((TcxComboBox *)cboBox)->Properties->Items;
- nItemIndex= ((TcxComboBox *)cboBox)->ItemIndex;
- if (nItemIndex < 0)
- {
- return Ov;
- }
- Ov = (TVmsSizeType *)pStrItems->Objects[nItemIndex];
- if (Ov == NULL)
- {
- Ov = NULL;
- }
- return Ov;
- }
- //---------------------------------------------------------------------------
- void APP_ImageClear(TCanvas *c, int offX, int offY, int w, int h, TColor color)
- {
- try
- {
- c->Pen->Color = clWhite;
- c->Pen->Width = 0;
- c->Pen->Style = psClear;
- c->Brush->Style = bsSolid;
- c->Brush->Color = color;
- c->Rectangle(offX, offY, w+offX+2, h+offY+2);
- }
- catch(...)
- {
- }
- }
- //---------------------------------------------------------------------------
- #include <DateUtils.hpp>
- TDateTime APP_StrToDateTime(String AStrDateTime)
- {
- TDateTime dtReturnValue = NULL;
- if (AStrDateTime.IsEmpty()) return dtReturnValue;
- if (AStrDateTime.Length() != 14) return dtReturnValue;
- AnsiString sDateTime = AnsiString(AStrDateTime);
- try
- {
- #if 0
- sDateTime.printf(L"%s-%s-%s %s:%s:%s",
- AStrDateTime.SubString( 1, 4).c_str(),
- AStrDateTime.SubString( 5, 2).c_str(),
- AStrDateTime.SubString( 7, 2).c_str(),
- AStrDateTime.SubString( 9, 2).c_str(),
- AStrDateTime.SubString(11, 2).c_str(),
- AStrDateTime.SubString(13, 2).c_str());
- dtReturnValue = StrToDateTime(sDateTime);
- #endif
- // swscanf(sRgb.c_str(), L"%d,%d,%d", &r, &g, &b);
- int year, month, day, hour, minute, second;
- sscanf(sDateTime.c_str(), "%4d%2d%2d%2d%2d%2d", &year, &month, &day, &hour, &minute, &second);
- dtReturnValue = EncodeDateTime(year, month, day, hour, minute, second, 0);
- }
- catch(...)
- {
- }
- return dtReturnValue;
- }
- //---------------------------------------------------------------------------
- #include <jpeg.hpp>
- bool APP_CheckBmpFile(String AInFileName, String &AOutFileName)
- {
- String sFilePath = ExtractFilePath(AInFileName);
- String sFileName = ExtractFileName(AInFileName);
- String sFileExt = ExtractFileExt(AInFileName);
- AOutFileName = AInFileName;
- if (sFileExt.UpperCase() == ".BMP")
- {
- return true;
- }
- AOutFileName = AInFileName + ".bmp";
- TImage *Image1 = new TImage(NULL);
- TMemoryStream *pImgStream = new TMemoryStream();
- try
- {
- try
- {
- pImgStream->LoadFromFile(AInFileName);
- sFileExt = sFileExt.UpperCase();
- if (sFileExt == ".PNG")
- {
- TdxPNGImage *img = new TdxPNGImage;
- img->LoadFromStream(pImgStream);
- Image1->Picture->Bitmap->Assign(img);
- Image1->Picture->Bitmap->PixelFormat = pf24bit;
- Image1->Picture->Bitmap->SaveToFile(AOutFileName);
- SAFE_DELETE(img);
- return true;
- }
- else
- if (sFileExt == ".JPG" || sFileExt == ".JPEG")
- {
- TJPEGImage *img = new TJPEGImage();
- img->LoadFromStream(pImgStream);
- Image1->Picture->Bitmap->Assign(img);
- Image1->Picture->Bitmap->PixelFormat = pf24bit;
- Image1->Picture->Bitmap->SaveToFile(AOutFileName);
- SAFE_DELETE(img);
- return true;
- }
- }
- catch(Exception &e)
- {
- }
- }
- __finally
- {
- SAFE_DELETE(pImgStream);
- SAFE_DELETE(Image1);
- }
- return false;
- }
- //---------------------------------------------------------------------------
- void APP_DbLoading() {
- try
- {
- Application->ProcessMessages();
- if (!SysCodeManager)
- {
- SysCodeManager = new TSysCodeManager();
- SysCodeManager->LoadFromDb();
- }
- if (!CDSFontManager)
- {
- CDSFontManager = new TCDSFontManager();
- CDSFontManager->LoadFontInfo();
- }
- if (!CDSAtmpManager)
- {
- CDSAtmpManager = new TCDSAtmpManager();
- #ifdef USE_ATMP
- // CDSAtmpManager->LoadFromDb();
- #endif
- }
- if (!CDSParkManager)
- {
- CDSParkManager = new TCDSParkManager();
- #ifdef USE_PARK
- // CDSParkManager->LoadFromDb();
- #endif
- }
- if (!CDSVmsFormManager)
- {
- CDSVmsFormManager = new TCDSVmsFormManager();
- CDSVmsFormManager->LoadFromDb();
- }
- if (!VmsTypeManager)
- {
- VmsTypeManager = new TVmsTypeManager();
- VmsTypeManager->LoadFromDb();
- }
- Application->ProcessMessages();
- if (!VmsCtlrManager)
- {
- VmsCtlrManager = new TVmsCtlrManager();
- VmsCtlrManager->LoadVmsModlSize();
- VmsCtlrManager->LoadFromDb();
- #if 0
- VmsCtlrManager->LoadVmsFormUsage();
- //VmsCtlrManager->LoadStatusFromDb();
- VmsCtlrManager->LoadIfscRltn();
- //VmsCtlrManager->LoadEvspRltn();
- //VmsCtlrManager->LoadVmsMsg();
- #endif
- }
- //정보제공구간-정보제공구간정보만 사용(소통정보사용안함)
- Application->ProcessMessages();
- if (!IfscManager)
- {
- IfscManager = new TIfscManager();
- #if 0
- IfscManager->LoadFromDb();
- if (g_AppCfg.isLoadFromFile)
- {
- IfscManager->LoadVertexFromFile();
- }
- else
- {
- IfscManager->LoadVertexFromDb();
- }
- #endif
- }
- }
- catch(...)
- {
- }
- }
- //---------------------------------------------------------------------------
- String DbPictTypeToReal(String APictType)
- {
- if (APictType == "B") return "bmp";
- if (APictType == "G") return "gif";
- if (APictType == "A") return "gif";
- if (APictType == "J") return "jpg";
- if (APictType == "P") return "png";
- if (APictType == "I") return "ico";
- return "bmp";
- }
- //---------------------------------------------------------------------------
- String RealPictTypeToDb(String APictType)
- {
- if (APictType == "B") return "bmp";
- //if (APictType == "gif") return "G";
- if (APictType == "gif") return "A";
- if (APictType == "jpg") return "J";
- if (APictType == "jpeg")return "J";
- if (APictType == "png") return "P";
- if (APictType == "ico") return "I";
- return "B";
- }
- //---------------------------------------------------------------------------
- String DbMovieTypeToReal(String APictType)
- {
- if (APictType == "AV") return "avi";
- if (APictType == "MP") return "mpeg";
- if (APictType == "MK") return "mkv";
- if (APictType == "M4") return "mp4";
- return "avi";
- }
- //---------------------------------------------------------------------------
- String RealMovieTypeToDb(String APictType)
- {
- if (APictType == "avi") return "AV";
- if (APictType == "mpge") return "MP";
- if (APictType == "mkv") return "MK";
- if (APictType == "mp4") return "M4";
- return "AV";
- }
- //---------------------------------------------------------------------------
|