videohubctrl can be used to control Blackmagic Design Videohub SDI router device over the network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cmd.h 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * === Commands processing ===
  3. *
  4. * Blackmagic Design Videohub control application
  5. * Copyright (C) 2014 Unix Solutions Ltd.
  6. * Written by Georgi Chorbadzhiyski
  7. *
  8. * Released under MIT license.
  9. * See LICENSE-MIT.txt for license terms.
  10. *
  11. */
  12. #ifndef CMD_H
  13. #define CMD_H
  14. #include <stdbool.h>
  15. #define NUM_COMMANDS 11
  16. enum vcmd {
  17. CMD_PROTOCOL_PREAMBLE,
  18. CMD_VIDEOHUB_DEVICE,
  19. CMD_INPUT_LABELS,
  20. CMD_OUTPUT_LABELS,
  21. CMD_VIDEO_OUTPUT_LOCKS,
  22. CMD_VIDEO_OUTPUT_ROUTING,
  23. CMD_VIDEO_INPUT_STATUS,
  24. CMD_VIDEO_OUTPUT_STATUS,
  25. CMD_PING,
  26. CMD_ACK,
  27. CMD_NAK = (NUM_COMMANDS - 1),
  28. };
  29. enum cmd_flags {
  30. PARSE_NONE, /* The result if this command needs no parsing */
  31. PARSE_CUSTOM, /* Use custom parser for this command */
  32. PARSE_LABEL, /* Parse [port_num] [port_text] */
  33. PARSE_STATUS, /* Parse [port_num] [port_status] */
  34. PARSE_ROUTE, /* Parse [port_num] [dest_port] */
  35. PARSE_LOCK, /* Parse [port_num] [dest_slot] */
  36. };
  37. struct videohub_commands {
  38. enum vcmd cmd;
  39. enum cmd_flags type;
  40. size_t ports1;
  41. size_t ports2;
  42. const char *port_id1;
  43. const char *port_id2;
  44. };
  45. extern struct videohub_commands videohub_commands[NUM_COMMANDS];
  46. bool parse_command(struct videohub_data *d, char *cmd);
  47. int parse_text_buffer(struct videohub_data *data, char *cmd_buffer);
  48. struct vcmd_entry {
  49. struct videohub_commands *cmd;
  50. char *param1;
  51. char *param2;
  52. unsigned int port_no1;
  53. unsigned int port_no2;
  54. bool do_lock;
  55. enum port_lock lock;
  56. };
  57. void prepare_cmd_entry(struct videohub_data *d, struct vcmd_entry *e);
  58. void format_cmd_text(struct vcmd_entry *e, char *buf, unsigned int bufsz);
  59. void show_cmd(struct videohub_data *d, struct vcmd_entry *e);
  60. #endif