From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f50.google.com (mail-wm0-f50.google.com [74.125.82.50]) by dpdk.org (Postfix) with ESMTP id 41D12567A for ; Thu, 1 Dec 2016 17:59:08 +0100 (CET) Received: by mail-wm0-f50.google.com with SMTP id f82so254545817wmf.1 for ; Thu, 01 Dec 2016 08:59:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:subject:date:message-id:in-reply-to:references; bh=JkwpGFGRTYK9bHEkqH0Fa6/E5WKho6OLIoaHvYgRnX0=; b=tSS1pUbJmnuhTd/e8xkW7U6VtQDikDOIMIgCcCTYQ70pRanW/kop1QhPvhxOF/dgt/ GpJEFHfS2vQMPUWLnbCcBYXQXTOe+i8yCgJq21Po4k5gND01teFegEvDifpEsVigDKII McI+bPwIeMzfwuBLD2w6l8KCX5ZRSzrZYXZO/29oITXiQelzbuaPVQupdnfC1NFRjC2W y036LOR3qCibSsrB/Ysb0V9G+dcxewRCUu39zLTRKoR/2C6iHx5nj3U5d60OL6lHa9+Y V6f7nyoEj8bBqvyGRz6UxxvpBQysD95Q9N1YeKaU48J/arinw7D3gKgziMEP0DZmx59/ qdQQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=JkwpGFGRTYK9bHEkqH0Fa6/E5WKho6OLIoaHvYgRnX0=; b=Mx+GWKGRyiVfzcbm0Gb55SdlGZIhKt6ApWeGZFYEh0maZ8vng4XGmyyiZ1cn8ChhWT VYsGs1ocx5QpD9kyPyk0usTUt8mA79TsYyUFqnM91fiRJRaq/rXI+/3w20zOvY468lIJ p3YkiV5rziEv8bvvvuBg03tlbNXwM2dvqR3gazzR/6mNi9mR0tnAXb1ZeEiBjx3pZu+a ibmSg0YHwMeg/OtnDJcI0PpqN2l4eBtLQSB+PPAhE6A/a3UW3tUz1p4GXjPUB39Jm17D z9GoJomFKGfkdGoTIurEk2UHpKPtBNmQDNiLx7fnDr54SG5/mPQiTysttXBdqEy5GoFA cbjw== X-Gm-Message-State: AKaTC01tj7NfzDVY5XJuHUv7SziFednwbvPer5euXDmAC8CCfgq0TYoI+LFsHL5dLovIn71b X-Received: by 10.28.158.82 with SMTP id h79mr11045617wme.19.1480611547695; Thu, 01 Dec 2016 08:59:07 -0800 (PST) Received: from XPS13.localdomain (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id v202sm14107979wmv.8.2016.12.01.08.59.06 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 01 Dec 2016 08:59:07 -0800 (PST) From: Thomas Monjalon To: ci@dpdk.org Date: Thu, 1 Dec 2016 17:58:55 +0100 Message-Id: <1480611541-17439-2-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.7.0 In-Reply-To: <1480611541-17439-1-git-send-email-thomas.monjalon@6wind.com> References: <1480599892-14190-1-git-send-email-thomas.monjalon@6wind.com> <1480611541-17439-1-git-send-email-thomas.monjalon@6wind.com> Subject: [dpdk-ci] [PATCH v3 1/7] tools: add mail filter X-BeenThere: ci@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK CI discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Dec 2016 16:59:08 -0000 This script acts as a pipe which blocks non-patch emails. It can be used as a first filter before processing a patch. Signed-off-by: Thomas Monjalon --- tools/filter-patch-email.sh | 104 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100755 tools/filter-patch-email.sh diff --git a/tools/filter-patch-email.sh b/tools/filter-patch-email.sh new file mode 100755 index 0000000..a59e739 --- /dev/null +++ b/tools/filter-patch-email.sh @@ -0,0 +1,104 @@ +#! /bin/sh -e + +# BSD LICENSE +# +# Copyright 2016 6WIND S.A. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in +# the documentation and/or other materials provided with the +# distribution. +# * Neither the name of 6WIND S.A. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +print_usage () { + cat <<- END_OF_HELP + usage: $(basename $0) < email + + Filter out email from stdin if does not match patch criterias. + END_OF_HELP +} + +while getopts h arg ; do + case $arg in + h ) print_usage ; exit 0 ;; + ? ) print_usage ; exit 1 ;; + esac +done + +if [ -t 0 ] ; then + echo 'nothing to read on stdin' >&2 + exit 0 +fi + +fifo=/tmp/$(basename $0 sh)$$ +mkfifo $fifo +trap "rm -f $fifo" INT EXIT + +parse () +{ + gitsend=false + patchsubject=false + content=false + minusline=false + plusline=false + atline=false + done=false + while IFS= read -r line ; do + printf '%s\n' "$line" + set -- $line + if ! $content ; then + [ "$1" != 'X-Mailer:' -o "$2" != 'git-send-email' ] || gitsend=true + if echo "$line" | grep -qa '^Subject:.*\[PATCH' ; then + subject=$(echo "$line" | sed 's,^Subject:[[:space:]]*,,') + while [ -n "$subject" ] ; do + echo "$subject" | grep -q '^\[' || break + if echo "$subject" | grep -q '^\[PATCH' ; then + patchsubject=true + break + fi + subject=$(echo "$subject" | sed 's,^[^]]*\][[:space:]]*,,') + done + fi + [ -n "$line" ] || content=true + elif ! $done ; then + $gitsend || $patchsubject || break + [ "$1" != '---' ] || minusline=true + [ "$1" != '+++' ] || plusline=true + [ "$1" != '@@' ] || atline=true + if $minusline && $plusline && $atline ; then + echo 1 >$fifo + done=true + fi + fi + done + $done || echo 0 >$fifo + exec >&- +} + +waitparsing () +{ + result=$(cat $fifo) + [ "$result" = 0 ] || cat +} + +parse | waitparsing -- 2.7.0