Dictionary or If statements, Jython

前端 未结 5 568
清酒与你
清酒与你 2021-01-06 06:04

I am writing a script at the moment that will grab certain information from HTML using dom4j.

Since Python/Jython does not have a native switch stat

相关标签:
5条回答
  • 2021-01-06 06:12

    Your use of the dictionary is not quite correct. In your implementation, all methods will be called and all the useless one discarded. What is usually done is more something like:

    switch_dict = {'extractTitle': extractTitle, 
                   'extractMetaTags': extractMetaTags}
    switch_dict[type](dom)
    

    And that way is facter and more extensible if you have a large (or variable) number of items.

    0 讨论(0)
  • 2021-01-06 06:24

    With your code you're running your functions all get called.

    handlers = {
    'extractTitle': extractTitle, 
    'extractMetaTags': extractMetaTags
    }
    
    handlers[type](dom)
    

    Would work like your original if code.

    0 讨论(0)
  • 2021-01-06 06:25

    It depends on how many if statements we're talking about; if it's a very small number, then it will be more efficient than using a dictionary.

    However, as always, I strongly advice you to do whatever makes your code look cleaner until experience and profiling tell you that a specific block of code needs to be optimized.

    0 讨论(0)
  • 2021-01-06 06:30

    To avoid specifying the tag and handler in the dict, you could just use a handler class with methods named to match the type. Eg

    class  MyHandler(object):
        def handle_extractTitle(self, dom):
            # do something
    
        def handle_extractMetaTags(self, dom):
            # do something
    
        def handle(self, type, dom):
            func = getattr(self, 'handle_%s' % type, None)
            if func is None:
                raise Exception("No handler for type %r" % type)
            return func(dom)
    

    Usage:

     handler = MyHandler()
     handler.handle('extractTitle', dom)
    

    Update:

    When you have multiple arguments, just change the handle function to take those arguments and pass them through to the function. If you want to make it more generic (so you don't have to change both the handler functions and the handle method when you change the argument signature), you can use the *args and **kwargs syntax to pass through all received arguments. The handle method then becomes:

    def handle(self, type, *args, **kwargs):
        func = getattr(self, 'handle_%s' % type, None)
        if func is None:
            raise Exception("No handler for type %r" % type)
        return func(*args, **kwargs)
    
    0 讨论(0)
  • 2021-01-06 06:39

    The efficiency question is barely relevant. The dictionary lookup is done with a simple hashing technique, the if-statements have to be evaluated one at a time. Dictionaries tend to be quicker.

    I suggest that you actually have polymorphic objects that do extractions from the DOM.

    It's not clear how type gets set, but it sure looks like it might be a family of related objects, not a simple string.

    class ExtractTitle( object ):
        def process( dom ):
            return something
    
    class ExtractMetaTags( object ):
        def process( dom ):
            return something
    

    Instead of setting type="extractTitle", you'd do this.

    type= ExtractTitle() # or ExtractMetaTags() or ExtractWhatever()
    type.process( dom )
    

    Then, you wouldn't be building this particular dictionary or if-statement.

    0 讨论(0)
提交回复
热议问题