-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
mkpdh_defs.go
165 lines (136 loc) · 3.72 KB
/
mkpdh_defs.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//go:build ignore
package main
import (
"bufio"
"bytes"
"flag"
"fmt"
"os"
"os/exec"
"regexp"
"text/template"
)
var (
output = flag.String("output", "defs_pdh_windows.go", "output file")
)
const includes = `
#include <pdhmsg.h>
`
type TemplateParams struct {
Errors []string
}
const fileTemplate = `
// go run mkpdh_defs.go
// MACHINE GENERATED BY THE ABOVE COMMAND; DO NOT EDIT
// +build ignore
package pdh
/*
#include <pdh.h>
#include <pdhmsg.h>
#cgo LDFLAGS: -lpdh
*/
import "C"
type PdhErrno uintptr
// PDH Error Codes
const (
{{- range $i, $errorCode := .Errors }}
{{ $errorCode }} PdhErrno = C.{{ $errorCode }}
{{- end }}
)
var pdhErrors = map[PdhErrno]struct{}{
{{- range $i, $errorCode := .Errors }}
{{ $errorCode }}: struct{}{},
{{- end }}
}
type PdhCounterFormat uint32
// PDH Counter Formats
const (
// PdhFmtDouble returns data as a double-precision floating point real.
PdhFmtDouble PdhCounterFormat = C.PDH_FMT_DOUBLE
// PdhFmtLarge returns data as a 64-bit integer.
PdhFmtLarge PdhCounterFormat = C.PDH_FMT_LARGE
// PdhFmtLong returns data as a long integer.
PdhFmtLong PdhCounterFormat = C.PDH_FMT_LONG
// Use bitwise operators to combine these values with the counter type to scale the value.
// Do not apply the counter's default scaling factor.
PdhFmtNoScale PdhCounterFormat = C.PDH_FMT_NOSCALE
// Counter values greater than 100 (for example, counter values measuring
// the processor load on multiprocessor computers) will not be reset to 100.
// The default behavior is that counter values are capped at a value of 100.
PdhFmtNoCap100 PdhCounterFormat = C.PDH_FMT_NOCAP100
// Multiply the actual value by 1,000.
PdhFmtMultiply1000 PdhCounterFormat = C.PDH_FMT_1000
)
`
var (
tmpl = template.Must(template.New("defs_pdh_windows").Parse(fileTemplate))
pdhErrorRegex = regexp.MustCompile(`^#define (PDH_[\w_]+)`)
)
func main() {
errors, err := getErrorDefines()
if err != nil {
fmt.Fprintln(os.Stderr, "error:", err)
os.Exit(1)
}
t := TemplateParams{
Errors: errors,
}
if err := writeOutput(t); err != nil {
fmt.Fprintln(os.Stderr, "error:", err)
os.Exit(1)
}
if err := gofmtOutput(); err != nil {
fmt.Fprintln(os.Stderr, "error:", err)
os.Exit(1)
}
}
func getErrorDefines() ([]string, error) {
cmd := exec.Command("gcc", "-E", "-dD", "-")
cmd.Stdin = bytes.NewBuffer([]byte(includes))
out, err := cmd.Output()
if err != nil {
return nil, err
}
var errors []string
s := bufio.NewScanner(bytes.NewBuffer(out))
for s.Scan() {
line := s.Text()
matches := pdhErrorRegex.FindStringSubmatch(line)
if len(matches) > 1 {
errors = append(errors, matches[1])
}
}
return errors, nil
}
func writeOutput(p TemplateParams) error {
// Create output file.
f, err := os.Create(*output)
if err != nil {
return err
}
defer f.Close()
if err := tmpl.Execute(f, p); err != nil {
return err
}
return nil
}
func gofmtOutput() error {
_, err := exec.Command("gofmt", "-w", *output).Output()
return err
}