aboutsummaryrefslogtreecommitdiff
path: root/cpe/part.go
diff options
context:
space:
mode:
Diffstat (limited to 'cpe/part.go')
-rw-r--r--cpe/part.go41
1 files changed, 41 insertions, 0 deletions
diff --git a/cpe/part.go b/cpe/part.go
new file mode 100644
index 0000000..ef91f7c
--- /dev/null
+++ b/cpe/part.go
@@ -0,0 +1,41 @@
+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))
+ }
+}