[PATCH 2/2] Add additional arguments to BaseHandler.__init__ for better map control.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



First, I've introduced dataMapping= which does the same as mapping but for
data objects.  Second, I've introduced commandUpdates= and dataUpdates= which
take effect after mappings have been generated and modifies them.  This allows
you to either specify an entirely new set of mappings or just updates a few
commands.
---
 pykickstart/base.py |   41 ++++++++++++++++++++++++++++++++---------
 1 files changed, 32 insertions(+), 9 deletions(-)

diff --git a/pykickstart/base.py b/pykickstart/base.py
index b522878..aa4e9d8 100644
--- a/pykickstart/base.py
+++ b/pykickstart/base.py
@@ -201,12 +201,28 @@ class BaseHandler(KickstartObject):
     """
     version = None
 
-    def __init__(self, mapping={}, *args, **kwargs):
+    def __init__(self, mapping={}, dataMapping={}, commandUpdates={},
+                 dataUpdates={}, *args, **kwargs):
         """Create a new BaseHandler instance.  This method must be provided by
            all subclasses, but subclasses must call BaseHandler.__init__ first.
-           mapping is a custom map from command strings to classes, useful when
-           creating your own handler with special command objects.  It is
-           otherwise unused and rarely needed.
+
+           mapping          -- A custom map from command strings to classes,
+                               useful when creating your own handler with
+                               special command objects.  It is otherwise unused
+                               and rarely needed.  If you give this argument,
+                               the mapping takes the place of the default one
+                               and so must include all commands you want
+                               recognized.
+           dataMapping      -- This is the same as mapping, but for data
+                               objects.  All the same comments apply.
+           commandUpdates   -- This is similar to mapping, but does not take
+                               the place of the defaults entirely.  Instead,
+                               this mapping is applied after the defaults and
+                               updates it with just the commands you want to
+                               modify.
+           dataUpdates      -- This is the same as commandUpdates, but for
+                               data objects.
+
 
            Instance attributes:
 
@@ -249,7 +265,7 @@ class BaseHandler(KickstartObject):
         # it.
         self._writeOrder = {}
 
-        self._registerCommands(mapping=mapping)
+        self._registerCommands(mapping, dataMapping, commandUpdates, dataUpdates)
 
     def __str__(self):
         """Return a string formatted for output to a kickstart file."""
@@ -313,15 +329,22 @@ class BaseHandler(KickstartObject):
             else:
                 self._writeOrder[cmdObj.writePriority] = [cmdObj]
 
-    def _registerCommands(self, mapping={}):
+    def _registerCommands(self, mapping={}, dataMapping={}, commandUpdates={},
+                          dataUpdates={}):
         if mapping == {}:
-            from pykickstart.handlers.control import commandMap, dataMap
+            from pykickstart.handlers.control import commandMap
             cMap = commandMap[self.version]
-            dMap = dataMap[self.version]
         else:
-            from pykickstart.handlers.control import dataMap
             cMap = mapping
+
+        if dataMapping == {}:
+            from pykickstart.handlers.control import dataMap
             dMap = dataMap[self.version]
+        else:
+            dMap = dataMapping
+
+        cMap.update(commandUpdates)
+        dMap.update(dataUpdates)
 
         for (cmdName, cmdClass) in cMap.iteritems():
             # First make sure we haven't instantiated this command handler
-- 
1.6.5.1

_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list

[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux