├── .dockerignore ├── .github ├── Contributing.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── semantic.yml └── workflows │ └── release.yml ├── .gitignore ├── .golangci.yml ├── Attribution.txt ├── CHANGELOG.md ├── Dockerfile ├── GOVERNANCE.md ├── Jenkinsfile ├── LICENSE ├── Makefile ├── OWNERS.md ├── README.md ├── bin └── test-attribution.sh ├── go.mod ├── go.sum ├── images ├── aliases.png ├── consul_alias_folder.png ├── consul_kv_pairs.png ├── mobility-profile.png └── tag-state-diagram.png ├── internal ├── inventory │ ├── app │ │ ├── app.go │ │ ├── controller.go │ │ └── routes.go │ ├── circularbuffer.go │ ├── circularbuffer_test.go │ ├── config.go │ ├── config_test.go │ ├── event.go │ ├── location.go │ ├── mobilityprofile.go │ ├── mobilityprofile_test.go │ ├── reportinfo.go │ ├── statictag.go │ ├── tag.go │ ├── tag_test.go │ ├── tagprocessor.go │ ├── tagprocessor_test.go │ ├── tagstats.go │ └── testdataset_utility_test.go └── llrp │ ├── behavior.go │ ├── behavior_test.go │ ├── device_service.go │ ├── device_service_test.go │ ├── llrp_structs.go │ ├── llrp_structs_test.go │ ├── reader_group.go │ ├── reader_group_test.go │ ├── util.go │ ├── util_test.go │ ├── vendors.go │ └── vendors_string.go ├── main.go ├── openapi └── app-rfid-llrp-inventory.yaml ├── res └── configuration.yaml └── static └── html └── index.html /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/.github/Contributing.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/.golangci.yml -------------------------------------------------------------------------------- /Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/Attribution.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/Dockerfile -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/OWNERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/README.md -------------------------------------------------------------------------------- /bin/test-attribution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/bin/test-attribution.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/go.sum -------------------------------------------------------------------------------- /images/aliases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/images/aliases.png -------------------------------------------------------------------------------- /images/consul_alias_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/images/consul_alias_folder.png -------------------------------------------------------------------------------- /images/consul_kv_pairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/images/consul_kv_pairs.png -------------------------------------------------------------------------------- /images/mobility-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/images/mobility-profile.png -------------------------------------------------------------------------------- /images/tag-state-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/images/tag-state-diagram.png -------------------------------------------------------------------------------- /internal/inventory/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/app/app.go -------------------------------------------------------------------------------- /internal/inventory/app/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/app/controller.go -------------------------------------------------------------------------------- /internal/inventory/app/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/app/routes.go -------------------------------------------------------------------------------- /internal/inventory/circularbuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/circularbuffer.go -------------------------------------------------------------------------------- /internal/inventory/circularbuffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/circularbuffer_test.go -------------------------------------------------------------------------------- /internal/inventory/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/config.go -------------------------------------------------------------------------------- /internal/inventory/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/config_test.go -------------------------------------------------------------------------------- /internal/inventory/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/event.go -------------------------------------------------------------------------------- /internal/inventory/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/location.go -------------------------------------------------------------------------------- /internal/inventory/mobilityprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/mobilityprofile.go -------------------------------------------------------------------------------- /internal/inventory/mobilityprofile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/mobilityprofile_test.go -------------------------------------------------------------------------------- /internal/inventory/reportinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/reportinfo.go -------------------------------------------------------------------------------- /internal/inventory/statictag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/statictag.go -------------------------------------------------------------------------------- /internal/inventory/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/tag.go -------------------------------------------------------------------------------- /internal/inventory/tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/tag_test.go -------------------------------------------------------------------------------- /internal/inventory/tagprocessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/tagprocessor.go -------------------------------------------------------------------------------- /internal/inventory/tagprocessor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/tagprocessor_test.go -------------------------------------------------------------------------------- /internal/inventory/tagstats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/tagstats.go -------------------------------------------------------------------------------- /internal/inventory/testdataset_utility_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/inventory/testdataset_utility_test.go -------------------------------------------------------------------------------- /internal/llrp/behavior.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/llrp/behavior.go -------------------------------------------------------------------------------- /internal/llrp/behavior_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/llrp/behavior_test.go -------------------------------------------------------------------------------- /internal/llrp/device_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/llrp/device_service.go -------------------------------------------------------------------------------- /internal/llrp/device_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/llrp/device_service_test.go -------------------------------------------------------------------------------- /internal/llrp/llrp_structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/llrp/llrp_structs.go -------------------------------------------------------------------------------- /internal/llrp/llrp_structs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/llrp/llrp_structs_test.go -------------------------------------------------------------------------------- /internal/llrp/reader_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/llrp/reader_group.go -------------------------------------------------------------------------------- /internal/llrp/reader_group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/llrp/reader_group_test.go -------------------------------------------------------------------------------- /internal/llrp/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/llrp/util.go -------------------------------------------------------------------------------- /internal/llrp/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/llrp/util_test.go -------------------------------------------------------------------------------- /internal/llrp/vendors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/llrp/vendors.go -------------------------------------------------------------------------------- /internal/llrp/vendors_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/internal/llrp/vendors_string.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/main.go -------------------------------------------------------------------------------- /openapi/app-rfid-llrp-inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/openapi/app-rfid-llrp-inventory.yaml -------------------------------------------------------------------------------- /res/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/res/configuration.yaml -------------------------------------------------------------------------------- /static/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/app-rfid-llrp-inventory/HEAD/static/html/index.html --------------------------------------------------------------------------------