FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
document-api-python/tableaudocumentapi/datasource.py at master · jacalata/document-api-python · GitHub
jacalata
/
document-api-python
Public
forked from
tableau/document-api-python
Notifications
You must be signed in to change notification settings
Fork
2
Star
1
Code
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
document-api-python
/
tableaudocumentapi
/
datasource.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
318 lines (236 loc) · 10.3 KB
Breadcrumbs
document-api-python
/
tableaudocumentapi
/
datasource.py
Copy path
File metadata and controls
318 lines (236 loc) · 10.3 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
import
collections
import
itertools
import
xml
.
etree
.
ElementTree
as
ET
import
xml
.
sax
.
saxutils
as
sax
from
uuid
import
uuid4
from
tableaudocumentapi
import
Connection
,
xfile
from
tableaudocumentapi
import
Field
from
tableaudocumentapi
.
multilookup_dict
import
MultiLookupDict
from
tableaudocumentapi
.
xfile
import
xml_open
_ColumnObjectReturnTuple
=
collections
.
namedtuple
(
'_ColumnObjectReturnTupleType'
, [
'id'
,
'object'
])
def
_get_metadata_xml_for_field
(
root_xml
,
field_name
):
if
"'"
in
field_name
:
field_name
=
sax
.
escape
(
field_name
, {
"'"
:
"'"
})
xpath
=
u".//metadata-record[@class='column'][local-name='{}']"
.
format
(
field_name
)
return
root_xml
.
find
(
xpath
)
def
_is_used_by_worksheet
(
names
,
field
):
return
any
(
y
for
y
in
names
if
y
in
field
.
worksheets
)
class
FieldDictionary
(
MultiLookupDict
):
def
used_by_sheet
(
self
,
name
):
# If we pass in a string, no need to get complicated, just check to see if name is in
# the field's list of worksheets
if
isinstance
(
name
,
str
):
return
[
x
for
x
in
self
.
values
()
if
name
in
x
.
worksheets
]
# if we pass in a list, we need to check to see if any of the names in the list are in
# the field's list of worksheets
return
[
x
for
x
in
self
.
values
()
if
_is_used_by_worksheet
(
name
,
x
)]
def
_column_object_from_column_xml
(
root_xml
,
column_xml
):
field_object
=
Field
.
from_column_xml
(
column_xml
)
local_name
=
field_object
.
id
metadata_record
=
_get_metadata_xml_for_field
(
root_xml
,
local_name
)
if
metadata_record
is
not
None
:
field_object
.
apply_metadata
(
metadata_record
)
return
_ColumnObjectReturnTuple
(
field_object
.
id
,
field_object
)
def
_column_object_from_metadata_xml
(
metadata_xml
):
field_object
=
Field
.
from_metadata_xml
(
metadata_xml
)
return
_ColumnObjectReturnTuple
(
field_object
.
id
,
field_object
)
def
base36encode
(
number
):
"""Converts an integer into a base36 string."""
ALPHABET
=
"0123456789abcdefghijklmnopqrstuvwxyz"
base36
=
''
sign
=
''
if
number
<
0
:
sign
=
'-'
number
=
-
number
if
0
<=
number
<
len
(
ALPHABET
):
return
sign
+
ALPHABET
[
number
]
while
number
!=
0
:
number
,
i
=
divmod
(
number
,
len
(
ALPHABET
))
base36
=
ALPHABET
[
i
]
+
base36
return
sign
+
base36
def
_make_unique_name
(
dbclass
):
rand_part
=
base36encode
(
uuid4
().
int
)
name
=
dbclass
+
'.'
+
rand_part
return
name
class
ConnectionParser
(
object
):
"""Parser for detecting and extracting connections from differing Tableau file formats."""
def
__init__
(
self
,
datasource_xml
,
version
):
self
.
_dsxml
=
datasource_xml
self
.
_dsversion
=
version
def
_extract_federated_connections
(
self
):
connections
=
list
(
map
(
Connection
,
self
.
_dsxml
.
findall
(
'.//named-connections/named-connection/*'
)))
# 'sqlproxy' connections (Tableau Server Connections) are not embedded into named-connection elements
# extract them manually for now
connections
.
extend
(
map
(
Connection
,
self
.
_dsxml
.
findall
(
"./connection[@class='sqlproxy']"
)))
return
connections
def
_extract_legacy_connection
(
self
):
return
list
(
map
(
Connection
,
self
.
_dsxml
.
findall
(
'connection'
)))
def
get_connections
(
self
):
"""Find and return all connections based on file format version."""
if
float
(
self
.
_dsversion
)
<
10
:
connections
=
self
.
_extract_legacy_connection
()
else
:
connections
=
self
.
_extract_federated_connections
()
return
connections
class
Datasource
(
object
):
"""A class representing Tableau Data Sources, embedded in workbook files or
in TDS files.
"""
def
__init__
(
self
,
dsxml
,
filename
=
None
):
"""
Constructor. Default is to create datasource from xml.
"""
self
.
_filename
=
filename
self
.
_datasourceXML
=
dsxml
self
.
_datasourceTree
=
ET
.
ElementTree
(
self
.
_datasourceXML
)
self
.
_name
=
self
.
_datasourceXML
.
get
(
'name'
)
or
self
.
_datasourceXML
.
get
(
'formatted-name'
)
# TDS files don't have a name attribute
self
.
_version
=
self
.
_datasourceXML
.
get
(
'version'
)
self
.
_caption
=
self
.
_datasourceXML
.
get
(
'caption'
,
''
)
self
.
_connection_parser
=
ConnectionParser
(
self
.
_datasourceXML
,
version
=
self
.
_version
)
self
.
_connections
=
self
.
_connection_parser
.
get_connections
()
self
.
_fields
=
None
@
classmethod
def
from_file
(
cls
,
filename
):
"""Initialize datasource from file (.tds ot .tdsx)"""
dsxml
=
xml_open
(
filename
,
'datasource'
).
getroot
()
return
cls
(
dsxml
,
filename
)
@
classmethod
def
from_connections
(
cls
,
caption
,
connections
):
"""Create a new Data Source give a list of Connections."""
root
=
ET
.
Element
(
'datasource'
,
caption
=
caption
,
version
=
'10.0'
,
inline
=
'true'
)
outer_connection
=
ET
.
SubElement
(
root
,
'connection'
)
outer_connection
.
set
(
'class'
,
'federated'
)
named_conns
=
ET
.
SubElement
(
outer_connection
,
'named-connections'
)
for
conn
in
connections
:
nc
=
ET
.
SubElement
(
named_conns
,
'named-connection'
,
name
=
_make_unique_name
(
conn
.
dbclass
),
caption
=
conn
.
server
)
nc
.
append
(
conn
.
_connectionXML
)
return
cls
(
root
)
def
save
(
self
):
"""
Call finalization code and save file.
Args:
None.
Returns:
Nothing.
"""
# save the file
xfile
.
_save_file
(
self
.
_filename
,
self
.
_datasourceTree
)
def
save_as
(
self
,
new_filename
):
"""
Save our file with the name provided.
Args:
new_filename: New name for the workbook file. String.
Returns:
Nothing.
"""
xfile
.
_save_file
(
self
.
_filename
,
self
.
_datasourceTree
,
new_filename
)
@
property
def
name
(
self
):
return
self
.
_name
@
property
def
version
(
self
):
return
self
.
_version
@
property
def
caption
(
self
):
return
self
.
_caption
@
caption
.
setter
def
caption
(
self
,
value
):
self
.
_datasourceXML
.
set
(
'caption'
,
value
)
self
.
_caption
=
value
@
caption
.
deleter
def
caption
(
self
):
del
self
.
_datasourceXML
.
attrib
[
'caption'
]
self
.
_caption
=
''
@
property
def
connections
(
self
):
return
self
.
_connections
def
clear_repository_location
(
self
):
tag
=
self
.
_datasourceXML
.
find
(
'./repository-location'
)
if
tag
is
not
None
:
self
.
_datasourceXML
.
remove
(
tag
)
@
property
def
fields
(
self
):
if
not
self
.
_fields
:
self
.
_refresh_fields
()
return
self
.
_fields
def
_refresh_fields
(
self
):
self
.
_fields
=
self
.
_get_all_fields
()
def
_get_all_fields
(
self
):
# Some columns are represented by `column` tags and others as `metadata-record` tags
# Find them all and chain them into one dictionary
column_field_objects
=
self
.
_get_column_objects
()
existing_column_fields
=
[
x
.
id
for
x
in
column_field_objects
]
metadata_only_field_objects
=
(
x
for
x
in
self
.
_get_metadata_objects
()
if
x
.
id
not
in
existing_column_fields
)
field_objects
=
itertools
.
chain
(
column_field_objects
,
metadata_only_field_objects
)
return
FieldDictionary
({
k
:
v
for
k
,
v
in
field_objects
})
def
_get_metadata_objects
(
self
):
return
(
_column_object_from_metadata_xml
(
x
)
for
x
in
self
.
_datasourceTree
.
findall
(
".//metadata-record[@class='column']"
))
def
_get_column_objects
(
self
):
return
[
_column_object_from_column_xml
(
self
.
_datasourceTree
,
xml
)
for
xml
in
self
.
_datasourceTree
.
findall
(
'.//column'
)]
def
_get_custom_sql
(
self
):
return
[
qry
for
qry
in
self
.
_datasourceXML
.
iter
(
'relation'
)]
def
add_field
(
self
,
name
,
datatype
,
role
,
field_type
,
caption
):
""" Adds a base field object with the given values.
Args:
name: Name of the new Field. String.
datatype: Datatype of the new field. String.
role: Role of the new field. String.
field_type: Type of the new field. String.
caption: Caption of the new field. String.
Returns:
The new field that was created. Field.
"""
# TODO: A better approach would be to create an empty column and then
# use the input validation from its "Field"-object-representation to set values.
# However, creating an empty column causes errors :(
# If no caption is specified, create one with the same format Tableau does
if
not
caption
:
caption
=
name
.
replace
(
'['
,
''
).
replace
(
']'
,
''
).
title
()
# Create the elements
column
=
Field
.
create_field_xml
(
caption
,
datatype
,
role
,
field_type
,
name
)
self
.
_datasourceTree
.
getroot
().
append
(
column
)
# Refresh fields to reflect changes and return the Field object
self
.
_refresh_fields
()
return
self
.
fields
[
name
]
def
remove_field
(
self
,
field
):
""" Remove a given field
Args:
field: The field to remove. ET.Element
Returns:
None
"""
if
not
field
or
not
isinstance
(
field
,
Field
):
raise
ValueError
(
"Need to supply a field to remove element"
)
self
.
_datasourceTree
.
getroot
().
remove
(
field
.
xml
)
self
.
_refresh_fields
()
###########
# Calculations
###########
@
property
def
calculations
(
self
):
""" Returns all calculated fields.
"""
return
{
k
:
v
for
k
,
v
in
self
.
fields
.
items
()
if
v
.
calculation
is
not
None
}
def
add_calculation
(
self
,
caption
,
formula
,
datatype
,
role
,
type
):
""" Adds a calculated field with the given values.
Args:
caption: Caption of the new calculation. String.
formula: Formula of the new calculation. String.
datatype: Datatype of the new calculation. String.
role: Role of the new calculation. String.
type: Type of the new calculation. String.
Returns:
The new calculated field that was created. Field.
"""
# Dynamically create the name of the field
name
=
'[Calculation_{}]'
.
format
(
str
(
uuid4
().
int
)[:
18
])
field
=
self
.
add_field
(
name
,
datatype
,
role
,
type
,
caption
)
field
.
calculation
=
formula
return
field
Back
|
FazBrowse Home
|
New Git URL