source: mainline/uspace/app/tmon/main.c@ 8393c73b

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 8393c73b was 8e16454, checked in by Petr Manek <petr.manek@…>, 8 years ago

tmon: add in-code docs and method docstrings

  • Property mode set to 100644
File size: 4.8 KB
Line 
1/*
2 * Copyright (c) 2017 Petr Manek
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup tmon
30 * @{
31 */
32/**
33 * @file
34 * USB transfer debugging.
35 */
36
37#include <stdio.h>
38#include <macros.h>
39#include "commands.h"
40
41#define NAME "tmon"
42#define INDENT " "
43
44/** Command which is executed by tmon. */
45typedef struct tmon_cmd {
46 /** Unique name, by which the command is executed. */
47 const char *name;
48 /** Description of the command, which is displayed in the usage string. */
49 const char *description;
50 /** Function, which executes the command. Same as int main(int, char**). */
51 int (*action)(int, char **);
52} tmon_cmd_t;
53
54/** Static array of commands supported by tmon. */
55static tmon_cmd_t commands[] = {
56 {
57 .name = "list",
58 .description = "Print a list of connected diagnostic devices.",
59 .action = tmon_list,
60 },
61 {
62 .name = "test-intr-in",
63 .description = "Read from interrupt endpoint as fast as possible.",
64 .action = tmon_burst_intr_in,
65 },
66 {
67 .name = "test-intr-out",
68 .description = "Write to interrupt endpoint as fast as possible.",
69 .action = tmon_burst_intr_out,
70 },
71 {
72 .name = "test-bulk-in",
73 .description = "Read from bulk endpoint as fast as possible.",
74 .action = tmon_burst_bulk_in,
75 },
76 {
77 .name = "test-bulk-out",
78 .description = "Write to bulk endpoint as fast as possible.",
79 .action = tmon_burst_bulk_out,
80 },
81 {
82 .name = "test-isoch-in",
83 .description = "Read from isochronous endpoint as fast as possible.",
84 .action = tmon_burst_isoch_in,
85 },
86 {
87 .name = "test-isoch-out",
88 .description = "Write to isochronous endpoint as fast as possible.",
89 .action = tmon_burst_isoch_out,
90 }
91};
92
93/** Option shown in the usage string. */
94typedef struct tmon_opt {
95 /** Long name of the option without "--" prefix. */
96 const char *long_name;
97 /** Short name of the option without "-" prefix. */
98 char short_name;
99 /** Description of the option displayed in the usage string. */
100 const char *description;
101} tmon_opt_t;
102
103/** Static array of options displayed in the tmon usage string. */
104static tmon_opt_t options[] = {
105 {
106 .long_name = "cycles",
107 .short_name = 'n',
108 .description = "Set the number of read/write cycles."
109 },
110 {
111 .long_name = "size",
112 .short_name = 's',
113 .description = "Set the data size transferred in a single cycle."
114 }
115};
116
117/** Print usage string.
118 * @param[in] app_name Name to print in the invocation example.
119 */
120static void print_usage(char *app_name)
121{
122 puts(NAME ": benchmark USB diagnostic device\n\n");
123 printf("Usage: %s command [device] [options]\n\n", app_name);
124
125 for (unsigned i = 0; i < ARRAY_SIZE(commands); ++i) {
126 printf(INDENT "%s - %s\n", commands[i].name, commands[i].description);
127 }
128
129 puts("\n");
130 for (unsigned i = 0; i < ARRAY_SIZE(options); ++i) {
131 printf(INDENT "-%c --%s\n" INDENT INDENT "%s\n", options[i].short_name, options[i].long_name, options[i].description);
132 }
133
134 puts("\nIf no device is specified, the first device is used provided that it is the only one connected. Otherwise, the command fails.\n\n");
135}
136
137/** Main tmon entry point.
138 * @param[in] argc Number of arguments.
139 * @param[in] argv Argument values. Must point to exactly `argc` strings.
140 *
141 * @return Exit code
142 */
143int main(int argc, char *argv[])
144{
145 // Find a command to execute.
146 tmon_cmd_t *cmd = NULL;
147 for (unsigned i = 0; argc > 1 && i < ARRAY_SIZE(commands); ++i) {
148 if (str_cmp(argv[1], commands[i].name) == 0) {
149 cmd = commands + i;
150 break;
151 }
152 }
153
154 if (!cmd) {
155 print_usage(argv[0]);
156 return -1;
157 }
158
159 return cmd->action(argc - 1, argv + 1);
160}
161
162/** @}
163 */
Note: See TracBrowser for help on using the repository browser.