Newer
Older
#!/usr/bin/python
"""\
@file template_verifier.py
@brief Message template compatibility verifier.
Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
$License$
"""
"""template_verifier is a script which will compare the
current repository message template with the "master" message template, accessible
via http://secondlife.com/app/message_template/master_message_template.msg
If [FILE] is specified, it will be checked against the master template.
If [FILE] [FILE] is specified, two local files will be checked against
each other.
"""
from os.path import realpath, dirname, join, exists
setup_path = join(dirname(realpath(__file__)), "setup-path.py")
if exists(setup_path):
execfile(setup_path)
import optparse
import os
import sys
import urllib
from indra.ipc import compatibility
Ryan Williams
committed
from indra.ipc import tokenstream
def getstatusall(command):
""" Like commands.getstatusoutput, but returns stdout and
stderr separately(to get around "killed by signal 15" getting
included as part of the file). Also, works on Windows."""
(input, out, err) = os.popen3(command, 't')
Ryan Williams
committed
status = input.close() # send no input to the command
output = out.read()
error = err.read()
Ryan Williams
committed
status = out.close()
status = err.close() # the status comes from the *last* pipe that is closed
return status, output, error
def getstatusoutput(command):
status, output, error = getstatusall(command)
return status, output
Ryan Williams
committed
def die(msg):
print >>sys.stderr, msg
sys.exit(1)
MESSAGE_TEMPLATE = 'message_template.msg'
PRODUCTION_ACCEPTABLE = (compatibility.Same, compatibility.Newer)
DEVELOPMENT_ACCEPTABLE = (
compatibility.Same, compatibility.Newer,
compatibility.Older, compatibility.Mixed)
Ryan Williams
committed
MAX_MASTER_AGE = 60 * 60 * 4 # refresh master cache every 4 hours
Ryan Williams
committed
Ryan Williams
committed
def retry(times, function, *args, **kwargs):
for i in range(times):
try:
return function(*args, **kwargs)
except Exception, e:
if i == times - 1:
raise e # we retried all the times we could
def compare(base_parsed, current_parsed, mode):
"""Compare the current template against the base template using the given
'mode' strictness:
development: Allows Same, Newer, Older, and Mixed
production: Allows only Same or Newer
Print out information about whether the current template is compatible
with the base template.
Returns a tuple of (bool, Compatibility)
Return True if they are compatible in this mode, False if not.
"""
Ryan Williams
committed
Ryan Williams
committed
compat = current_parsed.compatibleWithBase(base_parsed)
if mode == 'production':
acceptable = PRODUCTION_ACCEPTABLE
else:
acceptable = DEVELOPMENT_ACCEPTABLE
if type(compat) in acceptable:
return True, compat
return False, compat
Ryan Williams
committed
def fetch(url):
Ryan Williams
committed
if url.startswith('file://'):
# just open the file directly because urllib is dumb about these things
file_name = url[len('file://'):]
return open(file_name).read()
else:
# *FIX: this doesn't throw an exception for a 404, and oddly enough the sl.com 404 page actually gets parsed successfully
return ''.join(urllib.urlopen(url).readlines())
Ryan Williams
committed
def cache_master(master_url):
"""Using the url for the master, updates the local cache, and returns an url to the local cache."""
master_cache = local_master_cache_filename()
master_cache_url = 'file://' + master_cache
# decide whether to refresh the master cache based on its age
import time
if (os.path.exists(master_cache)
and time.time() - os.path.getmtime(master_cache) < MAX_MASTER_AGE):
return master_cache_url # our cache is fresh
# new master doesn't exist or isn't fresh
print "Refreshing master cache from %s" % master_url
Ryan Williams
committed
def get_and_test_master():
Ryan Williams
committed
new_master_contents = fetch(master_url)
Ryan Williams
committed
llmessage.parseTemplateString(new_master_contents)
return new_master_contents
try:
new_master_contents = retry(3, get_and_test_master)
Ryan Williams
committed
except IOError, e:
# the refresh failed, so we should just soldier on
print "WARNING: unable to download new master, probably due to network error. Your message template compatibility may be suspect."
Ryan Williams
committed
print "Cause: %s" % e
Ryan Williams
committed
return master_cache_url
Ryan Williams
committed
try:
mc = open(master_cache, 'wb')
mc.write(new_master_contents)
mc.close()
except IOError, e:
print "WARNING: Unable to write master message template to %s, proceeding without cache." % master_cache
print "Cause: %s" % e
return master_url
Ryan Williams
committed
return master_cache_url
def local_template_filename():
"""Returns the message template's default location relative to template_verifier.py:
./messages/message_template.msg."""
d = os.path.dirname(os.path.realpath(__file__))
return os.path.join(d, 'messages', MESSAGE_TEMPLATE)
Ryan Williams
committed
def local_master_cache_filename():
Ryan Williams
committed
"""Returns the location of the master template cache (which is in the system tempdir)
<temp_dir>/master_message_template_cache.msg"""
import tempfile
d = tempfile.gettempdir()
return os.path.join(d, 'master_message_template_cache.msg')
Ryan Williams
committed
def run(sysargs):
parser = optparse.OptionParser(
usage="usage: %prog [FILE] [FILE]",
description=__doc__)
parser.add_option(
'-m', '--mode', type='string', dest='mode',
default='development',
help="""[development|production] The strictness mode to use
while checking the template; see the wiki page for details about
what is allowed and disallowed by each mode:
http://wiki.secondlife.com/wiki/Template_verifier.py
""")
parser.add_option(
'-u', '--master_url', type='string', dest='master_url',
default='http://secondlife.com/app/message_template/master_message_template.msg',
help="""The url of the master message template.""")
Ryan Williams
committed
parser.add_option(
'-c', '--cache_master', action='store_true', dest='cache_master',
default=False, help="""Set to true to attempt use local cached copy of the master template.""")
options, args = parser.parse_args(sysargs)
Ryan Williams
committed
if options.mode == 'production':
options.cache_master = False
# both current and master supplied in positional params
if len(args) == 2:
master_filename, current_filename = args
Ryan Williams
committed
print "master:", master_filename
print "current:", current_filename
Ryan Williams
committed
master_url = 'file://%s' % master_filename
current_url = 'file://%s' % current_filename
# only current supplied in positional param
elif len(args) == 1:
Ryan Williams
committed
master_url = None
current_filename = args[0]
Ryan Williams
committed
print "master:", options.master_url
print "current:", current_filename
Ryan Williams
committed
current_url = 'file://%s' % current_filename
# nothing specified, use defaults for everything
elif len(args) == 0:
Ryan Williams
committed
master_url = None
current_url = None
else:
die("Too many arguments")
Ryan Williams
committed
if master_url is None:
master_url = options.master_url
if current_url is None:
current_filename = local_template_filename()
Ryan Williams
committed
print "master:", options.master_url
print "current:", current_filename
Ryan Williams
committed
current_url = 'file://%s' % current_filename
Ryan Williams
committed
# retrieve the contents of the local template and check for syntax
current = fetch(current_url)
current_parsed = llmessage.parseTemplateString(current)
Ryan Williams
committed
if options.cache_master:
# optionally return a url to a locally-cached master so we don't hit the network all the time
master_url = cache_master(master_url)
Ryan Williams
committed
def parse_master_url():
master = fetch(master_url)
return llmessage.parseTemplateString(master)
Ryan Williams
committed
try:
Ryan Williams
committed
master_parsed = retry(3, parse_master_url)
except (IOError, tokenstream.ParseError), e:
Ryan Williams
committed
if options.mode == 'production':
raise e
else:
Ryan Williams
committed
print "WARNING: problems retrieving the master from %s." % master_url
print "Syntax-checking the local template ONLY, no compatibility check is being run."
print "Cause: %s\n\n" % e
Ryan Williams
committed
return 0
acceptable, compat = compare(
Ryan Williams
committed
master_parsed, current_parsed, options.mode)
def explain(header, compat):
print header
# indent compatibility explanation
print '\n\t'.join(compat.explain().split('\n'))
if acceptable:
explain("--- PASS ---", compat)
else:
explain("*** FAIL ***", compat)
return 1
if __name__ == '__main__':
sys.exit(run(sys.argv[1:]))