-
-
Notifications
You must be signed in to change notification settings - Fork 516
/
Copy pathinternals_generate.go
202 lines (187 loc) · 5.25 KB
/
internals_generate.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
// Copyright (c) 2025 Tulir Asokan
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//go:build ignore
package main
import (
"fmt"
"go/ast"
"go/parser"
"go/token"
"os"
"strings"
"go.mau.fi/util/exerrors"
)
const header = `// GENERATED BY internals_generate.go; DO NOT EDIT
//go:generate go run internals_generate.go
//go:generate goimports -local go.mau.fi/whatsmeow -w internals.go
package whatsmeow
`
const postImportHeader = `
type DangerousInternalClient struct {
c *Client
}
// DangerousInternals allows access to all unexported methods in Client.
//
// Deprecated: dangerous
func (cli *Client) DangerousInternals() *DangerousInternalClient {
return &DangerousInternalClient{cli}
}
type DangerousInfoQuery = infoQuery
type DangerousInfoQueryType = infoQueryType
`
func getTypeName(expr ast.Expr) string {
switch e := expr.(type) {
case *ast.Ident:
return e.Name
case *ast.StarExpr:
return "*" + getTypeName(e.X)
case *ast.ArrayType:
return "[]" + getTypeName(e.Elt)
case *ast.MapType:
return fmt.Sprintf("map[%s]%s", getTypeName(e.Key), getTypeName(e.Value))
case *ast.ChanType:
if e.Dir == ast.SEND {
return fmt.Sprintf("chan<- %s", getTypeName(e.Value))
} else if e.Dir == ast.RECV {
return fmt.Sprintf("<-chan %s", getTypeName(e.Value))
}
return fmt.Sprintf("chan %s", getTypeName(e.Value))
case *ast.FuncType:
var params []string
for _, param := range e.Params.List {
params = append(params, getTypeName(param.Type))
}
var results []string
if e.Results != nil {
for _, result := range e.Results.List {
results = append(results, getTypeName(result.Type))
}
}
return fmt.Sprintf("func(%s) %s", strings.Join(params, ", "), strings.Join(results, ", "))
case *ast.SelectorExpr:
return fmt.Sprintf("%s.%s", getTypeName(e.X), e.Sel.Name)
case *ast.StructType:
// This isn't technically correct, but struct literals shouldn't be used for anything else
return "struct{}"
case *ast.Ellipsis:
return fmt.Sprintf("...%s", e.Elt)
default:
panic(fmt.Errorf("unknown type %T", e))
}
}
var write func(str string)
var writef func(format string, args ...any)
func main() {
fset := token.NewFileSet()
fileNames := []string{
"appstate.go", "armadillomessage.go", "broadcast.go", "call.go", "client.go",
"connectionevents.go", "download.go", "download-to-file.go", "group.go", "handshake.go",
"keepalive.go", "mediaconn.go", "mediaretry.go", "message.go", "msgsecret.go",
"newsletter.go", "notification.go", "pair-code.go", "pair.go", "prekeys.go",
"presence.go", "privacysettings.go", "push.go", "qrchan.go", "receipt.go", "request.go",
"retry.go", "sendfb.go", "send.go", "upload.go", "user.go",
}
files := make([]*ast.File, len(fileNames))
for i, name := range fileNames {
files[i] = exerrors.Must(parser.ParseFile(fset, name, nil, parser.SkipObjectResolution))
}
file := exerrors.Must(os.OpenFile("internals.go", os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0644))
write = func(str string) {
exerrors.Must(file.WriteString(str))
}
writef = func(format string, args ...any) {
exerrors.Must(fmt.Fprintf(file, format, args...))
}
write(header)
write("import (\n")
for _, i := range files[0].Imports {
write("\t")
if i.Name != nil {
writef("%s ", i.Name.Name)
}
writef("%s\n", i.Path.Value)
}
write(")\n")
write(postImportHeader)
for _, f := range files {
processFile(f)
}
exerrors.PanicIfNotNil(file.Close())
}
func processFile(f *ast.File) {
ast.Inspect(f, func(node ast.Node) (retVal bool) {
retVal = true
funcDecl, ok := node.(*ast.FuncDecl)
if !ok || funcDecl.Name.IsExported() {
return
}
if funcDecl.Recv == nil || len(funcDecl.Recv.List) == 0 || len(funcDecl.Recv.List[0].Names) == 0 ||
funcDecl.Recv.List[0].Names[0].Name != "cli" {
return
}
writef("\nfunc (int *DangerousInternalClient) %s%s(", strings.ToUpper(funcDecl.Name.Name[0:1]), funcDecl.Name.Name[1:])
for i, param := range funcDecl.Type.Params.List {
if i != 0 {
write(", ")
}
for j, name := range param.Names {
if j != 0 {
write(", ")
}
write(name.Name)
}
if len(param.Names) > 0 {
write(" ")
}
write(getTypeName(param.Type))
}
write(") ")
if funcDecl.Type.Results != nil && len(funcDecl.Type.Results.List) > 0 {
needsParentheses := len(funcDecl.Type.Results.List) > 1 || len(funcDecl.Type.Results.List[0].Names) > 0
if needsParentheses {
write("(")
}
for i, result := range funcDecl.Type.Results.List {
if i != 0 {
write(", ")
}
for j, name := range result.Names {
if j != 0 {
write(", ")
}
write(name.Name)
}
if len(result.Names) > 0 {
write(" ")
}
write(getTypeName(result.Type))
}
if needsParentheses {
write(")")
}
write(" ")
}
write("{\n\t")
if funcDecl.Type.Results != nil {
write("return ")
}
writef("int.c.%s(", funcDecl.Name.Name)
for i, param := range funcDecl.Type.Params.List {
for j, name := range param.Names {
if i != 0 || j != 0 {
write(", ")
}
write(name.Name)
_, isEllipsis := param.Type.(*ast.Ellipsis)
if isEllipsis {
write("...")
}
}
}
write(")\n}\n")
return
})
}