Ignore:
Timestamp:
Aug 13, 2008, 11:01:29 PM (16 years ago)
Author:
dai
Message:
  • ab_breakpoint.tmpをテンポラリディレクトリに生成するようにした。
  • pgm.tmpをユーザ空間に生成するようにした。
  • GetUserAppDir/GetIdeUserAppDir/GetAbcUserAppDirの各メソッドを用意。用途別に呼び出し側の制御を分けた。
Location:
trunk/ab5.0/abdev/BasicCompiler_Common
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/BasicCompiler.cpp

    r625 r719  
    240240
    241241            hFile=CreateFile(
    242                 ( ActiveBasic::Common::Environment::GetAbdevRootPath() + "\\pgm.tmp" ).c_str(),
     242                ( ActiveBasic::Common::Environment::GetUserAppDir() + "\\pgm.tmp" ).c_str(),
    243243                GENERIC_WRITE,0,NULL,CREATE_ALWAYS,FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_TEMPORARY,NULL);
    244244            WriteFile(hFile,FileName,lstrlen(FileName),&dw,NULL);
     
    696696        DWORD dwAccessBytes;
    697697        hFile=CreateFile(
    698             ( ActiveBasic::Common::Environment::GetAbdevRootPath() + "\\pgm.tmp" ).c_str(),
     698            ( ActiveBasic::Common::Environment::GetUserAppDir() + "\\pgm.tmp" ).c_str(),
    699699            GENERIC_READ,FILE_SHARE_READ|FILE_SHARE_WRITE,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);
    700700        if(hFile!=INVALID_HANDLE_VALUE){
  • trunk/ab5.0/abdev/BasicCompiler_Common/NonVolatile.cpp

    r717 r719  
    105105
    106106    //開く
    107     buffer=ReadBuffer_NonErrMsg( Program::GetUserAppDir() + "\\compiler.ini" );
     107    buffer=ReadBuffer_NonErrMsg( Program::GetAbcUserAppDir() + "\\compiler.ini" );
    108108    if(!buffer){
    109109        //レジストリを読み込む
     
    248248
    249249    // ユーザ情報保存用のディレクトリを作成
    250     Jenga::Common::Directory dir( Program::GetUserAppDir(), true );
     250    Jenga::Common::Directory dir( Program::GetAbcUserAppDir(), true );
    251251
    252252
     
    276276    //保存
    277277    WriteBuffer(
    278         Program::GetUserAppDir() + "\\compiler.ini",
     278        Program::GetAbcUserAppDir() + "\\compiler.ini",
    279279        buffer,lstrlen(buffer));
    280280
  • trunk/ab5.0/abdev/BasicCompiler_Common/include/Program.h

    r717 r719  
    3232
    3333    // ユーザデータ格納用のディレクトリを取得
    34     static const std::string GetUserAppDir();
     34    static const std::string GetAbcUserAppDir();
    3535
    3636    const std::string &GetSourceFilePath() const
  • trunk/ab5.0/abdev/BasicCompiler_Common/src/BreakPoint.cpp

    r648 r719  
    119119    buffer=(char *)HeapAlloc(hHeap,0,65535);
    120120
    121     std::string filepath = ActiveBasic::Common::Environment::GetAbdevRootPath() + "\\ab_breakpoint.tmp";
     121    char temporary[MAX_PATH];
     122    GetTempPath(MAX_PATH,temporary);
     123    if(temporary[lstrlen(temporary)-1]!='\\') lstrcat(temporary,"\\");
     124    lstrcat(temporary,"ab_breakpoint.tmp");
     125
    122126    HANDLE hFile=CreateFile(
    123         filepath.c_str(),
     127        temporary,
    124128        GENERIC_READ,FILE_SHARE_READ|FILE_SHARE_WRITE,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);
    125129    if(hFile!=INVALID_HANDLE_VALUE)
  • trunk/ab5.0/abdev/BasicCompiler_Common/src/Messenger.cpp

    r702 r719  
    481481
    482482            hFile=CreateFile(
    483                 ( ActiveBasic::Common::Environment::GetAbdevRootPath() + "\\pgm.tmp" ).c_str(),
     483                ( ActiveBasic::Common::Environment::GetUserAppDir() + "\\pgm.tmp" ).c_str(),
    484484                GENERIC_WRITE,0,NULL,CREATE_ALWAYS,FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_TEMPORARY,NULL);
    485485            WriteFile(hFile,FileName,lstrlen(FileName),&dw,NULL);
  • trunk/ab5.0/abdev/BasicCompiler_Common/src/Program.cpp

    r717 r719  
    11#include "stdafx.h"
    22
    3 Jenga::Common::Logger Program::logger( Jenga::Common::Environment::GetAppDir() + "\\logger.log", true );
     3Jenga::Common::Logger Program::logger( Program::GetAbcUserAppDir() + "\\logger.log", true );
    44
    55Program program;
     
    139139}
    140140
    141 const std::string Program::GetUserAppDir()
     141const std::string Program::GetAbcUserAppDir()
    142142{
    143     return Jenga::Common::Environment::GetUserAppDir() + "\\ActiveBasic\\abc";
     143    return ActiveBasic::Common::Environment::GetUserAppDir() + "\\abc";
    144144}
    145145
Note: See TracChangeset for help on using the changeset viewer.