INIFileHandle.cpp
上传用户:gelin96
上传日期:2017-01-08
资源大小:20993k
文件大小:49k
- /*****************************************************************************
- * Copyright Statement:
- * --------------------
- * This software is protected by Copyright and the information contained
- * herein is confidential. The software may not be copied and the information
- * contained herein may not be used or disclosed except with the written
- * permission of MediaTek Inc. (C) 2005
- *
- * BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
- * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
- * RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
- * AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
- * NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
- * SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
- * SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
- * THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
- * NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
- * SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
- *
- * BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
- * LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
- * AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
- * OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
- * MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
- *
- * THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
- * WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
- * LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
- * RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
- * THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
- *
- *****************************************************************************/
- /*****************************************************************************
- *
- * Filename:
- * ---------
- * INIFileHandle.cpp
- *
- * Project:
- * --------
- * Maui META APP
- *
- * Description:
- * ------------
- * INI file handle source
- *
- * Author:
- * -------
- * Andy Ueng (mtk00490)
- *
- *============================================================================
- * HISTORY
- * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
- *------------------------------------------------------------------------------
- * $Revision$
- * $Modtime$
- * $Log$
- *
- *------------------------------------------------------------------------------
- * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
- *============================================================================
- ****************************************************************************/
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #include <IniFiles.hpp>
- #pragma hdrstop
- #include "INIFileHandle.h"
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- ////////////////////////////// file handling function ////////////////////////////////////
- ////////////////////////////// MMI data download table ////////////////////////////////////
- AnsiString read_download_type(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString as_temp_download_type;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL) // added by Andy Ueng
- {
- as_temp_download_type = ini->ReadString("MMI data download table","download_type", "fullscreen");
- delete ini;
- return as_temp_download_type;
- }
- // end of added
- return("fullscreen");
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : read setup file : " + asSetupFile + " error ");
- }
- return("fullscreen");
- }
- ///////////////////////// Full screen /////////////////////////////////////////////////////////////
- AnsiString read_DEFAULT_FULLSCREEN_PATH(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString as_temp_DEFAULT_FULLSCREEN_PATH;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- as_temp_DEFAULT_FULLSCREEN_PATH = ini->ReadString("Default fullscreen file table","DEFAULT_FULLSCREEN_PATH", "c:\def_image\fullscreen\");
- delete ini;
- return as_temp_DEFAULT_FULLSCREEN_PATH;
- }
- return("c:\def_image\fullscreen\");
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : read setup file : " + asSetupFile + " error ");
- }
- return("c:\def_image\fullscreen\");
- }
- ////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_MAX_FULLSCREEN_FILE_COUNT(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString as_temp_MAX_FULLSCREEN_FILE_COUNT;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- as_temp_MAX_FULLSCREEN_FILE_COUNT = ini->ReadString("Default fullscreen file table","MAX_FULLSCREEN_FILE_COUNT", "5");
- delete ini;
- return as_temp_MAX_FULLSCREEN_FILE_COUNT;
- }
- return("5");
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : read setup file : " + asSetupFile + " error ");
- }
- return("5");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_local_default_fullscreen_file_name(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_fullscreen_file_index
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString default_fullscreen_file_name;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- default_fullscreen_file_name = ini->ReadString("Default fullscreen file table","default_fullscreen_file" + default_fullscreen_file_index, "" );
- delete ini;
- return (default_fullscreen_file_name); // write successful
- }
- else
- {
- return (""); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return ("");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool write_local_default_fullscreen_file_name(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_fullscreen_file_index,
- AnsiString default_fullscreen_file_name
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->WriteString("Default fullscreen file table","default_fullscreen_file" + default_fullscreen_file_index, default_fullscreen_file_name );
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return true;
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_local_default_fullscreen_file_count(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString temp_default_fullscreen_file_count;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- temp_default_fullscreen_file_count = ini->ReadString("Default fullscreen file table","default_fullscreen_file_count", "0" );
- delete ini;
- return (temp_default_fullscreen_file_count); // write successful
- }
- else
- {
- return ("0"); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return ("0");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool write_local_default_fullscreen_file_count(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_fullscreen_file_count
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->WriteString("Default fullscreen file table","default_fullscreen_file_count", default_fullscreen_file_count );
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return (true);
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool erase_local_default_fullscreen_file_section(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->EraseSection("Default fullscreen file table");
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return (true);
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool delete_local_default_fullscreen_file_key(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_fullscreen_file_index
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->DeleteKey("Default fullscreen file table", "default_fullscreen_file"+default_fullscreen_file_index);
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return (true);
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- ///////////////////////// ASSOCIATE /////////////////////////////////////////////////////////////
- AnsiString read_DEFAULT_ASSOCIATE_PATH(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString as_temp_DEFAULT_ASSOCIATE_PATH;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- as_temp_DEFAULT_ASSOCIATE_PATH = ini->ReadString("Default assoicate file table","DEFAULT_ASSOCIATE_PATH", "c:\def_image\assoicate\");
- delete ini;
- return as_temp_DEFAULT_ASSOCIATE_PATH;
- }
- return("c:\def_image\assoicate\");
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : read setup file : " + asSetupFile + " error ");
- }
- return("c:\def_image\assoicate\");
- }
- ////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_MAX_ASSOCIATE_FILE_COUNT(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString as_temp_MAX_ASSOCIATE_FILE_COUNT;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- as_temp_MAX_ASSOCIATE_FILE_COUNT = ini->ReadString("Default assoicate file table","MAX_ASSOCIATE_FILE_COUNT", "10");
- delete ini;
- return as_temp_MAX_ASSOCIATE_FILE_COUNT;
- }
-
- return("10");
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : read setup file : " + asSetupFile + " error ");
- }
- return("10");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_local_default_associate_file_name(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_assoicate_file_index
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString default_assoicate_file_name;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- default_assoicate_file_name = ini->ReadString("Default assoicate file table","default_assoicate_file" + default_assoicate_file_index, "" );
- delete ini;
- return (default_assoicate_file_name); // write successful
- }
- else
- {
- return (""); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return ("");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool write_local_default_associate_file_name(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_assoicate_file_index,
- AnsiString default_assoicate_file_name
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->WriteString("Default assoicate file table","default_assoicate_file" + default_assoicate_file_index, default_assoicate_file_name );
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return (true);
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_local_default_associate_file_count(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString temp_default_assoicate_file_count;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- temp_default_assoicate_file_count = ini->ReadString("Default assoicate file table","default_assoicate_file_count", "0" );
- delete ini;
- return (temp_default_assoicate_file_count); // write successful
- }
- else
- {
- return ("0"); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return ("0");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool write_local_default_associate_file_count(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_assoicate_file_count
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->WriteString("Default assoicate file table","default_assoicate_file_count", default_assoicate_file_count );
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return (true);
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool erase_local_default_assoicate_file_section(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->EraseSection("Default assoicate file table");
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return (true);
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool delete_local_default_associate_file_key(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_assoicate_file_index
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->DeleteKey("Default assoicate file table", "default_assoicate_file"+default_assoicate_file_index);
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return (true);
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- ///////////////////////// EMS /////////////////////////////////////////////////////////////
- AnsiString read_DEFAULT_EMS_PATH(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString as_temp_DEFAULT_EMS_PATH;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- as_temp_DEFAULT_EMS_PATH = ini->ReadString("Default EMS file table","DEFAULT_EMS_PATH", "c:\def_image\ems\");
- delete ini;
- return as_temp_DEFAULT_EMS_PATH;
- }
- return("c:\def_image\ems\");
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : read setup file : " + asSetupFile + " error ");
- }
- return("c:\def_image\ems\");
- }
- ////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_MAX_EMS_FILE_COUNT(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString as_temp_MAX_EMS_FILE_COUNT;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- as_temp_MAX_EMS_FILE_COUNT = ini->ReadString("Default EMS file table","MAX_EMS_FILE_COUNT", "10");
- delete ini;
- return as_temp_MAX_EMS_FILE_COUNT;
- }
- return("10");
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : read setup file : " + asSetupFile + " error ");
- }
- return("10");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_local_default_EMS_file_name(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_EMS_file_index
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString default_EMS_file_name;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- default_EMS_file_name = ini->ReadString("Default EMS file table","default_EMS_file" + default_EMS_file_index, "" );
- delete ini;
- return (default_EMS_file_name); // write successful
- }
- else
- {
- return (""); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return ("");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool write_local_default_EMS_file_name(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_EMS_file_index,
- AnsiString default_EMS_file_name
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->WriteString("Default EMS file table","default_EMS_file" + default_EMS_file_index, default_EMS_file_name );
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return true;
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_local_default_EMS_file_count(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString temp_default_EMS_file_count;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- temp_default_EMS_file_count = ini->ReadString("Default EMS file table","default_EMS_file_count", "0" );
- delete ini;
- return (temp_default_EMS_file_count); // write successful
- }
- else
- {
- return ("0"); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return ("0");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool write_local_default_EMS_file_count(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_EMS_file_count
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->WriteString("Default EMS file table","default_EMS_file_count", default_EMS_file_count );
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return (true);
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool erase_local_default_EMS_file_section(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->EraseSection("Default EMS file table");
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return (true);
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool delete_local_default_EMS_file_key(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_EMS_file_index
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->DeleteKey("Default EMS file table", "default_EMS_file"+default_EMS_file_index);
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return (true);
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- ///////////////////////// midi /////////////////////////////////////////////////////////////
- AnsiString read_DEFAULT_MIDI_PATH(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString as_temp_DEFAULT_MIDI_PATH;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- as_temp_DEFAULT_MIDI_PATH = ini->ReadString("Default midi file table","DEFAULT_MIDI_PATH", "c:\def_sound\other\");
- delete ini;
- return as_temp_DEFAULT_MIDI_PATH;
- }
- return("c:\def_sound\other\");
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : read setup file : " + asSetupFile + " error ");
- }
- return("c:\def_sound\other\");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_MAX_MIDI_FILE_COUNT(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString as_temp_MAX_MIDI_FILE_COUNT;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- as_temp_MAX_MIDI_FILE_COUNT = ini->ReadString("Default midi file table","MAX_MIDI_FILE_COUNT", "5");
- delete ini;
- return as_temp_MAX_MIDI_FILE_COUNT;
- }
- return("5");
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : read setup file : " + asSetupFile + " error ");
- }
- return("5");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_local_default_midi_file_name(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_midi_file_index
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString default_midi_file_name;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- default_midi_file_name = ini->ReadString("Default midi file table","default_midi_file" + default_midi_file_index, "" );
- delete ini;
- return (default_midi_file_name); // write successful
- }
- else
- {
- return (""); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return ("");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool write_local_default_midi_file_name(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_midi_file_index,
- AnsiString default_midi_file_name
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->WriteString("Default midi file table","default_midi_file" + default_midi_file_index, default_midi_file_name );
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return true;
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_local_default_midi_file_count(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString temp_default_midi_file_count;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- temp_default_midi_file_count = ini->ReadString("Default midi file table","default_midi_file_count", "0" );
- delete ini;
- return (temp_default_midi_file_count); // write successful
- }
- else
- {
- return ("0"); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return ("0");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool write_local_default_midi_file_count(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_midi_file_count
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->WriteString("Default midi file table","default_midi_file_count", default_midi_file_count );
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return true;
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool erase_local_default_midi_file_section(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->EraseSection("Default midi file table");
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return true;
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool delete_local_default_midi_file_key(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_midi_file_index
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->DeleteKey("Default midi file table", "default_midi_file"+default_midi_file_index);
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return true;
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- ///////////////////////// iMelody /////////////////////////////////////////////////////////////
- AnsiString read_DEFAULT_IMELODY_PATH(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString as_temp_DEFAULT_IMELODY_PATH;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- as_temp_DEFAULT_IMELODY_PATH = ini->ReadString("Default midi file table","DEFAULT_IMELODY_PATH", "c:\def_sound\imelody\");
- delete ini;
- return as_temp_DEFAULT_IMELODY_PATH;
- }
- return("c:\def_sound\imelody\");
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : read setup file : " + asSetupFile + " error ");
- }
- return("c:\def_sound\imelody\");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_MAX_IMELODY_FILE_COUNT(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString as_temp_MAX_IMELODY_FILE_COUNT;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- as_temp_MAX_IMELODY_FILE_COUNT = ini->ReadString("Default imelody file table","MAX_IMELODY_FILE_COUNT", "5");
- delete ini;
- return as_temp_MAX_IMELODY_FILE_COUNT;
- }
- return("5");
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : read setup file : " + asSetupFile + " error ");
- }
- return("5");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_local_default_imelody_file_name(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_imelody_file_index
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString default_imelody_file_name;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- default_imelody_file_name = ini->ReadString("Default imelody file table","default_imelody_file" + default_imelody_file_index, "" );
- delete ini;
- return (default_imelody_file_name); // write successful
- }
- else
- {
- return (""); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return ("");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool write_local_default_imelody_file_name(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_imelody_file_index,
- AnsiString default_imelody_file_name
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->WriteString("Default imelody file table","default_imelody_file" + default_imelody_file_index, default_imelody_file_name );
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return true;
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- AnsiString read_local_default_imelody_file_count(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- AnsiString temp_default_imelody_file_count;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- temp_default_imelody_file_count = ini->ReadString("Default imelody file table","default_imelody_file_count", "0" );
- delete ini;
- return (temp_default_imelody_file_count); // write successful
- }
- else
- {
- return ("0"); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return ("0");
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool write_local_default_imelody_file_count(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_imelody_file_count
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->WriteString("Default imelody file table","default_imelody_file_count", default_imelody_file_count );
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return true;
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool erase_local_default_imelody_file_section(
- AnsiString asSetupFile,
- AnsiString asExeName
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->EraseSection("Default imelody file table");
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return true;
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool delete_local_default_imelody_file_key(
- AnsiString asSetupFile,
- AnsiString asExeName,
- AnsiString default_imelody_file_index
- )
- {
- AnsiString asPath;
- if ( getPathFromStr(asExeName, asPath) &&
- withPath( asPath) &&
- !withPath( asSetupFile)
- )
- {
- asSetupFile = asPath + asSetupFile;
- }
- TIniFile *ini;
- try
- {
- ini = new TIniFile( asSetupFile );
- if(ini != NULL)
- {
- ini->DeleteKey("Default imelody file table", "default_imelody_file"+default_imelody_file_index);
- delete ini;
- return (true); // write successful
- }
- else
- {
- return (false); // write fail
- }
- }
- catch (...)
- {
- ShowMessage( " META MMI data download : write setup file : " + asSetupFile + " error ");
- }
- return true;
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////