|
| 1 | +#!/usr/bin/python3 |
| 2 | + |
| 3 | +# ******************************************************************************* |
| 4 | +# Copyright 2024 Arm Limited and affiliates. |
| 5 | +# SPDX-License-Identifier: Apache-2.0 |
| 6 | +# |
| 7 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | +# you may not use this file except in compliance with the License. |
| 9 | +# You may obtain a copy of the License at |
| 10 | +# |
| 11 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +# |
| 13 | +# Unless required by applicable law or agreed to in writing, software |
| 14 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | +# See the License for the specific language governing permissions and |
| 17 | +# limitations under the License. |
| 18 | +# ******************************************************************************* |
| 19 | + |
| 20 | +import argparse |
| 21 | + |
| 22 | +# * Ensuring the first word ends in a colon. |
| 23 | +# TODO: Limit the first word to an acceptable list of tags. |
| 24 | +def __firstWordCheck(msg: str): |
| 25 | + firstWord = msg.partition(" ")[0] |
| 26 | + if not firstWord.endswith(":"): |
| 27 | + raise ValueError(f"First word must end in a colon. Is: {firstWord}") |
| 28 | + |
| 29 | + |
| 30 | +# * Ensuring a character limit for the first line. |
| 31 | +def __numCharacterCheck(msg: str): |
| 32 | + summary = msg.partition("\n")[0] |
| 33 | + msgSummaryLen = len(summary) |
| 34 | + if msgSummaryLen >= 72: |
| 35 | + raise ValueError(f"Message summary must be less than 72. Is: {msgSummaryLen}") |
| 36 | + |
| 37 | + |
| 38 | +def main(): |
| 39 | + parser = argparse.ArgumentParser() |
| 40 | + parser.add_argument("msg", help="Commit message to check.") |
| 41 | + args = parser.parse_args() |
| 42 | + msg: str = args.msg |
| 43 | + print(f"msg: {msg}") |
| 44 | + __numCharacterCheck(msg) |
| 45 | + __firstWordCheck(msg) |
| 46 | + |
| 47 | +if __name__ == "__main__": |
| 48 | + main() |
0 commit comments