|
|
|
@ -20,28 +20,25 @@
|
|
|
|
|
class ACommandFeature extends Command |
|
|
|
|
dependson(PendingConfigsTool); |
|
|
|
|
|
|
|
|
|
var private class<Feature> selectedFeatureClass; |
|
|
|
|
var private Text selectedConfigName; |
|
|
|
|
var private class<Feature> selectedFeatureClass; |
|
|
|
|
var private Text selectedFeatureName; |
|
|
|
|
var private Text selectedConfigName; |
|
|
|
|
|
|
|
|
|
var private PendingConfigsTool pendingConfigs; |
|
|
|
|
var private ACommandFeature_Announcer announcer; |
|
|
|
|
var private PendingConfigsTool pendingConfigs; |
|
|
|
|
var private ACommandFeature_Announcer announcer; |
|
|
|
|
|
|
|
|
|
protected function Constructor() |
|
|
|
|
{ |
|
|
|
|
pendingConfigs = |
|
|
|
|
PendingConfigsTool(_.memory.Allocate(class'PendingConfigsTool')); |
|
|
|
|
protected function Constructor() { |
|
|
|
|
pendingConfigs = PendingConfigsTool(_.memory.Allocate(class'PendingConfigsTool')); |
|
|
|
|
super.Constructor(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function Finalizer() |
|
|
|
|
{ |
|
|
|
|
protected function Finalizer() { |
|
|
|
|
_.memory.Free(announcer); |
|
|
|
|
_.memory.Free(pendingConfigs); |
|
|
|
|
super.Finalizer(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function BuildData(CommandDataBuilder builder) |
|
|
|
|
{ |
|
|
|
|
protected function BuildData(CommandDataBuilder builder) { |
|
|
|
|
builder.Group(P("admin")); |
|
|
|
|
builder.Summary(P("Managing features.")); |
|
|
|
|
builder.Describe(P("Command for managing features and their configs.")); |
|
|
|
@ -108,126 +105,109 @@ protected function Executed(
|
|
|
|
|
local bool saveFlag, allFlag; |
|
|
|
|
|
|
|
|
|
announcer.Setup(none, instigator, othersConsole); |
|
|
|
|
saveFlag = arguments.options.HasKey(P("save")); |
|
|
|
|
allFlag = arguments.options.HasKey(P("all")); |
|
|
|
|
saveFlag = arguments.options.HasKey(P("save")); |
|
|
|
|
allFlag = arguments.options.HasKey(P("all")); |
|
|
|
|
SelectFeatureAndConfig(arguments); |
|
|
|
|
if (arguments.subCommandName.IsEmpty()) { |
|
|
|
|
ShowAllFeatures(); |
|
|
|
|
} |
|
|
|
|
else if (arguments.subCommandName.Compare(P("enable"))) { |
|
|
|
|
} else if (arguments.subCommandName.Compare(P("enable"))) { |
|
|
|
|
EnableFeature(); |
|
|
|
|
} |
|
|
|
|
else if (arguments.subCommandName.Compare(P("disable"))) { |
|
|
|
|
} else if (arguments.subCommandName.Compare(P("disable"))) { |
|
|
|
|
DisableFeature(); |
|
|
|
|
} |
|
|
|
|
else if (arguments.subCommandName.Compare(P("showconf"))) { |
|
|
|
|
} else if (arguments.subCommandName.Compare(P("showconf"))) { |
|
|
|
|
ShowSelectedConfigs(allFlag); |
|
|
|
|
} |
|
|
|
|
else if (arguments.subCommandName.Compare(P("editconf"))) |
|
|
|
|
{ |
|
|
|
|
} else if (arguments.subCommandName.Compare(P("editconf"))) { |
|
|
|
|
EditFeatureConfig( |
|
|
|
|
arguments.parameters.GetText(P("variable_path")), |
|
|
|
|
arguments.parameters.GetItem(P("value")), |
|
|
|
|
saveFlag); |
|
|
|
|
} |
|
|
|
|
else if (arguments.subCommandName.Compare(P("saveconf"))) { |
|
|
|
|
} else if (arguments.subCommandName.Compare(P("saveconf"))) { |
|
|
|
|
SaveFeatureConfig(); |
|
|
|
|
} |
|
|
|
|
else if (arguments.subCommandName.Compare(P("newconf"))) { |
|
|
|
|
} else if (arguments.subCommandName.Compare(P("newconf"))) { |
|
|
|
|
NewFeatureConfig(); |
|
|
|
|
} |
|
|
|
|
else if (arguments.subCommandName.Compare(P("removeconf"))) { |
|
|
|
|
} else if (arguments.subCommandName.Compare(P("removeconf"))) { |
|
|
|
|
RemoveFeatureConfig(); |
|
|
|
|
} |
|
|
|
|
else if (arguments.subCommandName.Compare(P("autoconf"))) { |
|
|
|
|
} else if (arguments.subCommandName.Compare(P("autoconf"))) { |
|
|
|
|
SetAutoFeatureConfig(); |
|
|
|
|
} |
|
|
|
|
_.memory.Free(selectedConfigName); |
|
|
|
|
_.memory.Free2(selectedConfigName, selectedFeatureName); |
|
|
|
|
selectedConfigName = none; |
|
|
|
|
selectedFeatureName = none; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function SelectFeatureAndConfig(CallData arguments) |
|
|
|
|
{ |
|
|
|
|
protected function SelectFeatureAndConfig(CallData arguments) { |
|
|
|
|
local Text featureClassName, userGivenConfigName; |
|
|
|
|
|
|
|
|
|
featureClassName = arguments.parameters.GetText(P("feature")); |
|
|
|
|
selectedFeatureName = arguments.parameters.GetTextBy(P("/feature/alias")); |
|
|
|
|
featureClassName = arguments.parameters.GetTextBy(P("/feature/value")); |
|
|
|
|
selectedFeatureClass = LoadFeatureClass(featureClassName); |
|
|
|
|
if (selectedFeatureClass == none && !arguments.subCommandName.IsEmpty()) { |
|
|
|
|
_.memory.Free(selectedFeatureName); |
|
|
|
|
selectedFeatureName = none; |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
_.memory.Free(featureClassName); |
|
|
|
|
userGivenConfigName = arguments.parameters.GetText(P("config")); |
|
|
|
|
if (userGivenConfigName != none) |
|
|
|
|
{ |
|
|
|
|
if (userGivenConfigName != none) { |
|
|
|
|
selectedConfigName = userGivenConfigName.LowerCopy(); |
|
|
|
|
userGivenConfigName.FreeSelf(); |
|
|
|
|
} |
|
|
|
|
pendingConfigs.SelectConfig(selectedFeatureClass, selectedConfigName); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function EnableFeature() |
|
|
|
|
{ |
|
|
|
|
local bool wasEnabled; |
|
|
|
|
local Text oldConfig, newConfig; |
|
|
|
|
local Feature instance; |
|
|
|
|
protected function EnableFeature() { |
|
|
|
|
local bool wasEnabled; |
|
|
|
|
local Text oldConfig, newConfig; |
|
|
|
|
local Feature instance; |
|
|
|
|
|
|
|
|
|
wasEnabled = selectedFeatureClass.static.IsEnabled(); |
|
|
|
|
oldConfig = selectedFeatureClass.static.GetCurrentConfig(); |
|
|
|
|
newConfig = PickConfigBasedOnParameter(); |
|
|
|
|
wasEnabled = selectedFeatureClass.static.IsEnabled(); |
|
|
|
|
oldConfig = selectedFeatureClass.static.GetCurrentConfig(); |
|
|
|
|
newConfig = PickConfigBasedOnParameter(); |
|
|
|
|
// Already enabled with the same config! |
|
|
|
|
if (oldConfig != none && oldConfig.Compare(newConfig, SCASE_INSENSITIVE)) |
|
|
|
|
{ |
|
|
|
|
announcer.AnnounceFailedAlreadyEnabled(selectedFeatureClass, newConfig); |
|
|
|
|
if (oldConfig != none && oldConfig.Compare(newConfig, SCASE_INSENSITIVE)) { |
|
|
|
|
announcer.AnnounceFailedAlreadyEnabled(selectedFeatureName, newConfig); |
|
|
|
|
_.memory.Free(newConfig); |
|
|
|
|
_.memory.Free(oldConfig); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
// Try enabling and report the result |
|
|
|
|
instance = selectedFeatureClass.static.EnableMe(newConfig); |
|
|
|
|
if (instance == none) |
|
|
|
|
{ |
|
|
|
|
if (instance == none) { |
|
|
|
|
announcer.AnnounceFailedCannotEnableFeature( |
|
|
|
|
selectedFeatureClass, |
|
|
|
|
selectedFeatureName, |
|
|
|
|
newConfig); |
|
|
|
|
} |
|
|
|
|
else if (wasEnabled) |
|
|
|
|
{ |
|
|
|
|
} else if (wasEnabled) { |
|
|
|
|
announcer.AnnounceSwappedConfig( |
|
|
|
|
selectedFeatureClass, |
|
|
|
|
selectedFeatureName, |
|
|
|
|
oldConfig, |
|
|
|
|
newConfig); |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
announcer.AnnounceEnabledFeature(selectedFeatureClass, newConfig); |
|
|
|
|
} else { |
|
|
|
|
announcer.AnnounceEnabledFeature(selectedFeatureName, newConfig); |
|
|
|
|
} |
|
|
|
|
_.memory.Free(newConfig); |
|
|
|
|
_.memory.Free(oldConfig); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function DisableFeature() |
|
|
|
|
{ |
|
|
|
|
if (!selectedFeatureClass.static.IsEnabled()) |
|
|
|
|
{ |
|
|
|
|
announcer.AnnounceFailedAlreadyDisabled(selectedFeatureClass); |
|
|
|
|
protected function DisableFeature() { |
|
|
|
|
if (!selectedFeatureClass.static.IsEnabled()) { |
|
|
|
|
announcer.AnnounceFailedAlreadyDisabled(selectedFeatureName); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
selectedFeatureClass.static.DisableMe(); |
|
|
|
|
// It is possible that this command itself is destroyed after above command |
|
|
|
|
// so do the check just in case |
|
|
|
|
if (IsAllocated()) { |
|
|
|
|
announcer.AnnounceDisabledFeature(selectedFeatureClass); |
|
|
|
|
announcer.AnnounceDisabledFeature(selectedFeatureName); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function ShowSelectedConfigs(bool showAllFeatures) |
|
|
|
|
{ |
|
|
|
|
local int i; |
|
|
|
|
local array<Text> availableConfigs; |
|
|
|
|
local MutableText configList; |
|
|
|
|
local class<FeatureConfig> configClass; |
|
|
|
|
protected function ShowSelectedConfigs(bool showAllFeatures) { |
|
|
|
|
local int i; |
|
|
|
|
local array<Text> availableConfigs; |
|
|
|
|
local MutableText configList; |
|
|
|
|
local class<FeatureConfig> configClass; |
|
|
|
|
|
|
|
|
|
if (showAllFeatures) |
|
|
|
|
{ |
|
|
|
|
if (showAllFeatures) { |
|
|
|
|
configClass = selectedFeatureClass.default.configClass; |
|
|
|
|
if (configClass != none) { |
|
|
|
|
availableConfigs = configClass.static.AvailableConfigs(); |
|
|
|
@ -238,8 +218,7 @@ protected function ShowSelectedConfigs(bool showAllFeatures)
|
|
|
|
|
_.memory.FreeMany(availableConfigs); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (selectedConfigName != none) |
|
|
|
|
{ |
|
|
|
|
if (selectedConfigName != none) { |
|
|
|
|
ShowFeatureConfig(selectedConfigName); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
@ -251,35 +230,32 @@ protected function ShowSelectedConfigs(bool showAllFeatures)
|
|
|
|
|
_.memory.Free(configList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function ShowFeatureConfig(BaseText configName) |
|
|
|
|
{ |
|
|
|
|
local MutableText dataAsJSON; |
|
|
|
|
local HashTable currentData, pendingData; |
|
|
|
|
protected function ShowFeatureConfig(BaseText configName) { |
|
|
|
|
local MutableText dataAsJSON; |
|
|
|
|
local HashTable currentData, pendingData; |
|
|
|
|
|
|
|
|
|
if (configName == none) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
currentData = GetCurrentConfigData(configName); |
|
|
|
|
if (currentData == none) |
|
|
|
|
{ |
|
|
|
|
if (currentData == none) { |
|
|
|
|
announcer.AnnounceFailedNoDataForConfig( |
|
|
|
|
selectedFeatureClass, |
|
|
|
|
selectedFeatureName, |
|
|
|
|
configName); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
// Display current data |
|
|
|
|
dataAsJSON = _.json.PrettyPrint(currentData); |
|
|
|
|
announcer.AnnounceCurrentConfig(selectedFeatureClass, configName); |
|
|
|
|
announcer.AnnounceCurrentConfig(selectedFeatureName, configName); |
|
|
|
|
callerConsole.Flush().WriteLine(dataAsJSON); |
|
|
|
|
_.memory.Free(dataAsJSON); |
|
|
|
|
// Display pending data |
|
|
|
|
pendingConfigs.SelectConfig(selectedFeatureClass, configName); |
|
|
|
|
pendingData = pendingConfigs.GetPendingConfigData(); |
|
|
|
|
if (pendingData != none) |
|
|
|
|
{ |
|
|
|
|
if (pendingData != none) { |
|
|
|
|
dataAsJSON = _.json.PrettyPrint(pendingData); |
|
|
|
|
announcer.AnnouncePendingConfig( |
|
|
|
|
selectedFeatureClass, |
|
|
|
|
selectedFeatureName, |
|
|
|
|
configName); |
|
|
|
|
callerConsole.Flush().WriteLine(dataAsJSON); |
|
|
|
|
_.memory.Free(dataAsJSON); |
|
|
|
@ -288,20 +264,17 @@ protected function ShowFeatureConfig(BaseText configName)
|
|
|
|
|
_.memory.Free(currentData); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function Text PickConfigBasedOnParameter() |
|
|
|
|
{ |
|
|
|
|
local Text resolvedConfig; |
|
|
|
|
local class<FeatureConfig> configClass; |
|
|
|
|
protected function Text PickConfigBasedOnParameter() { |
|
|
|
|
local Text resolvedConfig; |
|
|
|
|
local class<FeatureConfig> configClass; |
|
|
|
|
|
|
|
|
|
configClass = selectedFeatureClass.default.configClass; |
|
|
|
|
if (configClass == none) |
|
|
|
|
{ |
|
|
|
|
announcer.AnnounceFailedNoConfigClass(selectedFeatureClass); |
|
|
|
|
if (configClass == none) { |
|
|
|
|
announcer.AnnounceFailedNoConfigClass(selectedFeatureName); |
|
|
|
|
return none; |
|
|
|
|
} |
|
|
|
|
// If config was specified - simply check that it exists |
|
|
|
|
if (selectedConfigName != none) |
|
|
|
|
{ |
|
|
|
|
if (selectedConfigName != none) { |
|
|
|
|
if (configClass.static.Exists(selectedConfigName)) { |
|
|
|
|
return selectedConfigName.Copy(); |
|
|
|
|
} |
|
|
|
@ -311,13 +284,12 @@ protected function Text PickConfigBasedOnParameter()
|
|
|
|
|
// If it wasn't specified - try auto config instead |
|
|
|
|
resolvedConfig = configClass.static.GetAutoEnabledConfig(); |
|
|
|
|
if (resolvedConfig == none) { |
|
|
|
|
announcer.AnnounceFailedNoConfigProvided(selectedFeatureClass); |
|
|
|
|
announcer.AnnounceFailedNoConfigProvided(selectedFeatureName); |
|
|
|
|
} |
|
|
|
|
return resolvedConfig; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function class<Feature> LoadFeatureClass(BaseText featureClassName) |
|
|
|
|
{ |
|
|
|
|
protected function class<Feature> LoadFeatureClass(BaseText featureClassName) { |
|
|
|
|
local class<Feature> featureClass; |
|
|
|
|
|
|
|
|
|
if (featureClassName == none) { |
|
|
|
@ -330,10 +302,10 @@ protected function class<Feature> LoadFeatureClass(BaseText featureClassName)
|
|
|
|
|
return featureClass; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function ShowAllFeatures() |
|
|
|
|
{ |
|
|
|
|
local int i; |
|
|
|
|
local array< class<Feature> > availableFeatures; |
|
|
|
|
protected function ShowAllFeatures() { |
|
|
|
|
local int i; |
|
|
|
|
local array< class<Feature> > availableFeatures; |
|
|
|
|
|
|
|
|
|
availableFeatures = _.environment.GetAvailableFeatures(); |
|
|
|
|
for (i = 0; i < availableFeatures.length; i ++) { |
|
|
|
|
ShowFeature(availableFeatures[i]); |
|
|
|
@ -366,45 +338,47 @@ protected function ShowFeature(class<Feature> featureClass)
|
|
|
|
|
_.memory.Free(configList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function MutableText PrintConfigList(class<Feature> featureClass) |
|
|
|
|
{ |
|
|
|
|
local int i; |
|
|
|
|
local Text autoConfig; |
|
|
|
|
local ListBuilder configList; |
|
|
|
|
local MutableText result, nextConfig; |
|
|
|
|
local array<Text> availableConfigs; |
|
|
|
|
local class<FeatureConfig> configClass; |
|
|
|
|
protected function MutableText PrintConfigList(class<Feature> featureClass) { |
|
|
|
|
local int i; |
|
|
|
|
local Text autoConfig, enabledConfig; |
|
|
|
|
local ListBuilder configList; |
|
|
|
|
local MutableText result, nextConfig; |
|
|
|
|
local array<Text> availableConfigs; |
|
|
|
|
local class<FeatureConfig> configClass; |
|
|
|
|
|
|
|
|
|
if (featureClass == none) return none; |
|
|
|
|
configClass = featureClass.default.configClass; |
|
|
|
|
if (configClass == none) return none; |
|
|
|
|
|
|
|
|
|
availableConfigs = configClass.static.AvailableConfigs(); |
|
|
|
|
autoConfig = configClass.static.GetAutoEnabledConfig(); |
|
|
|
|
configList = ListBuilder(_.memory.Allocate(class'ListBuilder')); |
|
|
|
|
for (i = 0; i < availableConfigs.length; i += 1) |
|
|
|
|
{ |
|
|
|
|
availableConfigs = configClass.static.AvailableConfigs(); |
|
|
|
|
enabledConfig = featureClass.static.GetCurrentConfig(); |
|
|
|
|
autoConfig = configClass.static.GetAutoEnabledConfig(); |
|
|
|
|
configList = ListBuilder(_.memory.Allocate(class'ListBuilder')); |
|
|
|
|
for (i = 0; i < availableConfigs.length; i += 1) { |
|
|
|
|
nextConfig = availableConfigs[i].MutableCopy(); |
|
|
|
|
if (enabledConfig != none && enabledConfig.Compare(nextConfig, SCASE_INSENSITIVE)) { |
|
|
|
|
nextConfig.ChangeDefaultColor(_.color.TextPositive); |
|
|
|
|
} |
|
|
|
|
if (pendingConfigs.HasPendingConfigFor(featureClass, nextConfig)) { |
|
|
|
|
nextConfig.Append(F("{$TextEmphasis *}")); |
|
|
|
|
} |
|
|
|
|
configList.Item(nextConfig); |
|
|
|
|
_.memory.Free(nextConfig); |
|
|
|
|
if ( autoConfig != none |
|
|
|
|
&& autoConfig.Compare(availableConfigs[i], SCASE_INSENSITIVE)) |
|
|
|
|
{ |
|
|
|
|
configList.Comment(F("{$TextPositive auto enabled}")); |
|
|
|
|
if (autoConfig != none && autoConfig.Compare(availableConfigs[i], SCASE_INSENSITIVE)) { |
|
|
|
|
if (autoConfig.Compare(enabledConfig, SCASE_INSENSITIVE)) { |
|
|
|
|
configList.Comment(F("{$TextPositive auto enabled}")); |
|
|
|
|
} else { |
|
|
|
|
configList.Comment(F("{$TextNegative auto enabled}")); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
result = configList.GetMutable(); |
|
|
|
|
_.memory.Free(configList); |
|
|
|
|
_.memory.Free(autoConfig); |
|
|
|
|
_.memory.Free3(configList, autoConfig, enabledConfig); |
|
|
|
|
_.memory.FreeMany(availableConfigs); |
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function MutableText PrettyPrintValueAt(BaseText pathToValue) |
|
|
|
|
{ |
|
|
|
|
protected function MutableText PrettyPrintValueAt(BaseText pathToValue) { |
|
|
|
|
local MutableText printedValue; |
|
|
|
|
local AcediaObject value; |
|
|
|
|
local HashTable relevantData; |
|
|
|
@ -416,8 +390,7 @@ protected function MutableText PrettyPrintValueAt(BaseText pathToValue)
|
|
|
|
|
if (relevantData != none) { |
|
|
|
|
value = relevantData.GetItemBy(pathToValue); |
|
|
|
|
} |
|
|
|
|
if (value != none) |
|
|
|
|
{ |
|
|
|
|
if (value != none) { |
|
|
|
|
printedValue = _.json.PrettyPrint(value); |
|
|
|
|
_.memory.Free(value); |
|
|
|
|
} |
|
|
|
@ -425,11 +398,7 @@ protected function MutableText PrettyPrintValueAt(BaseText pathToValue)
|
|
|
|
|
return printedValue; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function EditFeatureConfig( |
|
|
|
|
BaseText pathToValue, |
|
|
|
|
AcediaObject newValue, |
|
|
|
|
bool saveConfig) |
|
|
|
|
{ |
|
|
|
|
protected function EditFeatureConfig(BaseText pathToValue, AcediaObject newValue, bool saveConfig) { |
|
|
|
|
local MutableText printedOldValue; |
|
|
|
|
local MutableText printedNewValue; |
|
|
|
|
local PendingConfigsTool.PendingConfigToolResult error; |
|
|
|
@ -447,26 +416,20 @@ protected function EditFeatureConfig(
|
|
|
|
|
} |
|
|
|
|
else if (error == PCTE_ExpectedObject) { |
|
|
|
|
announcer.AnnounceFailedExpectedObject(); |
|
|
|
|
} |
|
|
|
|
else if (error == PCTE_BadPointer) |
|
|
|
|
{ |
|
|
|
|
} else if (error == PCTE_BadPointer) { |
|
|
|
|
announcer.AnnounceFailedBadPointer( |
|
|
|
|
selectedFeatureClass, |
|
|
|
|
selectedFeatureName, |
|
|
|
|
selectedConfigName, |
|
|
|
|
pathToValue); |
|
|
|
|
} |
|
|
|
|
else if (printedOldValue == none) |
|
|
|
|
{ |
|
|
|
|
} else if (printedOldValue == none) { |
|
|
|
|
announcer.AnnounceConfigNewValue( |
|
|
|
|
selectedFeatureClass, |
|
|
|
|
selectedFeatureName, |
|
|
|
|
selectedConfigName, |
|
|
|
|
pathToValue, |
|
|
|
|
printedNewValue); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
} else { |
|
|
|
|
announcer.AnnounceConfigEdited( |
|
|
|
|
selectedFeatureClass, |
|
|
|
|
selectedFeatureName, |
|
|
|
|
selectedConfigName, |
|
|
|
|
pathToValue, |
|
|
|
|
printedOldValue, |
|
|
|
@ -481,21 +444,18 @@ protected function EditFeatureConfig(
|
|
|
|
|
_.memory.Free(newValue); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function SaveFeatureConfig() |
|
|
|
|
{ |
|
|
|
|
local BaseText enabledConfigName; |
|
|
|
|
local HashTable pendingData; |
|
|
|
|
local class<FeatureConfig> configClass; |
|
|
|
|
protected function SaveFeatureConfig() { |
|
|
|
|
local BaseText enabledConfigName; |
|
|
|
|
local HashTable pendingData; |
|
|
|
|
local class<FeatureConfig> configClass; |
|
|
|
|
|
|
|
|
|
configClass = selectedFeatureClass.default.configClass; |
|
|
|
|
if (configClass == none) |
|
|
|
|
{ |
|
|
|
|
announcer.AnnounceFailedNoConfigClass(selectedFeatureClass); |
|
|
|
|
if (configClass == none) { |
|
|
|
|
announcer.AnnounceFailedNoConfigClass(selectedFeatureName); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
pendingData = pendingConfigs.GetPendingConfigData(); |
|
|
|
|
if (pendingData == none) |
|
|
|
|
{ |
|
|
|
|
if (pendingData == none) { |
|
|
|
|
announcer.AnnounceFailedPendingConfigMissing(selectedConfigName); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
@ -504,13 +464,11 @@ protected function SaveFeatureConfig()
|
|
|
|
|
configClass.static.SaveData(selectedConfigName, pendingData); |
|
|
|
|
// Re-apply config if it is active? |
|
|
|
|
enabledConfigName = selectedFeatureClass.static.GetCurrentConfig(); |
|
|
|
|
if (selectedConfigName.Compare(enabledConfigName, SCASE_INSENSITIVE)) |
|
|
|
|
{ |
|
|
|
|
if (selectedConfigName.Compare(enabledConfigName, SCASE_INSENSITIVE)) { |
|
|
|
|
selectedFeatureClass.static.EnableMe(selectedConfigName); |
|
|
|
|
announcer.AnnouncePublicPendingConfigSaved(selectedFeatureClass); |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
announcer.AnnouncePrivatePendingConfigSaved(selectedFeatureClass); |
|
|
|
|
announcer.AnnouncePublicPendingConfigSaved(selectedFeatureName); |
|
|
|
|
} else { |
|
|
|
|
announcer.AnnouncePrivatePendingConfigSaved(selectedFeatureName, selectedConfigName); |
|
|
|
|
} |
|
|
|
|
_.memory.Free(enabledConfigName); |
|
|
|
|
pendingData.FreeSelf(); |
|
|
|
@ -518,125 +476,101 @@ protected function SaveFeatureConfig()
|
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function NewFeatureConfig() |
|
|
|
|
{ |
|
|
|
|
local BaseText enabledConfigName; |
|
|
|
|
local class<FeatureConfig> configClass; |
|
|
|
|
protected function NewFeatureConfig() { |
|
|
|
|
local BaseText enabledConfigName; |
|
|
|
|
local class<FeatureConfig> configClass; |
|
|
|
|
|
|
|
|
|
configClass = selectedFeatureClass.default.configClass; |
|
|
|
|
if (configClass == none) |
|
|
|
|
{ |
|
|
|
|
announcer.AnnounceFailedNoConfigClass(selectedFeatureClass); |
|
|
|
|
if (configClass == none) { |
|
|
|
|
announcer.AnnounceFailedNoConfigClass(selectedFeatureName); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (configClass.static.Exists(selectedConfigName)) |
|
|
|
|
{ |
|
|
|
|
announcer.AnnounceFailedConfigAlreadyExists( |
|
|
|
|
selectedFeatureClass, |
|
|
|
|
selectedConfigName); |
|
|
|
|
if (configClass.static.Exists(selectedConfigName)) { |
|
|
|
|
announcer.AnnounceFailedConfigAlreadyExists(selectedFeatureName, selectedConfigName); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (!configClass.static.NewConfig(selectedConfigName)) |
|
|
|
|
{ |
|
|
|
|
if (!configClass.static.NewConfig(selectedConfigName)) { |
|
|
|
|
announcer.AnnounceFailedBadConfigName(selectedConfigName); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
enabledConfigName = selectedFeatureClass.static.GetCurrentConfig(); |
|
|
|
|
if (selectedConfigName.Compare(enabledConfigName, SCASE_INSENSITIVE)) |
|
|
|
|
{ |
|
|
|
|
if (selectedConfigName.Compare(enabledConfigName, SCASE_INSENSITIVE)) { |
|
|
|
|
selectedFeatureClass.static.EnableMe(selectedConfigName); |
|
|
|
|
announcer.AnnouncePublicPendingConfigSaved(selectedFeatureClass); |
|
|
|
|
announcer.AnnouncePublicPendingConfigSaved(selectedFeatureName); |
|
|
|
|
} |
|
|
|
|
_.memory.Free(enabledConfigName); |
|
|
|
|
announcer.AnnounceConfigCreated(selectedFeatureClass, selectedConfigName); |
|
|
|
|
announcer.AnnounceConfigCreated(selectedFeatureName, selectedConfigName); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function RemoveFeatureConfig() |
|
|
|
|
{ |
|
|
|
|
protected function RemoveFeatureConfig() { |
|
|
|
|
local class<FeatureConfig> configClass; |
|
|
|
|
|
|
|
|
|
configClass = selectedFeatureClass.default.configClass; |
|
|
|
|
if (configClass == none) |
|
|
|
|
{ |
|
|
|
|
announcer.AnnounceFailedNoConfigClass(selectedFeatureClass); |
|
|
|
|
if (configClass == none) { |
|
|
|
|
announcer.AnnounceFailedNoConfigClass(selectedFeatureName); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (!configClass.static.Exists(selectedConfigName)) |
|
|
|
|
{ |
|
|
|
|
if (!configClass.static.Exists(selectedConfigName)) { |
|
|
|
|
announcer.AnnounceFailedConfigDoesNotExist( |
|
|
|
|
selectedFeatureClass, |
|
|
|
|
selectedFeatureName, |
|
|
|
|
selectedConfigName); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
pendingConfigs.RemoveConfig(); |
|
|
|
|
configClass.static.DeleteConfig(selectedConfigName); |
|
|
|
|
announcer.AnnounceConfigRemoved(selectedFeatureClass, selectedConfigName); |
|
|
|
|
announcer.AnnounceConfigRemoved(selectedFeatureName, selectedConfigName); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function SetAutoFeatureConfig() |
|
|
|
|
{ |
|
|
|
|
local Text currentAutoEnabledConfig; |
|
|
|
|
local class<FeatureConfig> configClass; |
|
|
|
|
protected function SetAutoFeatureConfig() { |
|
|
|
|
local Text currentAutoEnabledConfig; |
|
|
|
|
local class<FeatureConfig> configClass; |
|
|
|
|
|
|
|
|
|
configClass = selectedFeatureClass.default.configClass; |
|
|
|
|
if (configClass == none) |
|
|
|
|
{ |
|
|
|
|
announcer.AnnounceFailedNoConfigClass(selectedFeatureClass); |
|
|
|
|
if (configClass == none) { |
|
|
|
|
announcer.AnnounceFailedNoConfigClass(selectedFeatureName); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if ( selectedConfigName != none |
|
|
|
|
&& !configClass.static.Exists(selectedConfigName)) |
|
|
|
|
{ |
|
|
|
|
announcer.AnnounceFailedConfigDoesNotExist( |
|
|
|
|
selectedFeatureClass, |
|
|
|
|
selectedConfigName); |
|
|
|
|
if (selectedConfigName != none && !configClass.static.Exists(selectedConfigName)) { |
|
|
|
|
announcer.AnnounceFailedConfigDoesNotExist(selectedFeatureName, selectedConfigName); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
currentAutoEnabledConfig = configClass.static.GetAutoEnabledConfig(); |
|
|
|
|
if (selectedConfigName == none && currentAutoEnabledConfig == none) { |
|
|
|
|
announcer.AnnounceFailedAlreadyNoAutoEnabled(selectedFeatureClass); |
|
|
|
|
announcer.AnnounceFailedAlreadyNoAutoEnabled(selectedFeatureName); |
|
|
|
|
} |
|
|
|
|
else if (selectedConfigName != none && |
|
|
|
|
selectedConfigName.Compare(currentAutoEnabledConfig, SCASE_INSENSITIVE)) |
|
|
|
|
{ |
|
|
|
|
selectedConfigName.Compare(currentAutoEnabledConfig, SCASE_INSENSITIVE)) { |
|
|
|
|
announcer.AnnounceFailedAlreadySameAutoEnabled( |
|
|
|
|
selectedFeatureClass, |
|
|
|
|
selectedFeatureName, |
|
|
|
|
selectedConfigName); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
} else { |
|
|
|
|
configClass.static.SetAutoEnabledConfig(selectedConfigName); |
|
|
|
|
if (selectedConfigName != none) |
|
|
|
|
{ |
|
|
|
|
if (selectedConfigName != none) { |
|
|
|
|
announcer.AnnounceAutoEnabledConfig( |
|
|
|
|
selectedFeatureClass, |
|
|
|
|
selectedFeatureName, |
|
|
|
|
selectedConfigName); |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
announcer.AnnounceRemovedAutoEnabledConfig(selectedFeatureClass); |
|
|
|
|
} else { |
|
|
|
|
announcer.AnnounceRemovedAutoEnabledConfig(selectedFeatureName); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
_.memory.Free(currentAutoEnabledConfig); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private function HashTable GetCurrentConfigData(BaseText configName) |
|
|
|
|
{ |
|
|
|
|
private function HashTable GetCurrentConfigData(BaseText configName) { |
|
|
|
|
local class<FeatureConfig> configClass; |
|
|
|
|
|
|
|
|
|
if (configName == none) { |
|
|
|
|
return none; |
|
|
|
|
} |
|
|
|
|
configClass = selectedFeatureClass.default.configClass; |
|
|
|
|
if (configClass == none) |
|
|
|
|
{ |
|
|
|
|
announcer.AnnounceFailedNoConfigClass(selectedFeatureClass); |
|
|
|
|
if (configClass == none) { |
|
|
|
|
announcer.AnnounceFailedNoConfigClass(selectedFeatureName); |
|
|
|
|
return none; |
|
|
|
|
} |
|
|
|
|
return configClass.static.LoadData(configName); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private function HashTable GetCurrentSelectedConfigData() |
|
|
|
|
{ |
|
|
|
|
private function HashTable GetCurrentSelectedConfigData() { |
|
|
|
|
return GetCurrentConfigData(selectedConfigName); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|