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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
|
/*
KeePass Password Safe - The Open-Source Password Manager
Copyright (C) 2003-2024 Dominik Reichl <dominik.reichl@t-online.de>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
using System;
using System.Collections.Specialized;
using System.Diagnostics;
using System.Text;
using System.Threading;
#if !KeePassUAP
using System.Windows.Forms;
#endif
using KeePassLib.Resources;
using KeePassLib.Serialization;
namespace KeePassLib.Utility
{
public sealed class MessageServiceEventArgs : EventArgs
{
private readonly string m_strTitle = string.Empty;
public string Title { get { return m_strTitle; } }
private readonly string m_strText = string.Empty;
public string Text { get { return m_strText; } }
private readonly MessageBoxButtons m_mbb = MessageBoxButtons.OK;
public MessageBoxButtons Buttons { get { return m_mbb; } }
private readonly MessageBoxIcon m_mbi = MessageBoxIcon.None;
public MessageBoxIcon Icon { get { return m_mbi; } }
public MessageServiceEventArgs() { }
public MessageServiceEventArgs(string strTitle, string strText,
MessageBoxButtons mbb, MessageBoxIcon mbi)
{
m_strTitle = (strTitle ?? string.Empty);
m_strText = (strText ?? string.Empty);
m_mbb = mbb;
m_mbi = mbi;
}
}
public static class MessageService
{
private static int g_nCurrentMessageCount = 0;
#if !KeePassLibSD
private const MessageBoxIcon g_mbiInfo = MessageBoxIcon.Information;
private const MessageBoxIcon g_mbiWarning = MessageBoxIcon.Warning;
private const MessageBoxIcon g_mbiFatal = MessageBoxIcon.Error;
private const MessageBoxOptions g_mboRtl = (MessageBoxOptions.RtlReading |
MessageBoxOptions.RightAlign);
#else
private const MessageBoxIcon g_mbiInfo = MessageBoxIcon.Asterisk;
private const MessageBoxIcon g_mbiWarning = MessageBoxIcon.Exclamation;
private const MessageBoxIcon g_mbiFatal = MessageBoxIcon.Hand;
#endif
private const MessageBoxIcon g_mbiQuestion = MessageBoxIcon.Question;
public static string NewLine
{
#if !KeePassLibSD
get { return Environment.NewLine; }
#else
get { return "\r\n"; }
#endif
}
public static string NewParagraph
{
#if !KeePassLibSD
get { return (Environment.NewLine + Environment.NewLine); }
#else
get { return "\r\n\r\n"; }
#endif
}
public static uint CurrentMessageCount
{
get { return (uint)g_nCurrentMessageCount; }
}
#if !KeePassUAP
public static event EventHandler<MessageServiceEventArgs> MessageShowing;
#endif
private static string ObjectsToMessage(object[] vLines)
{
return ObjectsToMessage(vLines, PwDefs.DebugMode);
}
private static string ObjectsToMessage(object[] vLines, bool bFullExceptions)
{
if(vLines == null) return string.Empty;
StringBuilder sb = new StringBuilder();
string strNP = MessageService.NewParagraph;
foreach(object o in vLines)
{
if(o == null) continue;
string str = (o as string);
if(str != null) { StrUtil.AppendTrim(sb, strNP, str); continue; }
Exception ex = (o as Exception);
if(ex != null)
{
StrUtil.AppendTrim(sb, strNP, StrUtil.FormatException(ex,
bFullExceptions));
continue;
}
#if !KeePassLibSD
StringCollection sc = (o as StringCollection);
if(sc != null)
{
int cchPreSC = sb.Length;
foreach(string strItem in sc)
StrUtil.AppendTrim(sb, ((sb.Length == cchPreSC) ?
strNP : MessageService.NewLine), strItem);
continue;
}
#endif
StrUtil.AppendTrim(sb, strNP, o.ToString());
}
return sb.ToString();
}
#if (!KeePassLibSD && !KeePassUAP)
internal static Form GetTopForm()
{
FormCollection fc = Application.OpenForms;
if((fc == null) || (fc.Count == 0)) return null;
return fc[fc.Count - 1];
}
#endif
#if !KeePassUAP
internal static DialogResult SafeShowMessageBox(string strText, string strTitle,
MessageBoxButtons mbb, MessageBoxIcon mbi, MessageBoxDefaultButton mbdb)
{
// strText += MessageService.NewParagraph + (new StackTrace(true)).ToString();
#if KeePassLibSD
return MessageBox.Show(strText, strTitle, mbb, mbi, mbdb);
#else
IWin32Window wnd = null;
try
{
Form f = GetTopForm();
if((f != null) && f.InvokeRequired)
return (DialogResult)f.Invoke(new SafeShowMessageBoxInternalDelegate(
SafeShowMessageBoxInternal), f, strText, strTitle, mbb, mbi, mbdb);
else wnd = f;
}
catch(Exception) { Debug.Assert(false); }
if(wnd == null)
{
if(StrUtil.RightToLeft)
return MessageBox.Show(strText, strTitle, mbb, mbi, mbdb, g_mboRtl);
return MessageBox.Show(strText, strTitle, mbb, mbi, mbdb);
}
try
{
if(StrUtil.RightToLeft)
return MessageBox.Show(wnd, strText, strTitle, mbb, mbi, mbdb, g_mboRtl);
return MessageBox.Show(wnd, strText, strTitle, mbb, mbi, mbdb);
}
catch(Exception) { Debug.Assert(false); }
if(StrUtil.RightToLeft)
return MessageBox.Show(strText, strTitle, mbb, mbi, mbdb, g_mboRtl);
return MessageBox.Show(strText, strTitle, mbb, mbi, mbdb);
#endif
}
#if !KeePassLibSD
internal delegate DialogResult SafeShowMessageBoxInternalDelegate(IWin32Window iParent,
string strText, string strTitle, MessageBoxButtons mbb, MessageBoxIcon mbi,
MessageBoxDefaultButton mbdb);
internal static DialogResult SafeShowMessageBoxInternal(IWin32Window iParent,
string strText, string strTitle, MessageBoxButtons mbb, MessageBoxIcon mbi,
MessageBoxDefaultButton mbdb)
{
if(StrUtil.RightToLeft)
return MessageBox.Show(iParent, strText, strTitle, mbb, mbi, mbdb, g_mboRtl);
return MessageBox.Show(iParent, strText, strTitle, mbb, mbi, mbdb);
}
#endif
public static void ShowInfo(params object[] vLines)
{
ShowInfoEx(null, vLines);
}
public static void ShowInfoEx(string strTitle, params object[] vLines)
{
Interlocked.Increment(ref g_nCurrentMessageCount);
strTitle = (strTitle ?? PwDefs.ShortProductName);
string strText = ObjectsToMessage(vLines);
if(MessageService.MessageShowing != null)
MessageService.MessageShowing(null, new MessageServiceEventArgs(
strTitle, strText, MessageBoxButtons.OK, g_mbiInfo));
SafeShowMessageBox(strText, strTitle, MessageBoxButtons.OK, g_mbiInfo,
MessageBoxDefaultButton.Button1);
Interlocked.Decrement(ref g_nCurrentMessageCount);
}
public static void ShowWarning(params object[] vLines)
{
ShowWarningPriv(vLines, PwDefs.DebugMode);
}
internal static void ShowWarningExcp(params object[] vLines)
{
ShowWarningPriv(vLines, true);
}
private static void ShowWarningPriv(object[] vLines, bool bFullExceptions)
{
Interlocked.Increment(ref g_nCurrentMessageCount);
string strTitle = PwDefs.ShortProductName;
string strText = ObjectsToMessage(vLines, bFullExceptions);
if(MessageService.MessageShowing != null)
MessageService.MessageShowing(null, new MessageServiceEventArgs(
strTitle, strText, MessageBoxButtons.OK, g_mbiWarning));
SafeShowMessageBox(strText, strTitle, MessageBoxButtons.OK, g_mbiWarning,
MessageBoxDefaultButton.Button1);
Interlocked.Decrement(ref g_nCurrentMessageCount);
}
public static void ShowFatal(params object[] vLines)
{
Interlocked.Increment(ref g_nCurrentMessageCount);
string strTitle = PwDefs.ShortProductName + " - " + KLRes.FatalError;
string strText = KLRes.FatalErrorText + MessageService.NewParagraph +
KLRes.ErrorInClipboard + MessageService.NewParagraph +
// Please send it to the KeePass developers.
// KLRes.ErrorFeedbackRequest + MessageService.NewParagraph +
ObjectsToMessage(vLines, false);
try
{
string strDetails = ObjectsToMessage(vLines, true);
#if KeePassLibSD
Clipboard.SetDataObject(strDetails);
#else
Clipboard.Clear();
Clipboard.SetText(strDetails);
#endif
}
catch(Exception) { Debug.Assert(false); }
if(MessageService.MessageShowing != null)
MessageService.MessageShowing(null, new MessageServiceEventArgs(
strTitle, strText, MessageBoxButtons.OK, g_mbiFatal));
SafeShowMessageBox(strText, strTitle, MessageBoxButtons.OK, g_mbiFatal,
MessageBoxDefaultButton.Button1);
Interlocked.Decrement(ref g_nCurrentMessageCount);
}
public static DialogResult Ask(string strText, string strTitle,
MessageBoxButtons mbb)
{
Interlocked.Increment(ref g_nCurrentMessageCount);
string strTextEx = (strText ?? string.Empty);
string strTitleEx = (strTitle ?? PwDefs.ShortProductName);
if(MessageService.MessageShowing != null)
MessageService.MessageShowing(null, new MessageServiceEventArgs(
strTitleEx, strTextEx, mbb, g_mbiQuestion));
DialogResult dr = SafeShowMessageBox(strTextEx, strTitleEx, mbb,
g_mbiQuestion, MessageBoxDefaultButton.Button1);
Interlocked.Decrement(ref g_nCurrentMessageCount);
return dr;
}
public static bool AskYesNo(string strText, string strTitle, bool bDefaultToYes,
MessageBoxIcon mbi)
{
Interlocked.Increment(ref g_nCurrentMessageCount);
string strTextEx = (strText ?? string.Empty);
string strTitleEx = (strTitle ?? PwDefs.ShortProductName);
if(MessageService.MessageShowing != null)
MessageService.MessageShowing(null, new MessageServiceEventArgs(
strTitleEx, strTextEx, MessageBoxButtons.YesNo, mbi));
DialogResult dr = SafeShowMessageBox(strTextEx, strTitleEx,
MessageBoxButtons.YesNo, mbi, bDefaultToYes ?
MessageBoxDefaultButton.Button1 : MessageBoxDefaultButton.Button2);
Interlocked.Decrement(ref g_nCurrentMessageCount);
return (dr == DialogResult.Yes);
}
public static bool AskYesNo(string strText, string strTitle, bool bDefaultToYes)
{
return AskYesNo(strText, strTitle, bDefaultToYes, g_mbiQuestion);
}
public static bool AskYesNo(string strText, string strTitle)
{
return AskYesNo(strText, strTitle, true, g_mbiQuestion);
}
public static bool AskYesNo(string strText)
{
return AskYesNo(strText, null, true, g_mbiQuestion);
}
public static void ShowLoadWarning(string strFilePath, Exception ex)
{
ShowLoadWarning(strFilePath, ex, PwDefs.DebugMode);
}
public static void ShowLoadWarning(string strFilePath, Exception ex,
bool bFullException)
{
ShowWarning(GetLoadWarningMessage(strFilePath, ex, bFullException));
}
public static void ShowLoadWarning(IOConnectionInfo ioc, Exception ex)
{
if(ioc != null) ShowLoadWarning(ioc.GetDisplayName(), ex);
else ShowWarning(ex);
}
public static void ShowSaveWarning(string strFilePath, Exception ex,
bool bCorruptionWarning)
{
FileLockException exFL = (ex as FileLockException);
if(exFL != null) { ShowWarning(exFL); return; }
ShowWarning(GetSaveWarningMessage(strFilePath, ex, bCorruptionWarning));
}
public static void ShowSaveWarning(IOConnectionInfo ioc, Exception ex,
bool bCorruptionWarning)
{
if(ioc != null)
ShowSaveWarning(ioc.GetDisplayName(), ex, bCorruptionWarning);
else ShowWarning(ex);
}
#endif // !KeePassUAP
internal static string GetLoadWarningMessage(string strFilePath,
Exception ex, bool bFullException)
{
object[] v = new object[] { strFilePath, KLRes.FileLoadFailed, ex };
return ObjectsToMessage(v, bFullException);
}
internal static string GetSaveWarningMessage(string strFilePath,
Exception ex, bool bCorruptionWarning)
{
object[] v = new object[] { strFilePath, KLRes.FileSaveFailed, ex,
(bCorruptionWarning ? KLRes.FileSaveCorruptionWarning : null) };
return ObjectsToMessage(v);
}
public static void ExternalIncrementMessageCount()
{
Interlocked.Increment(ref g_nCurrentMessageCount);
}
public static void ExternalDecrementMessageCount()
{
Interlocked.Decrement(ref g_nCurrentMessageCount);
}
}
}
|