aboutsummaryrefslogtreecommitdiff
path: root/internal/cpe/part.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cpe/part.go')
-rw-r--r--internal/cpe/part.go41
1 files changed, 0 insertions, 41 deletions
diff --git a/internal/cpe/part.go b/internal/cpe/part.go
deleted file mode 100644
index ef91f7c..0000000
--- a/internal/cpe/part.go
+++ /dev/null
@@ -1,41 +0,0 @@
-package cpe
-
-//go:generate stringer -linecomment -type=Part
-
-import (
- "fmt"
-)
-
-// CPE part
-type Part byte
-
-const (
- ApplicationPart Part = 'a' // a
- OperatingSystemPart Part = 'o' // o
- HardwarePart Part = 'h' // h
- AnyPart Part = '*' // *
- NAPart Part = '-' // -
-)
-
-// create new part from token
-func newPart(t token) (Part, error) {
- switch t.Type {
- case anyToken:
- return AnyPart, nil
- case naToken:
- return NAPart, nil
- case valToken:
- switch t.Val {
- case "a":
- return ApplicationPart, nil
- case "o":
- return OperatingSystemPart, nil
- case "h":
- return HardwarePart, nil
- default:
- return 0, fmt.Errorf("unknown part: \"%s\"", t.Val)
- }
- default:
- return 0, fmt.Errorf("unknown token type: 0x%02x", byte(t.Type))
- }
-}