Skip to content

Golang native implementation of the udev library

License

Notifications You must be signed in to change notification settings

qubesome/libudev

 
 

Repository files navigation

libudev

Golang native implementation Udev library

GoDoc OpenSSF Scorecard

Installation

go get github.com/qubesome/libudev

Usage

Scanning devices

sc := libudev.NewScanner()
err, devices := s.ScanDevices()

Filtering devices

m := matcher.NewMatcher()
m.SetStrategy(matcher.StrategyOr)
m.AddRule(matcher.NewRuleAttr("dev", "189:133"))
m.AddRule(matcher.NewRuleEnv("DEVNAME", "usb/lp0"))

filteredDevices := m.Match(devices)

Getting parent device

if device.Parent != nil {
    fmt.Printf("%s\n", device.Parent.Devpath)
}

Getting children devices

fmt.Printf("Count children devices %d\n", len(device.Children))

Features

  • 100% Native code
  • Without external dependencies
  • Code is covered by tests

Documentation

You can read package documentation here or read tests.

Testing

Unit-tests:

make test

Contributing

  • Fork
  • Write code
  • Run unit test: make test
  • Run format checks: make verify
  • Commit changes
  • Create pull-request

About

Golang native implementation of the udev library

Topics

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 96.0%
  • Makefile 4.0%