Skip to content

Commit c944725

Browse files
committed
csgrep: factor out chainDecoratorGeneric() helper
... to chain any decorators that take a single argument. Rename the other helper to chainDecoratorIntArg for consistency. No changes in behavior intended by this change.
1 parent 8be6fc1 commit c944725

File tree

1 file changed

+38
-9
lines changed

1 file changed

+38
-9
lines changed

src/csgrep.cc

+38-9
Original file line numberDiff line numberDiff line change
@@ -551,17 +551,46 @@ void printUsage(TStream &str, const TDesc &desc)
551551
desc.print(str);
552552
}
553553

554+
template <class TDecorator, class TArg>
555+
bool chainDecoratorGeneric(
556+
AbstractWriter **pEng,
557+
const po::variables_map &vm,
558+
const char *key)
559+
{
560+
const auto it = vm.find(key);
561+
if (it == vm.end())
562+
// nothing to chain
563+
return true;
564+
565+
const auto &val = it->second.as<TArg>();
566+
567+
try {
568+
// chain the decorator
569+
*pEng = new TDecorator(*pEng, val);
570+
return true;
571+
}
572+
catch (const std::runtime_error &e) {
573+
std::cerr << name << ": error: invalid value for --"
574+
<< key << ": " << e.what() << "\n";
575+
576+
// *pEng is already deleted by destructor of GenericAbstractFilter
577+
*pEng = nullptr;
578+
return false;
579+
}
580+
}
581+
554582
template <class TDecorator>
555-
bool chainDecorator(
583+
bool chainDecoratorIntArg(
556584
AbstractWriter **pEng,
557585
const po::variables_map &vm,
558586
const char *key)
559587
{
560-
if (!vm.count(key))
588+
const auto it = vm.find(key);
589+
if (it == vm.end())
561590
// nothing to chain
562591
return true;
563592

564-
const int val = vm[key].as<int>();
593+
const int val = it->second.as<int>();
565594
if (val < 0) {
566595
std::cerr << name << ": error: invalid value for --"
567596
<< key << ": " << val << "\n";
@@ -678,10 +707,10 @@ int main(int argc, char *argv[])
678707
return 1;
679708
}
680709

681-
const po::variables_map::const_iterator it = vm.find("strip-path-prefix");
682-
if (it != vm.end())
683-
// insert PathStripper into the chain
684-
eng = new PathStripper(eng, it->second.as<std::string>());
710+
// insert PathStripper into the chain if requested
711+
if (!chainDecoratorGeneric<PathStripper, string>(&eng, vm,
712+
"strip-path-prefix"))
713+
return 1;
685714

686715
// chain all filters
687716
if (!chainFilters(&eng, vm))
@@ -694,8 +723,8 @@ int main(int argc, char *argv[])
694723
if (vm.count("remove-duplicates"))
695724
eng = new DuplicateFilter(eng);
696725

697-
if (!chainDecorator<EventPrunner>(&eng, vm, "prune-events")
698-
|| !chainDecorator<CtxEmbedder>(&eng, vm, "embed-context"))
726+
if (!chainDecoratorIntArg<EventPrunner>(&eng, vm, "prune-events")
727+
|| !chainDecoratorIntArg<CtxEmbedder>(&eng, vm, "embed-context"))
699728
// error message already printed, eng already feeed
700729
return 1;
701730

0 commit comments

Comments
 (0)