mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-10-29 05:40:27 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| #
 | |
| # Doxygen input filter, which tries to fix documentation of callback
 | |
| # method macros.
 | |
| #
 | |
| # This is used for .h files.
 | |
| #
 | |
| 
 | |
| FILENAME="$1"
 | |
| 
 | |
| # Add \ingroup commands for the file, for each \addgroup in it
 | |
| BASEFILE=$(echo "$FILENAME" | sed -e 's@.*src/pipewire/@pipewire/@; s@.*spa/include/spa/@spa/@; s@.*src/test/@test/@;')
 | |
| 
 | |
| printf "/** \\\\file\n\`%s\`\n" "$BASEFILE"
 | |
| sed -n -e '/.*\\addtogroup [a-zA-Z0-9_].*/ { s/.*addtogroup /\\ingroup /; p; }' < "$FILENAME" | sort | uniq
 | |
| echo " */"
 | |
| 
 | |
| # Add \sa and \copydoc for (struct *methods) callback macros.
 | |
| # #define pw_core_add_listener(...) pw_core_method(c,add_listener,...) -> add \sa and \copydoc
 | |
| # #define spa_system_read(...) spa_system_method_r(c,read,...) -> add \sa and \copydoc
 | |
| #
 | |
| # Also:
 | |
| # Ensure all macros are included (also those defined inside a struct),
 | |
| # by adding /** \ingroup XXX */ before each definition.
 | |
| # Also ensure all opaque structs get included.
 | |
| # Strip SPA_FORMAT_ARG_FUNC(1) etc. things that confuse doxygen
 | |
| sed -e 's@^\(#define .*[[:space:]]\)\(.*_method\)\((.,[[:space:]]*\)\([a-z_]\+\)\(.*)[[:space:]]*\)$@\1\2\3\4\5 /**< \\copydoc \2s.\4\n\n\\sa \2s.\4 */@;' \
 | |
|     -e 's@^\(#define .*[[:space:]]\)\(.*_method\)\(_[rvs](.,[[:space:]]*\)\([a-z_]\+\)\(.*)[[:space:]]*\)$@\1\2\3\4\5 /**< \\copydoc \2s.\4\n\n\\sa \2s.\4 */@;' \
 | |
|     -e '/\\addtogroup/ { h; s@.*\\addtogroup \(.*\).*@/** \\ingroup \1 */@; x; }' \
 | |
|     -e '/#define \(PW\|SPA\)_[A-Z].*[^\\][ ]*$/ { x; p; x; }' \
 | |
|     -e 's@^\([ ]*struct \)\([a-zA-Z0-9_]*\)\(;.*\)$@/** \\struct \2 */\n\1\2\3@;' \
 | |
|     -e 's@^[ ]*SPA_FORMAT_ARG_FUNC([0-9, ]*)@@;' \
 | |
|     -e 's@[ ]*SPA_PRINTF_FUNC([0-9, ]*);@;@;' \
 | |
|     -e 's@^[ ]*SPA_WARN_UNUSED_RESULT@ @;' \
 | |
|     -e 's@ SPA_SENTINEL;@;@;' \
 | |
|     -e 's@ SPA_UNUSED,@,@;' \
 | |
| < "$FILENAME"
 | 
