File: xml_generator.py

package info (click to toggle)
libm2k 0.9.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 95,580 kB
  • sloc: xml: 1,611,497; cpp: 16,278; python: 4,181; cs: 516; sh: 471; ansic: 403; makefile: 35
file content (77 lines) | stat: -rw-r--r-- 2,257 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#
# Copyright (c) 2024 Analog Devices Inc.
#
# This file is part of libm2k
# (see http://www.github.com/analogdevicesinc/libm2k).
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 2.1 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#

import argparse
import os
import iio
import sys
from utils import validate_xml_extension


def get_parser() -> argparse.ArgumentParser:
    parser = argparse.ArgumentParser(
        prog="xml_generator",
        description="Save the iio state of an M2K device in xml format",
    )

    parser.add_argument(
        "--uri",
        type=str,
        default="ip:192.168.2.1",
        required=True,
        help="Source of the iio context. Defaults to ip:192.168.2.1",
    )

    parser.add_argument(
        "--filename",
        type=str,
        required=False,
        help="Output XML save file. Defaults to the current firmware version of the board",
    )
    return parser


def main(args):
    try:
        ctx = iio.Context(args.uri)
        if not ctx:
            raise ValueError(f"Failed to create a context from the URI: {args.uri}")

        if not os.path.exists("results"):
            os.makedirs("results", exist_ok=True)

        if args.filename:
            args.filename = validate_xml_extension(args.filename)
        else:
            fw_version = ctx.attrs["fw_version"].replace(".", "_")
            args.filename = f"{fw_version}.xml"

        save_path = os.path.join("results", args.filename)
        with open(save_path, "w") as file:
            file.write(ctx.xml)
    except Exception as e:
        print(e)
        sys.exit(1)


if __name__ == "__main__":
    parser = get_parser()
    args = parser.parse_args()
    main(args)