forked from sakura-editor/sakura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCAutoReloadAgent.cpp
193 lines (168 loc) · 6.78 KB
/
CAutoReloadAgent.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/*! @file */
/*
Copyright (C) 2008, kobake
Copyright (C) 2018-2022, Sakura Editor Organization
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented;
you must not claim that you wrote the original software.
If you use this software in a product, an acknowledgment
in the product documentation would be appreciated but is
not required.
2. Altered source versions must be plainly marked as such,
and must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
#include "StdAfx.h"
#include "CAutoReloadAgent.h"
// #include "doc/CEditDoc.h" // in under CEditWnd.h
#include "window/CEditWnd.h"
#include "dlg/CDlgFileUpdateQuery.h"
#include "CSelectLang.h"
#include "sakura_rc.h"
#include "String_define.h"
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
// コンストラクタ・デストラクタ //
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
CAutoReloadAgent::CAutoReloadAgent()
: m_eWatchUpdate( WU_QUERY )
, m_nPauseCount(0)
{
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
// セーブ前後 //
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
void CAutoReloadAgent::OnBeforeSave(const SSaveInfo& sSaveInfo)
{
// Sep. 7, 2003 genta
// 保存が完了するまではファイル更新の通知を抑制する
PauseWatching();
}
void CAutoReloadAgent::OnAfterSave(const SSaveInfo& sSaveInfo)
{
// Sep. 7, 2003 genta
// ファイル更新の通知を元に戻す
ResumeWatching();
// 名前を付けて保存から再ロードが除去された分の不足処理を追加(ANSI版との差異) // 2009.08.12 ryoji
if(!sSaveInfo.bOverwriteMode){
m_eWatchUpdate = WU_QUERY; // 「名前を付けて保存」で対象ファイルが変更されたので更新監視方法をデフォルトに戻す
}
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
// ロード前後 //
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
void CAutoReloadAgent::OnAfterLoad(const SLoadInfo& sLoadInfo)
{
//pcDoc->m_cDocFile.m_sFileInfo.cFileTime.SetFILETIME(ftime); //#####既に設定済みのはず
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
// 各種判定 //
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
bool CAutoReloadAgent::_ToDoChecking() const
{
const CommonSetting_File& setting = GetDllShareData().m_Common.m_sFile;
if(IsPausing())return false;
if(!setting.m_bCheckFileTimeStamp)return false; //更新の監視設定
if(m_eWatchUpdate==WU_NONE)return false;
if(setting.m_nFileShareMode!=SHAREMODE_NOT_EXCLUSIVE)return false; // ファイルの排他制御モード
HWND hwndActive = ::GetActiveWindow();
if(hwndActive==NULL)return false; /* アクティブ? */
if(hwndActive!=CEditWnd::getInstance()->GetHwnd())return false;
if(!GetListeningDoc()->m_cDocFile.GetFilePathClass().IsValidPath())return false;
if(GetListeningDoc()->m_cDocFile.IsFileTimeZero()) return false; /* 現在編集中のファイルのタイムスタンプ */
if(GetEditWnd().m_pPrintPreview ) return false; // 印刷プレビュー中 2013/5/8 Uchi
return true;
}
bool CAutoReloadAgent::_IsFileUpdatedByOther(FILETIME* pNewFileTime) const
{
/* ファイルスタンプをチェックする */
// 2005.10.20 ryoji FindFirstFileを使うように変更(ファイルがロックされていてもタイムスタンプ取得可能)
CFileTime ftime;
if( GetLastWriteTimestamp( GetListeningDoc()->m_cDocFile.GetFilePath(), &ftime )){
if( 0 != ::CompareFileTime( &GetListeningDoc()->m_cDocFile.GetFileTime().GetFILETIME(), &ftime.GetFILETIME() ) ) // Aug. 13, 2003 wmlhq タイムスタンプが古く変更されている場合も検出対象とする
{
*pNewFileTime = ftime.GetFILETIME();
return true;
}
}
return false;
}
/* ファイルのタイムスタンプのチェック処理 */
void CAutoReloadAgent::CheckFileTimeStamp()
{
// 未編集で再ロード時の遅延
if (m_eWatchUpdate == WU_AUTOLOAD) {
if (++m_nDelayCount < GetDllShareData().m_Common.m_sFile.m_nAutoloadDelay) return;
m_nDelayCount = 0;
}
if(!_ToDoChecking())return;
CEditDoc* pcDoc = GetListeningDoc();
//タイムスタンプ監視
FILETIME ftime;
if(!_IsFileUpdatedByOther(&ftime))return;
pcDoc->m_cDocFile.SetFileTime( ftime ); //タイムスタンプ更新
// From Here Dec. 4, 2002 genta
switch( m_eWatchUpdate ){
case WU_NOTIFY:
{
//ファイル更新のお知らせ -> ステータスバー
WCHAR szText[40];
const CFileTime& ctime = pcDoc->m_cDocFile.GetFileTime();
auto_sprintf( szText, LS(STR_AUTORELOAD_NOFITY), ctime->wHour, ctime->wMinute, ctime->wSecond );
GetEditWnd().SendStatusMessage( szText );
}
break;
case WU_AUTOLOAD: //以後未編集で再ロード
if (!pcDoc->m_cDocEditor.IsModified()) {
PauseWatching(); // 更新監視の抑制
/* 同一ファイルの再オープン */
pcDoc->m_cDocFileOperation.ReloadCurrentFile( pcDoc->m_cDocFile.GetCodeSet() );
m_eWatchUpdate = WU_AUTOLOAD;
ResumeWatching(); //監視再開
break;
}
// through
default:
{
PauseWatching(); // 更新監視の抑制
CDlgFileUpdateQuery dlg( pcDoc->m_cDocFile.GetFilePath(), pcDoc->m_cDocEditor.IsModified() );
EFileUpdateQuery result = (EFileUpdateQuery)dlg.DoModal(
G_AppInstance(),
CEditWnd::getInstance()->GetHwnd(),
IDD_FILEUPDATEQUERY,
0
);
switch( result ){
case EFUQ_RELOAD: // 再読込
/* 同一ファイルの再オープン */
pcDoc->m_cDocFileOperation.ReloadCurrentFile( pcDoc->m_cDocFile.GetCodeSet() );
m_eWatchUpdate = WU_QUERY;
break;
case EFUQ_NOTIFYONLY: // 以後通知メッセージのみ
m_eWatchUpdate = WU_NOTIFY;
break;
case EFUQ_NOSUPERVISION: // 以後更新を監視しない
m_eWatchUpdate = WU_NONE;
break;
case EFUQ_AUTOLOAD: // 以後未編集で再ロード
/* 同一ファイルの再オープン */
pcDoc->m_cDocFileOperation.ReloadCurrentFile( pcDoc->m_cDocFile.GetCodeSet() );
m_eWatchUpdate = WU_AUTOLOAD;
m_nDelayCount = 0;
break;
case EFUQ_CLOSE: // CLOSE
default:
m_eWatchUpdate = WU_QUERY;
break;
}
ResumeWatching(); //監視再開
}
break;
}
// To Here Dec. 4, 2002 genta
}