2012-03-22 11:24:44 -04:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership.
|
|
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
# (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
|
|
|
|
reHREF = re.compile('<a.*?>(.*?)</a>', re.IGNORECASE)
|
|
|
|
|
|
|
|
reMarkup = re.compile('<.*?>')
|
|
|
|
|
|
|
|
def checkSummary(fullPath):
|
|
|
|
printed = False
|
|
|
|
f = open(fullPath)
|
|
|
|
anyMissing = False
|
|
|
|
sawPackage = False
|
|
|
|
desc = []
|
2012-05-01 10:46:20 -04:00
|
|
|
lastHREF = None
|
2012-03-22 11:24:44 -04:00
|
|
|
for line in f.readlines():
|
|
|
|
lineLower = line.strip().lower()
|
|
|
|
if desc is not None:
|
|
|
|
# TODO: also detect missing description in overview-summary
|
|
|
|
if lineLower.startswith('package ') or lineLower.startswith('<h1 title="package" '):
|
|
|
|
sawPackage = True
|
|
|
|
elif sawPackage:
|
|
|
|
if lineLower.startswith('<table ') or lineLower.startswith('<b>see: '):
|
|
|
|
desc = ' '.join(desc)
|
|
|
|
desc = reMarkup.sub(' ', desc)
|
|
|
|
desc = desc.strip()
|
|
|
|
if desc == '':
|
|
|
|
if not printed:
|
|
|
|
print
|
|
|
|
print fullPath
|
|
|
|
printed = True
|
|
|
|
print ' no package description (missing package.html in src?)'
|
|
|
|
anyMissing = True
|
|
|
|
desc = None
|
|
|
|
else:
|
|
|
|
desc.append(lineLower)
|
|
|
|
|
|
|
|
if lineLower in ('<td> </td>', '<td></td>', '<td class="collast"> </td>'):
|
|
|
|
if not printed:
|
|
|
|
print
|
|
|
|
print fullPath
|
|
|
|
printed = True
|
2012-05-01 10:46:20 -04:00
|
|
|
print ' missing: %s' % unescapeHTML(lastHREF)
|
2012-03-22 11:24:44 -04:00
|
|
|
anyMissing = True
|
2012-04-28 11:39:41 -04:00
|
|
|
elif lineLower.find('licensed to the apache software foundation') != -1 or lineLower.find('copyright 2004 the apache software foundation') != -1:
|
|
|
|
if not printed:
|
|
|
|
print
|
|
|
|
print fullPath
|
|
|
|
printed = True
|
2012-05-01 10:46:20 -04:00
|
|
|
print ' license-is-javadoc: %s' % unescapeHTML(lastHREF)
|
2012-04-28 11:39:41 -04:00
|
|
|
anyMissing = True
|
2012-05-01 10:46:20 -04:00
|
|
|
m = reHREF.search(line)
|
|
|
|
if m is not None:
|
|
|
|
lastHREF = m.group(1)
|
2012-03-22 11:24:44 -04:00
|
|
|
if desc is not None and fullPath.find('/overview-summary.html') == -1:
|
|
|
|
raise RuntimeError('BUG: failed to locate description in %s' % fullPath)
|
|
|
|
f.close()
|
|
|
|
return anyMissing
|
|
|
|
|
|
|
|
def unescapeHTML(s):
|
|
|
|
s = s.replace('<', '<')
|
|
|
|
s = s.replace('>', '>')
|
|
|
|
s = s.replace('&', '&')
|
|
|
|
return s
|
|
|
|
|
2012-04-23 16:19:01 -04:00
|
|
|
def checkPackageSummaries(root, level='class'):
|
2012-03-22 11:24:44 -04:00
|
|
|
"""
|
|
|
|
Just checks for blank summary lines in package-summary.html; returns
|
|
|
|
True if there are problems.
|
|
|
|
"""
|
2012-04-23 16:19:01 -04:00
|
|
|
|
|
|
|
if level != 'class' and level != 'package':
|
|
|
|
print 'unsupported level: %s, must be "class" or "package"' % level
|
|
|
|
sys.exit(1)
|
2012-03-22 11:24:44 -04:00
|
|
|
|
|
|
|
#for dirPath, dirNames, fileNames in os.walk('%s/lucene/build/docs/api' % root):
|
|
|
|
|
|
|
|
if False:
|
|
|
|
os.chdir(root)
|
|
|
|
print
|
|
|
|
print 'Run "ant javadocs" > javadocs.log...'
|
|
|
|
if os.system('ant javadocs > javadocs.log 2>&1'):
|
|
|
|
print ' FAILED'
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
anyMissing = False
|
|
|
|
for dirPath, dirNames, fileNames in os.walk(root):
|
|
|
|
|
|
|
|
if dirPath.find('/all/') != -1:
|
|
|
|
# These are dups (this is a bit risk, eg, root IS this /all/ directory..)
|
|
|
|
continue
|
|
|
|
|
|
|
|
if 'package-summary.html' in fileNames:
|
2012-04-23 16:19:01 -04:00
|
|
|
if level != 'package' and checkSummary('%s/package-summary.html' % dirPath):
|
2012-03-22 11:24:44 -04:00
|
|
|
anyMissing = True
|
|
|
|
if 'overview-summary.html' in fileNames:
|
|
|
|
if checkSummary('%s/overview-summary.html' % dirPath):
|
|
|
|
anyMissing = True
|
|
|
|
|
|
|
|
return anyMissing
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2012-04-23 16:19:01 -04:00
|
|
|
if len(sys.argv) < 2 or len(sys.argv) > 3:
|
|
|
|
print 'usage: %s <dir> [class|package]' % sys.argv[0]
|
|
|
|
sys.exit(1)
|
|
|
|
if len(sys.argv) == 2:
|
|
|
|
level = 'class'
|
|
|
|
else:
|
|
|
|
level = sys.argv[2]
|
|
|
|
if checkPackageSummaries(sys.argv[1], level):
|
|
|
|
print
|
|
|
|
print 'Missing javadocs were found!'
|
|
|
|
sys.exit(1)
|
|
|
|
sys.exit(0)
|