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
  | 
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
// Use of this source code is governed by the GPL 3.0
package main
import (
	"fmt"
	"io"
)
// generates Append()
// I like these functions the best.
func (msg *MsgName) simpleAppend(w io.Writer, FRUIT, APPLES, APPLE string) string {
	LOCK := msg.getLockname("x")
	funcdef := "func (x *" + FRUIT + ") Append(y *" + APPLE + ")"
	// log.Printf("\t\t(x %s) APPEND(%s)\n", FRUIT, APPLE)
	// append -- no check at all
	fmt.Fprintln(w, "// a Append() shortcut (that does Clone() with a mutex) notsure if it really works")
	fmt.Fprintln(w, "// doesn't allow nil")
	fmt.Fprintln(w, funcdef, "{")
	fmt.Fprintln(w, "	"+LOCK+".Lock()")
	fmt.Fprintln(w, "	defer "+LOCK+".Unlock()")
	fmt.Fprintln(w, "")
	fmt.Fprintln(w, "	// append was doing Clone() and that was poorly named.")
	fmt.Fprintln(w, "	// now autogenpb makes Clone() for that")
	fmt.Fprintln(w, "	if y == nil {")
	fmt.Fprintln(w, "		return")
	fmt.Fprintln(w, "	}")
	fmt.Fprintln(w, "	// z := proto.Clone(y).(*"+APPLE+")")
	fmt.Fprintln(w, "	x."+APPLES+" = append(x."+APPLES+", y)")
	fmt.Fprintln(w, "")
	fmt.Fprintln(w, "	// return z")
	fmt.Fprintln(w, "}")
	fmt.Fprintln(w, "")
	return funcdef
}
// Unique Append. rejects Append() if value is already defined
// compares the field 'COLOR' in the STRUCT with VARNAME
// that's not the right description above, but whatever, you get the idea
func (msg *MsgName) simpleAppendBy(w io.Writer, STRUCT, FUNCNAME, STRUCTVAR, VARNAME, VARTYPE string) string {
	LOCK := msg.getLockname("x")
	funcdef := "func (x *" + STRUCT + ") " + FUNCNAME + "(y *" + VARTYPE + ") bool"
	fmt.Fprintln(w, funcdef, "{")
	fmt.Fprintln(w, "	"+LOCK+".Lock()")
	fmt.Fprintln(w, "	defer "+LOCK+".Unlock()")
	fmt.Fprintln(w, "")
	fmt.Fprintln(w, "	if y == nil {")
	fmt.Fprintln(w, "		return false")
	fmt.Fprintln(w, "	}")
	fmt.Fprintln(w, "	for _, p := range x."+STRUCTVAR+" {")
	fmt.Fprintln(w, "		if p."+VARNAME+" == y."+VARNAME+" {")
	fmt.Fprintln(w, "			return false")
	fmt.Fprintln(w, "		}")
	fmt.Fprintln(w, "	}")
	fmt.Fprintln(w, "")
	fmt.Fprintln(w, "	// append was doing Clone() and that was poorly named.")
	fmt.Fprintln(w, "	// now autogenpb makes Clone() for that")
	fmt.Fprintln(w, "	// x."+STRUCTVAR+" = append(x."+STRUCTVAR+", proto.Clone(y).(*"+VARTYPE+"))")
	fmt.Fprintln(w, "	x."+STRUCTVAR+" = append(x."+STRUCTVAR+", y)")
	fmt.Fprintln(w, "	return true")
	fmt.Fprintln(w, "}")
	fmt.Fprintln(w, "")
	return funcdef
}
// I like these functions the best.
func (msg *MsgName) simpleClone(w io.Writer, FRUIT, APPLES, APPLE string) string {
	LOCK := msg.getLockname("x")
	funcdef := "func (x *" + FRUIT + ") Clone(y *" + APPLE + ") *" + APPLE
	// log.Printf("\t\t(x %s) CLONE(%s)\n", FRUIT, APPLE)
	// append -- no check at all
	fmt.Fprintln(w, "// a Clone() shortcut (with a mutex). notsure if it really works")
	fmt.Fprintln(w, funcdef, "{")
	fmt.Fprintln(w, "	"+LOCK+".Lock()")
	fmt.Fprintln(w, "	defer "+LOCK+".Unlock()")
	fmt.Fprintln(w, "")
	fmt.Fprintln(w, "	if y == nil {")
	fmt.Fprintln(w, "		return y")
	fmt.Fprintln(w, "	}")
	fmt.Fprintln(w, "	z := proto.Clone(y).(*"+APPLE+")")
	fmt.Fprintln(w, "	x."+APPLES+" = append(x."+APPLES+", z)")
	fmt.Fprintln(w, "")
	fmt.Fprintln(w, "	return z")
	fmt.Fprintln(w, "}")
	fmt.Fprintln(w, "")
	return funcdef
}
// Unique Append. rejects Append() if value is already defined
// compares the field 'COLOR' in the STRUCT with VARNAME
// that's not the right description above, but whatever, you get the idea
func (msg *MsgName) simpleCloneBy(w io.Writer, STRUCT, FUNCNAME, STRUCTVAR, VARNAME, VARTYPE string) string {
	LOCK := msg.getLockname("x")
	funcdef := "func (x *" + STRUCT + ") " + FUNCNAME + "(y *" + VARTYPE + ") bool"
	fmt.Fprintln(w, funcdef, "{")
	fmt.Fprintln(w, "	"+LOCK+".Lock()")
	fmt.Fprintln(w, "	defer "+LOCK+".Unlock()")
	fmt.Fprintln(w, "")
	fmt.Fprintln(w, "	if y == nil {")
	fmt.Fprintln(w, "		return false")
	fmt.Fprintln(w, "	}")
	fmt.Fprintln(w, "	for _, p := range x."+STRUCTVAR+" {")
	fmt.Fprintln(w, "		if p."+VARNAME+" == y."+VARNAME+" {")
	fmt.Fprintln(w, "			return false")
	fmt.Fprintln(w, "		}")
	fmt.Fprintln(w, "	}")
	fmt.Fprintln(w, "")
	fmt.Fprintln(w, "	x."+STRUCTVAR+" = append(x."+STRUCTVAR+", proto.Clone(y).(*"+VARTYPE+"))")
	fmt.Fprintln(w, "	return true")
	fmt.Fprintln(w, "}")
	fmt.Fprintln(w, "")
	return funcdef
}
/* FIX THSE and call them Import() ?
func (msg *MsgName) appendUnique(w io.Writer, FRUIT, APPLES, APPLE string, COLORS []string) {
        LOCK := msg.getLockname("x")
        fmt.Fprintln(w, "// enforces "+APPLE+" is unique in "+FRUIT+"."+APPLES)
        fmt.Fprintln(w, "func (x *"+FRUIT+") AppendUnique(newP *"+APPLE+") bool {")
        fmt.Fprintln(w, "       "+LOCK+".Lock()")
        fmt.Fprintln(w, "       defer "+LOCK+".Unlock()")
        fmt.Fprintln(w, "")
        fmt.Fprintln(w, "       for _, p := range x."+APPLES+" {")
        for _, COLOR := range COLORS {
                fmt.Fprintln(w, "               if p."+COLOR+" == newP."+COLOR+" {")
                fmt.Fprintln(w, "                       return false")
                fmt.Fprintln(w, "               }")
        }
        fmt.Fprintln(w, "       }")
        fmt.Fprintln(w, "")
        fmt.Fprintln(w, "       x."+APPLES+" = append(x."+APPLES+", newP)")
        fmt.Fprintln(w, "       return true")
        fmt.Fprintln(w, "}")
        fmt.Fprintln(w, "")
}
func (msg *MsgName) appendUniqueCOLOR(w io.Writer, FRUIT, APPLES, APPLE, COLOR string) {
        LOCK := msg.getLockname("x")
        fmt.Fprintln(w, "// enforces "+APPLE+"."+COLOR+" is unique in "+FRUIT+"."+APPLES)
        fmt.Fprintln(w, "func (x *"+FRUIT+") AppendUnique"+COLOR+"(newP *"+APPLE+") bool {")
        fmt.Fprintln(w, "       "+LOCK+".Lock()")
        fmt.Fprintln(w, "       defer "+LOCK+".Unlock()")
        fmt.Fprintln(w, "")
        fmt.Fprintln(w, "       for _, p := range x."+APPLES+" {")
        fmt.Fprintln(w, "               if p."+COLOR+" == newP."+COLOR+" {")
        fmt.Fprintln(w, "                       return false")
        fmt.Fprintln(w, "               }")
        fmt.Fprintln(w, "       }")
        fmt.Fprintln(w, "")
        fmt.Fprintln(w, "       x."+APPLES+" = append(x."+APPLES+", newP)")
        fmt.Fprintln(w, "       return true")
        fmt.Fprintln(w, "}")
        fmt.Fprintln(w, "")
}
*/
  |