profisniff 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #!/usr/bin/env python3
  2. """
  3. #
  4. # PROFIBUS - Telegram sniffer
  5. #
  6. # Copyright (c) 2016 Michael Buesch <m@bues.ch>
  7. #
  8. # Licensed under the terms of the GNU General Public License version 2,
  9. # or (at your option) any later version.
  10. #
  11. """
  12. from pyprofibus.phy_serial import *
  13. from pyprofibus.fdl import *
  14. import sys
  15. import getopt
  16. def usage():
  17. print("profisniff DEVICE")
  18. print("")
  19. print("DEVICE is the PHY device /dev/ttySx")
  20. print("")
  21. print("Options:")
  22. print(" -h|--help Show this help.")
  23. def main():
  24. try:
  25. (opts, args) = getopt.getopt(sys.argv[1:],
  26. "h",
  27. [ "help", ])
  28. except getopt.GetoptError as e:
  29. sys.stderr.write(str(e) + "\n")
  30. usage()
  31. return 1
  32. for (o, v) in opts:
  33. if o in ("-h", "--help"):
  34. usage()
  35. return 0
  36. if len(args) != 1:
  37. usage()
  38. return 1
  39. dev = args[0]
  40. try:
  41. phy = CpPhySerial(dev)
  42. xceiv = FdlTransceiver(phy)
  43. xceiv.setRXFilter(None)
  44. except ProfibusError as e:
  45. sys.stderr.write("ERROR: %s\n" % str(e))
  46. return 1
  47. try:
  48. while True:
  49. try:
  50. ok, telegram = xceiv.poll(-1)
  51. if not ok or not telegram:
  52. continue
  53. print(telegram)
  54. except ProfibusError as e:
  55. sys.stderr.write("ERROR: %s\n" % str(e))
  56. except KeyboardInterrupt:
  57. return 0
  58. return 1
  59. if __name__ == "__main__":
  60. sys.exit(main())