-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkanonymity.go
223 lines (188 loc) · 4.79 KB
/
kanonymity.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
package main
import (
"encoding/csv"
"errors"
"fmt"
"log"
"os"
"reflect"
"sort"
"strconv"
)
var logger = log.New(os.Stdout, "custome log:", log.Lshortfile)
var dataFile = "./data.csv"
var value = 4
func readCSV(file string) [][]string {
csvFile, err := os.Open(file)
if err != nil {
panic(err)
}
defer csvFile.Close()
csvReader := csv.NewReader(csvFile)
rows, err := csvReader.ReadAll()
return rows
}
func writeCSV(data [][]string, file string) error {
csvFile, err := os.Create(file)
if err != nil {
panic(err)
}
defer csvFile.Close()
csvWriter := csv.NewWriter(csvFile)
err = csvWriter.WriteAll(data)
if err != nil {
fmt.Printf("error (%v)", err)
}
return err
}
func dealWithKeyAtributes(data [][]string, k int) [][]string {
for index, row := range data {
if index != 0 {
row[0] = "***"
tmpStr := row[1]
tmpStr1 := string([]byte(tmpStr)[:3])
tmpStr2 := string([]byte(tmpStr)[6:10])
row[1] = tmpStr1 + "****" + tmpStr2
tmpAge := row[3]
temAge1 := string([]byte(tmpAge)[:1])
row[3] = temAge1
}
}
data = dealWithKAnonymity(data, k)
return data
}
func dealWithKAnonymity(data [][]string, k int) [][]string {
var tempList []string
for i, rows := range data {
if i != 0 {
tempList = append(tempList, rows[3])
}
}
var matchKYearList []string
var unmatchKYearList []string
for _, year := range tempList {
tmpYear := year
containResult, _ := Contain(tmpYear, matchKYearList)
if !containResult {
count := 1
for _, newYear := range tempList {
if tmpYear == newYear {
count = count + 1
}
}
if count >= k {
fmt.Println("----------------------")
fmt.Println(count)
fmt.Println(tmpYear)
fmt.Println("----------------------")
matchKYearList = append(matchKYearList, tmpYear)
} else {
containResult, _ = Contain(tmpYear, unmatchKYearList)
if !containResult {
fmt.Println("**********************")
fmt.Println(count)
fmt.Println(tmpYear)
fmt.Println("**********************")
unmatchKYearList = append(unmatchKYearList, tmpYear)
}
}
}
}
sort.Strings(matchKYearList)
sort.Strings(unmatchKYearList)
fmt.Println(matchKYearList)
fmt.Println(unmatchKYearList)
yearMap := make(map[string]string)
for _, tyear := range unmatchKYearList {
if tyear > matchKYearList[len(matchKYearList)-1] {
key, value, err := lessDeal(matchKYearList, tyear)
if err == nil {
yearMap[key] = value
} else {
logger.Println(err)
}
} else {
key, value, err := moreDeal(matchKYearList, tyear)
if err == nil {
yearMap[key] = value
} else {
logger.Println(err)
}
}
}
for i, row := range data {
if i != 0 {
if mapValue, exists := yearMap[row[3]]; exists {
mapValueNum, _ := strconv.Atoi(mapValue)
toYear := strconv.Itoa(mapValueNum + 1)
row[3] = "(" + row[3] + "0 - " + toYear + "0]"
} else {
valueNum, _ := strconv.Atoi(row[3])
toYear := strconv.Itoa(valueNum + 1)
row[3] = "(" + row[3] + "0 - " + toYear + "0]"
}
}
}
if len(unmatchKYearList) > 0 {
logger.Println("There is some iteams are not meet with the K value. They are : ")
logger.Println(unmatchKYearList)
logger.Println("But they are generalized already.")
}
return data
}
func lessDeal(data []string, num string) (string, string, error) {
tmpNum, _ := strconv.Atoi(num)
minNum, _ := strconv.Atoi(data[0])
for i := 0; tmpNum-i >= minNum; i++ {
for _, tmpD := range data {
tmpNumD, _ := strconv.Atoi(tmpD)
if tmpNumD == tmpNum-i {
return tmpD, num, nil
}
}
}
err := errors.New("There is no match number")
return "", "", err
}
func moreDeal(data []string, num string) (string, string, error) {
tmpNum, _ := strconv.Atoi(num)
maxNum, _ := strconv.Atoi(data[len(data)-1])
for i := 0; tmpNum+i <= maxNum; i++ {
for _, tmpD := range data {
tmpNumD, _ := strconv.Atoi(tmpD)
if tmpNumD == tmpNum+i {
return num, tmpD, nil
}
}
}
err := errors.New("There is no match number")
return "", "", err
}
func main() {
// rows := [][]string{
// {"123", "John", "[email protected]", "$141,987"},
// {"456", "Sam", "[email protected]", "$905,234"},
// {"678", "Jane", "[email protected]", "$548,980"},
// }
data := readCSV(dataFile)
// fmt.Println(data)
dataNew := dealWithKeyAtributes(data, value)
writeCSV(dataNew, "./result.csv")
}
// 判断obj是否在target中,target支持的类型arrary,slice,map
func Contain(obj interface{}, target interface{}) (bool, error) {
targetValue := reflect.ValueOf(target)
switch reflect.TypeOf(target).Kind() {
case reflect.Slice, reflect.Array:
for i := 0; i < targetValue.Len(); i++ {
if targetValue.Index(i).Interface() == obj {
return true, nil
}
}
case reflect.Map:
if targetValue.MapIndex(reflect.ValueOf(obj)).IsValid() {
return true, nil
}
}
return false, errors.New("not in array")
}