@@ -551,17 +551,46 @@ void printUsage(TStream &str, const TDesc &desc)
551
551
desc.print (str);
552
552
}
553
553
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
+
554
582
template <class TDecorator >
555
- bool chainDecorator (
583
+ bool chainDecoratorIntArg (
556
584
AbstractWriter **pEng,
557
585
const po::variables_map &vm,
558
586
const char *key)
559
587
{
560
- if (!vm.count (key))
588
+ const auto it = vm.find (key);
589
+ if (it == vm.end ())
561
590
// nothing to chain
562
591
return true ;
563
592
564
- const int val = vm[key] .as <int >();
593
+ const int val = it-> second .as <int >();
565
594
if (val < 0 ) {
566
595
std::cerr << name << " : error: invalid value for --"
567
596
<< key << " : " << val << " \n " ;
@@ -678,10 +707,10 @@ int main(int argc, char *argv[])
678
707
return 1 ;
679
708
}
680
709
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 ;
685
714
686
715
// chain all filters
687
716
if (!chainFilters (&eng, vm))
@@ -694,8 +723,8 @@ int main(int argc, char *argv[])
694
723
if (vm.count (" remove-duplicates" ))
695
724
eng = new DuplicateFilter (eng);
696
725
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" ))
699
728
// error message already printed, eng already feeed
700
729
return 1 ;
701
730
0 commit comments