-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Allow specification of ES modules in ExternalGeneratorFilter #34146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
cmsbuild
merged 2 commits into
cms-sw:master
from
Dr15Jones:extraConfigForExternalGeneratorFilter
Jun 21, 2021
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,11 @@ | ||
| import FWCore.ParameterSet.Config as cms | ||
|
|
||
| class ExternalGeneratorFilter(cms.EDFilter): | ||
| def __init__(self, prod, _external_process_waitTime_ = cms.untracked.uint32(60), _external_process_verbose_ = cms.untracked.bool(False)): | ||
| def __init__(self, prod, _external_process_waitTime_ = cms.untracked.uint32(60), _external_process_verbose_ = cms.untracked.bool(False), | ||
| _external_process_esModules_ = cms.vstring()): | ||
| self.__dict__['_external_process_verbose_']=_external_process_verbose_ | ||
| self.__dict__['_external_process_waitTime_']=_external_process_waitTime_ | ||
| self.__dict__['_external_process_esModules_'] = _external_process_esModules_ | ||
| self.__dict__['_prod'] = prod | ||
| super(cms.EDFilter,self).__init__('ExternalGeneratorFilter') | ||
| def __setattr__(self, name, value): | ||
|
|
@@ -31,6 +33,13 @@ def insertInto(self, parameterSet, myname): | |
| newpset.addString(False,"@python_config", self._prod.dumpPython()) | ||
| newpset.addBool(False,"_external_process_verbose_", self._external_process_verbose_.value()) | ||
| newpset.addUInt32(False,"_external_process_waitTime_", self._external_process_waitTime_.value()) | ||
| newpset.addVString(True, "_external_process_esModules_", self._external_process_esModules_.value()) | ||
|
||
|
|
||
| extraConfig ='' | ||
| for x in self._external_process_esModules_.value(): | ||
| extraConfig += "process."+x+"="+parameterSet.getTopPSet_(x).dumpPython() | ||
| extraConfig += '\n' | ||
| newpset.addString(False, "_external_process_extraConfig_", extraConfig) | ||
| self._prod.insertContentsInto(newpset) | ||
| parameterSet.addPSet(True, self.nameInProcessDesc_(myname), newpset) | ||
| def dumpPython(self, options=cms.PrintOptions()): | ||
|
|
@@ -40,7 +49,8 @@ def dumpPython(self, options=cms.PrintOptions()): | |
| result += "\n"+options.indentation() + self._prod.dumpPython(options) | ||
| result +=options.indentation()+",\n" | ||
| result += options.indentation() + "_external_process_waitTime_ = " + self._external_process_waitTime_.dumpPython(options) + ',\n' | ||
| result += options.indentation() + "_external_process_verbose_ = " + self._external_process_verbose_.dumpPython(options) + ',' | ||
| result += options.indentation() + "_external_process_verbose_ = " + self._external_process_verbose_.dumpPython(options) + ',\n' | ||
| result += options.indentation() + "_external_process_esModules_ =" + self._external_process_esModules_.dumpPython(options) + ',' | ||
| options.unindent() | ||
| result += "\n)\n" | ||
| return result | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NOTE: although I called this
_external_process_esModules_, technically the module names of any type of plugin could be passed and it would work. It only really makes sense for ES modules (and maybe Services for testing). If you'd rather, this could be changed to_external_process_components_or something else to capture what is technically possible rather than what I think is most reasonable.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like the proposal components as it might avoid confusion.