mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
* Add boost-regex library * If enabled use boost lib for regex Add property `_useBoostLib` to `CPowerRenameRegEx`. If enabled for replacements with regular expressions the Boost Library is used instead of the Standard Library. * Extend signatures to create RegEx with Boost Extend create and constructor singatures of `CPowerRenameRegEx` with an option to enable (or disabled, which is default) the Boost Library. * Verify Lookbehind fails with STD library To verify that the boost library is disabled as expected, check if a lookbehind fails. * Add Unit tests for RegEx with Boost Add unit tests to verify regex replacement with Boost Library. They are copied and adapted from the Standard Library tests. * Improve verify capturing groups test with Boost It is possible to use a capturing group followed by numbers as replacement if the group number is enclosed in curly braces. Added test cases based on the Standard Library tests. * Add useBoostLib to settings interface * Get library option from settings object * Reduce signatures of RegEx by "useBoost" Remove the parameter added in 19105cf, as it became obsolete. * Settings: Read useBoostLib from JSON file * Add UseBoostLib Option to UI * Boost Lib label states the regex syntax difference * Fix Regex with Boost Lib tests - Do not load settings another time in CPowerRenameRegEx ctor - Set flag correctly in standard library regex tests * Add "lookbehind" to dictionary * change Library to lowercase, and also add a comment As suggested by @enricogior. Co-authored-by: Enrico Giordani <enricogior@users.noreply.github.com> * Change Library to lowercase and add a comment As suggested by @enricogior. Co-authored-by: Enrico Giordani <enricogior@users.noreply.github.com>
241 lines
8.0 KiB
C#
241 lines
8.0 KiB
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.IO;
|
|
using System.Runtime.CompilerServices;
|
|
using Microsoft.PowerToys.Settings.UI.Library.Helpers;
|
|
using Microsoft.PowerToys.Settings.UI.Library.Interfaces;
|
|
using Microsoft.PowerToys.Settings.UI.Library.Utilities;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels
|
|
{
|
|
public class PowerRenameViewModel : Observable
|
|
{
|
|
private GeneralSettings GeneralSettingsConfig { get; set; }
|
|
|
|
private readonly ISettingsUtils _settingsUtils;
|
|
|
|
private const string ModuleName = PowerRenameSettings.ModuleName;
|
|
|
|
private string _settingsConfigFileFolder = string.Empty;
|
|
|
|
private PowerRenameSettings Settings { get; set; }
|
|
|
|
private Func<string, int> SendConfigMSG { get; }
|
|
|
|
[SuppressMessage("Design", "CA1031:Do not catch general exception types", Justification = "Exceptions should not crash the program but will be logged until we can understand common exception scenarios")]
|
|
public PowerRenameViewModel(ISettingsUtils settingsUtils, ISettingsRepository<GeneralSettings> settingsRepository, Func<string, int> ipcMSGCallBackFunc, string configFileSubfolder = "")
|
|
{
|
|
// Update Settings file folder:
|
|
_settingsConfigFileFolder = configFileSubfolder;
|
|
_settingsUtils = settingsUtils ?? throw new ArgumentNullException(nameof(settingsUtils));
|
|
|
|
if (settingsRepository == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(settingsRepository));
|
|
}
|
|
|
|
GeneralSettingsConfig = settingsRepository.SettingsConfig;
|
|
|
|
try
|
|
{
|
|
PowerRenameLocalProperties localSettings = _settingsUtils.GetSettings<PowerRenameLocalProperties>(GetSettingsSubPath(), "power-rename-settings.json");
|
|
Settings = new PowerRenameSettings(localSettings);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Logger.LogError($"Exception encountered while reading {ModuleName} settings.", e);
|
|
#if DEBUG
|
|
if (e is ArgumentException || e is ArgumentNullException || e is PathTooLongException)
|
|
{
|
|
throw;
|
|
}
|
|
#endif
|
|
PowerRenameLocalProperties localSettings = new PowerRenameLocalProperties();
|
|
Settings = new PowerRenameSettings(localSettings);
|
|
_settingsUtils.SaveSettings(localSettings.ToJsonString(), GetSettingsSubPath(), "power-rename-settings.json");
|
|
}
|
|
|
|
// set the callback functions value to hangle outgoing IPC message.
|
|
SendConfigMSG = ipcMSGCallBackFunc;
|
|
|
|
_powerRenameEnabledOnContextMenu = Settings.Properties.ShowIcon.Value;
|
|
_powerRenameEnabledOnContextExtendedMenu = Settings.Properties.ExtendedContextMenuOnly.Value;
|
|
_powerRenameRestoreFlagsOnLaunch = Settings.Properties.PersistState.Value;
|
|
_powerRenameMaxDispListNumValue = Settings.Properties.MaxMRUSize.Value;
|
|
_autoComplete = Settings.Properties.MRUEnabled.Value;
|
|
_powerRenameUseBoostLib = Settings.Properties.UseBoostLib.Value;
|
|
_powerRenameEnabled = GeneralSettingsConfig.Enabled.PowerRename;
|
|
}
|
|
|
|
private bool _powerRenameEnabled;
|
|
private bool _powerRenameEnabledOnContextMenu;
|
|
private bool _powerRenameEnabledOnContextExtendedMenu;
|
|
private bool _powerRenameRestoreFlagsOnLaunch;
|
|
private int _powerRenameMaxDispListNumValue;
|
|
private bool _autoComplete;
|
|
private bool _powerRenameUseBoostLib;
|
|
|
|
public bool IsEnabled
|
|
{
|
|
get
|
|
{
|
|
return _powerRenameEnabled;
|
|
}
|
|
|
|
set
|
|
{
|
|
if (value != _powerRenameEnabled)
|
|
{
|
|
GeneralSettingsConfig.Enabled.PowerRename = value;
|
|
OutGoingGeneralSettings snd = new OutGoingGeneralSettings(GeneralSettingsConfig);
|
|
|
|
SendConfigMSG(snd.ToString());
|
|
|
|
_powerRenameEnabled = value;
|
|
OnPropertyChanged(nameof(IsEnabled));
|
|
RaisePropertyChanged(nameof(GlobalAndMruEnabled));
|
|
}
|
|
}
|
|
}
|
|
|
|
public bool MRUEnabled
|
|
{
|
|
get
|
|
{
|
|
return _autoComplete;
|
|
}
|
|
|
|
set
|
|
{
|
|
if (value != _autoComplete)
|
|
{
|
|
_autoComplete = value;
|
|
Settings.Properties.MRUEnabled.Value = value;
|
|
RaisePropertyChanged();
|
|
RaisePropertyChanged(nameof(GlobalAndMruEnabled));
|
|
}
|
|
}
|
|
}
|
|
|
|
public bool GlobalAndMruEnabled
|
|
{
|
|
get
|
|
{
|
|
return _autoComplete && _powerRenameEnabled;
|
|
}
|
|
}
|
|
|
|
public bool EnabledOnContextMenu
|
|
{
|
|
get
|
|
{
|
|
return _powerRenameEnabledOnContextMenu;
|
|
}
|
|
|
|
set
|
|
{
|
|
if (value != _powerRenameEnabledOnContextMenu)
|
|
{
|
|
_powerRenameEnabledOnContextMenu = value;
|
|
Settings.Properties.ShowIcon.Value = value;
|
|
RaisePropertyChanged();
|
|
}
|
|
}
|
|
}
|
|
|
|
public bool EnabledOnContextExtendedMenu
|
|
{
|
|
get
|
|
{
|
|
return _powerRenameEnabledOnContextExtendedMenu;
|
|
}
|
|
|
|
set
|
|
{
|
|
if (value != _powerRenameEnabledOnContextExtendedMenu)
|
|
{
|
|
_powerRenameEnabledOnContextExtendedMenu = value;
|
|
Settings.Properties.ExtendedContextMenuOnly.Value = value;
|
|
RaisePropertyChanged();
|
|
}
|
|
}
|
|
}
|
|
|
|
public bool RestoreFlagsOnLaunch
|
|
{
|
|
get
|
|
{
|
|
return _powerRenameRestoreFlagsOnLaunch;
|
|
}
|
|
|
|
set
|
|
{
|
|
if (value != _powerRenameRestoreFlagsOnLaunch)
|
|
{
|
|
_powerRenameRestoreFlagsOnLaunch = value;
|
|
Settings.Properties.PersistState.Value = value;
|
|
RaisePropertyChanged();
|
|
}
|
|
}
|
|
}
|
|
|
|
public int MaxDispListNum
|
|
{
|
|
get
|
|
{
|
|
return _powerRenameMaxDispListNumValue;
|
|
}
|
|
|
|
set
|
|
{
|
|
if (value != _powerRenameMaxDispListNumValue)
|
|
{
|
|
_powerRenameMaxDispListNumValue = value;
|
|
Settings.Properties.MaxMRUSize.Value = value;
|
|
RaisePropertyChanged();
|
|
}
|
|
}
|
|
}
|
|
|
|
public bool UseBoostLib
|
|
{
|
|
get
|
|
{
|
|
return _powerRenameUseBoostLib;
|
|
}
|
|
|
|
set
|
|
{
|
|
if (value != _powerRenameUseBoostLib)
|
|
{
|
|
_powerRenameUseBoostLib = value;
|
|
Settings.Properties.UseBoostLib.Value = value;
|
|
RaisePropertyChanged();
|
|
}
|
|
}
|
|
}
|
|
|
|
public string GetSettingsSubPath()
|
|
{
|
|
return _settingsConfigFileFolder + "\\" + ModuleName;
|
|
}
|
|
|
|
private void RaisePropertyChanged([CallerMemberName] string propertyName = null)
|
|
{
|
|
// Notify UI of property change
|
|
OnPropertyChanged(propertyName);
|
|
|
|
if (SendConfigMSG != null)
|
|
{
|
|
SndPowerRenameSettings snd = new SndPowerRenameSettings(Settings);
|
|
SndModuleSettings<SndPowerRenameSettings> ipcMessage = new SndModuleSettings<SndPowerRenameSettings>(snd);
|
|
SendConfigMSG(ipcMessage.ToJsonString());
|
|
}
|
|
}
|
|
}
|
|
}
|