xref: /freebsd/contrib/kyua/admin/check-api-docs.awk (revision b0d29bc47dba79f6f38e67eabadfb4b32ffd9390)
1*b0d29bc4SBrooks Davis#! /bin/sh
2*b0d29bc4SBrooks Davis# Copyright 2015 The Kyua Authors.
3*b0d29bc4SBrooks Davis# All rights reserved.
4*b0d29bc4SBrooks Davis#
5*b0d29bc4SBrooks Davis# Redistribution and use in source and binary forms, with or without
6*b0d29bc4SBrooks Davis# modification, are permitted provided that the following conditions are
7*b0d29bc4SBrooks Davis# met:
8*b0d29bc4SBrooks Davis#
9*b0d29bc4SBrooks Davis# * Redistributions of source code must retain the above copyright
10*b0d29bc4SBrooks Davis#   notice, this list of conditions and the following disclaimer.
11*b0d29bc4SBrooks Davis# * Redistributions in binary form must reproduce the above copyright
12*b0d29bc4SBrooks Davis#   notice, this list of conditions and the following disclaimer in the
13*b0d29bc4SBrooks Davis#   documentation and/or other materials provided with the distribution.
14*b0d29bc4SBrooks Davis# * Neither the name of Google Inc. nor the names of its contributors
15*b0d29bc4SBrooks Davis#   may be used to endorse or promote products derived from this software
16*b0d29bc4SBrooks Davis#   without specific prior written permission.
17*b0d29bc4SBrooks Davis#
18*b0d29bc4SBrooks Davis# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19*b0d29bc4SBrooks Davis# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20*b0d29bc4SBrooks Davis# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21*b0d29bc4SBrooks Davis# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22*b0d29bc4SBrooks Davis# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23*b0d29bc4SBrooks Davis# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24*b0d29bc4SBrooks Davis# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25*b0d29bc4SBrooks Davis# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26*b0d29bc4SBrooks Davis# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27*b0d29bc4SBrooks Davis# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28*b0d29bc4SBrooks Davis# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29*b0d29bc4SBrooks Davis
30*b0d29bc4SBrooks DavisBEGIN {
31*b0d29bc4SBrooks Davis    failed = 0
32*b0d29bc4SBrooks Davis}
33*b0d29bc4SBrooks Davis
34*b0d29bc4SBrooks Davis# Skip empty lines.
35*b0d29bc4SBrooks Davis/^$/ {next}
36*b0d29bc4SBrooks Davis
37*b0d29bc4SBrooks Davis# Skip lines that do not directly reference a file.
38*b0d29bc4SBrooks Davis/^[^\/]/ {next}
39*b0d29bc4SBrooks Davis
40*b0d29bc4SBrooks Davis# Ignore known problems.  As far as I can tell, all the cases listed here are
41*b0d29bc4SBrooks Davis# well-documented in the code but Doxygen fails, for some reason or another, to
42*b0d29bc4SBrooks Davis# properly locate the docstrings.
43*b0d29bc4SBrooks Davis/engine\/kyuafile\.cpp.*no matching class member/ {next}
44*b0d29bc4SBrooks Davis/engine\/scheduler\.hpp.*Member setup\(void\).*friend/ {next}
45*b0d29bc4SBrooks Davis/engine\/scheduler\.hpp.*Member wait_any\(void\)/ {next}
46*b0d29bc4SBrooks Davis/utils\/optional\.ipp.*no matching file member/ {next}
47*b0d29bc4SBrooks Davis/utils\/optional\.hpp.*Member make_optional\(const T &\)/ {next}
48*b0d29bc4SBrooks Davis/utils\/config\/nodes\.hpp.*Member set_lua\(lutok::state &, const int\)/ {next}
49*b0d29bc4SBrooks Davis/utils\/config\/nodes\.hpp.*Member push_lua\(lutok::state &\)/ {next}
50*b0d29bc4SBrooks Davis/utils\/config\/nodes\.hpp.*Member set_string\(const std::string &\)/ {next}
51*b0d29bc4SBrooks Davis/utils\/config\/nodes\.hpp.*Member to_string\(void\)/ {next}
52*b0d29bc4SBrooks Davis/utils\/config\/nodes\.hpp.*Member is_set\(void\)/ {next}
53*b0d29bc4SBrooks Davis/utils\/process\/executor\.hpp.*Member spawn\(Hook.*\)/ {next}
54*b0d29bc4SBrooks Davis/utils\/process\/executor\.hpp.*Member spawn_followup\(Hook.*\)/ {next}
55*b0d29bc4SBrooks Davis/utils\/process\/executor\.hpp.*Member setup\(void\).*friend/ {next}
56*b0d29bc4SBrooks Davis/utils\/signals\/timer\.hpp.*Member detail::invoke_do_fired.*friend/ {next}
57*b0d29bc4SBrooks Davis/utils\/stacktrace_test\.cpp.*no matching class member/ {next}
58*b0d29bc4SBrooks Davis
59*b0d29bc4SBrooks Davis# Dump any other problems and account for the failure.
60*b0d29bc4SBrooks Davis{
61*b0d29bc4SBrooks Davis    failed = 1
62*b0d29bc4SBrooks Davis    print
63*b0d29bc4SBrooks Davis}
64*b0d29bc4SBrooks Davis
65*b0d29bc4SBrooks DavisEND {
66*b0d29bc4SBrooks Davis    if (failed) {
67*b0d29bc4SBrooks Davis        print "ERROR: Unexpected docstring problems encountered"
68*b0d29bc4SBrooks Davis        exit 1
69*b0d29bc4SBrooks Davis    } else {
70*b0d29bc4SBrooks Davis        exit 0
71*b0d29bc4SBrooks Davis    }
72*b0d29bc4SBrooks Davis}
73