-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy patharrow.go
144 lines (127 loc) · 4.29 KB
/
arrow.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
package schema
import (
"crypto/sha1"
"time"
"github.com/apache/arrow-go/v18/arrow"
"github.com/apache/arrow-go/v18/arrow/array"
"github.com/apache/arrow-go/v18/arrow/memory"
"github.com/cloudquery/plugin-sdk/v4/types"
"github.com/google/uuid"
)
const (
MetadataUnique = "cq:extension:unique"
MetadataPrimaryKey = "cq:extension:primary_key"
MetadataPrimaryKeyComponent = "cq:extension:primary_key_component"
MetadataConstraintName = "cq:extension:constraint_name"
MetadataIncremental = "cq:extension:incremental"
MetadataTypeSchema = "cq:extension:type_schema"
MetadataTrue = "true"
MetadataFalse = "false"
MetadataTableName = "cq:table_name"
MetadataTableDescription = "cq:table_description"
MetadataTableTitle = "cq:table_title"
MetadataTableDependsOn = "cq:table_depends_on"
MetadataTableIsPaid = "cq:table_paid"
MetadataTablePermissionsNeeded = "cq:table_permissions_needed"
)
type Schemas []*arrow.Schema
func (s Schemas) Len() int {
return len(s)
}
func (s Schemas) SchemaByName(name string) *arrow.Schema {
for _, sc := range s {
tableName, ok := sc.Metadata().GetValue(MetadataTableName)
if !ok {
continue
}
if tableName == name {
return sc
}
}
return nil
}
func hashRecord(record arrow.Record) arrow.Array {
numRows := int(record.NumRows())
fields := record.Schema().Fields()
hashArray := types.NewUUIDBuilder(memory.DefaultAllocator)
hashArray.Reserve(numRows)
for row := range numRows {
rowHash := sha1.New()
for col := 0; col < int(record.NumCols()); col++ {
fieldName := fields[col].Name
rowHash.Write([]byte(fieldName))
value := record.Column(col).ValueStr(row)
_, _ = rowHash.Write([]byte(value))
}
// This part ensures that we conform to the UUID spec
hashArray.Append(uuid.NewSHA1(uuid.NameSpaceURL, rowHash.Sum(nil)))
}
return hashArray.NewArray()
}
func nullUUIDsForRecord(numRows int) arrow.Array {
uuidArray := types.NewUUIDBuilder(memory.DefaultAllocator)
uuidArray.AppendNulls(numRows)
return uuidArray.NewArray()
}
func StringArrayFromValue(value string, nRows int) arrow.Array {
arrayBuilder := array.NewStringBuilder(memory.DefaultAllocator)
arrayBuilder.Reserve(nRows)
for range nRows {
arrayBuilder.AppendString(value)
}
return arrayBuilder.NewArray()
}
func TimestampArrayFromTime(t time.Time, unit arrow.TimeUnit, timeZone string, nRows int) (arrow.Array, error) {
ts, err := arrow.TimestampFromTime(t, unit)
if err != nil {
return nil, err
}
arrayBuilder := array.NewTimestampBuilder(memory.DefaultAllocator, &arrow.TimestampType{Unit: unit, TimeZone: timeZone})
arrayBuilder.Reserve(nRows)
for range nRows {
arrayBuilder.Append(ts)
}
return arrayBuilder.NewArray(), nil
}
func ReplaceFieldInRecord(src arrow.Record, fieldName string, field arrow.Array) (record arrow.Record, err error) {
fieldIndexes := src.Schema().FieldIndices(fieldName)
for i := range fieldIndexes {
record, err = src.SetColumn(fieldIndexes[i], field)
if err != nil {
return nil, err
}
}
return record, nil
}
func AddInternalColumnsToRecord(record arrow.Record, cqClientIDValue string) (arrow.Record, error) {
schema := record.Schema()
nRows := int(record.NumRows())
newFields := []arrow.Field{}
newColumns := []arrow.Array{}
var err error
if !schema.HasField(CqIDColumn.Name) {
cqID := hashRecord(record)
newFields = append(newFields, CqIDColumn.ToArrowField())
newColumns = append(newColumns, cqID)
}
if !schema.HasField(CqParentIDColumn.Name) {
cqParentID := nullUUIDsForRecord(nRows)
newFields = append(newFields, CqParentIDColumn.ToArrowField())
newColumns = append(newColumns, cqParentID)
}
clientIDArray := StringArrayFromValue(cqClientIDValue, nRows)
if !schema.HasField(CqClientIDColumn.Name) {
newFields = append(newFields, CqClientIDColumn.ToArrowField())
newColumns = append(newColumns, clientIDArray)
} else {
record, err = ReplaceFieldInRecord(record, CqClientIDColumn.Name, clientIDArray)
if err != nil {
return nil, err
}
}
allFields := append(schema.Fields(), newFields...)
allColumns := append(record.Columns(), newColumns...)
metadata := schema.Metadata()
newSchema := arrow.NewSchema(allFields, &metadata)
return array.NewRecord(newSchema, allColumns, int64(nRows)), nil
}