Package roswtf :: Module rules
[frames] | no frames]

Source Code for Module roswtf.rules

  1  # Software License Agreement (BSD License) 
  2  # 
  3  # Copyright (c) 2009, Willow Garage, Inc. 
  4  # All rights reserved. 
  5  # 
  6  # Redistribution and use in source and binary forms, with or without 
  7  # modification, are permitted provided that the following conditions 
  8  # are met: 
  9  # 
 10  #  * Redistributions of source code must retain the above copyright 
 11  #    notice, this list of conditions and the following disclaimer. 
 12  #  * Redistributions in binary form must reproduce the above 
 13  #    copyright notice, this list of conditions and the following 
 14  #    disclaimer in the documentation and/or other materials provided 
 15  #    with the distribution. 
 16  #  * Neither the name of Willow Garage, Inc. nor the names of its 
 17  #    contributors may be used to endorse or promote products derived 
 18  #    from this software without specific prior written permission. 
 19  # 
 20  # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
 21  # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
 22  # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
 23  # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 
 24  # COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
 25  # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 
 26  # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
 27  # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
 28  # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
 29  # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 
 30  # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
 31  # POSSIBILITY OF SUCH DAMAGE. 
 32  # 
 33  # Revision $Id$ 
 34   
 35  """ 
 36  Common library for writing rule-style checks for generating warnings 
 37  and errors.  Use of this style streamlines reporting. 
 38   
 39  The pattern for rules is simple: a rule provides a function that 
 40  implements the rule and a format string. If the function returns a 
 41  non-zero value, that value is combined with the format string to 
 42  produced an error reporting string. There are other conveniences as 
 43  well. If the rule returns a list or a tuple, that will be transformed 
 44  into a human-readable list. 
 45   
 46  This library is a layer on top of the base L{WtfWarning} and 
 47  L{WtfError} representation in roswtf.model. 
 48  """ 
 49   
 50  from roswtf.model import WtfWarning, WtfError 
 51   
52 -def _check_rule(rule, ret, ctx, ctx_list, level):
53 if ret: 54 d = ctx.as_dictionary() 55 56 def isstring(s): 57 """Small helper version to check an object is a string in 58 a way that works for both Python 2 and 3 59 """ 60 try: 61 return isinstance(s, basestring) 62 except NameError: 63 return isinstance(s, str)
64 65 if type(ret) in (tuple, list): 66 f_msg = rule[1] 67 ret_str = '\n'.join([" * %s"%r for r in ret]) 68 ctx_list.append(level(f_msg%d + "\n" + ret_str+'\n', f_msg, ret)) 69 elif isstring(ret): 70 f_msg = rule[1] 71 ctx_list.append(level(f_msg%d + ret%d, f_msg, ret)) 72 else: 73 f_msg = rule[1] 74 ctx_list.append(level(f_msg%d, f_msg, ret)) 75
76 -def warning_rule(rule, ret, ctx):
77 """ 78 Check return value of rule and update ctx if rule failed. 79 80 @param rule: Rule/message pair. 81 @type rule: (rule_fn, format_msg) 82 @param ret: return value of rule. If value is non-zero, rule failed 83 @param ret: Any 84 @param ctx: context for which rule failed 85 @param ctx: L{WtfContext} 86 """ 87 _check_rule(rule, ret, ctx, ctx.warnings, WtfWarning)
88
89 -def error_rule(rule, ret, ctx):
90 """ 91 Check return value of rule and update ctx if rule failed. 92 93 @param rule: Rule/message pair. 94 @type rule: (rule_fn, format_msg) 95 @param ret: return value of rule. If value is non-zero, rule failed 96 @type ret: Any 97 @param ctx: context for which rule failed 98 @type ctx: L{WtfContext} 99 """ 100 _check_rule(rule, ret, ctx, ctx.errors, WtfError)
101