Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
olapy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
olapy
Commits
d699346b
Commit
d699346b
authored
Mar 20, 2017
by
mouadh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bugs
parent
07891711
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
64 additions
and
54 deletions
+64
-54
olapy/core/mdx/executor/execute.py
olapy/core/mdx/executor/execute.py
+14
-8
olapy/core/services/xmla_execute_tools.py
olapy/core/services/xmla_execute_tools.py
+50
-46
No files found.
olapy/core/mdx/executor/execute.py
View file @
d699346b
...
...
@@ -41,7 +41,10 @@ class MdxEngine:
cube_name
)
self
.
tables_loaded
=
self
.
_load_tables
()
self
.
tables_names
=
self
.
_get_tables_name
()
# all measures
self
.
measures
=
self
.
_get_measures
()
# default measure is the first one
self
.
selected_measures
=
[
self
.
measures
[
0
]]
@
classmethod
def
get_cubes_names
(
self
):
...
...
@@ -51,8 +54,9 @@ class MdxEngine:
location
=
os
.
path
.
join
(
os
.
path
.
abspath
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
,
".."
,
".."
,
".."
)),
MdxEngine
.
CUBE_FOLDER
)
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
".."
,
".."
,
".."
,
".."
)),
MdxEngine
.
CUBE_FOLDER
)
return
[
file
for
file
in
os
.
listdir
(
location
)
if
os
.
path
.
isdir
(
os
.
path
.
join
(
location
,
file
))
...
...
@@ -67,8 +71,9 @@ class MdxEngine:
'''
return
os
.
path
.
join
(
os
.
path
.
abspath
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'..'
,
".."
,
'..'
,
'..'
)),
self
.
cube_folder
)
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'..'
,
".."
,
'..'
,
'..'
)),
self
.
cube_folder
)
def
_load_tables
(
self
):
"""
...
...
@@ -297,7 +302,7 @@ class MdxEngine:
== tup_att)]
cols = list(itertools.chain.from_iterable(columns_to_keep))
return df[cols + self.measures]
return df[cols + self.
selected_
measures]
def add_missed_column(self, dataframe1, dataframe2):
"""
...
...
@@ -446,7 +451,7 @@ class MdxEngine:
query_axes = self.decorticate_query(self.mdx_query)
if self.change_measures(query_axes['all']):
self.measures = self.change_measures(query_axes['all'])
self.
selected_
measures = self.change_measures(query_axes['all'])
# get only used columns and dimensions for all query
start_df = self.load_star_schema_dataframe
...
...
@@ -499,7 +504,8 @@ class MdxEngine:
self.execute_one_tuple(tupl, start_df,
columns_to_keep.values()))
cols = list(itertools.chain.from_iterable(columns_to_keep.values()))
cols = list(
itertools.chain.from_iterable(columns_to_keep.values()))
# TODO BUG !!! https://github.com/pandas-dev/pandas/issues/15525
# solution 1 .astype(str) ( take a lot of time from execution)
...
...
@@ -522,6 +528,6 @@ class MdxEngine:
else:
return {
'result': start_df[self.measures].sum().to_frame().T,
'result': start_df[self.
selected_
measures].sum().to_frame().T,
'columns_desc': tables_n_columns
}
olapy/core/services/xmla_execute_tools.py
View file @
d699346b
...
...
@@ -102,42 +102,38 @@ class XmlaExecuteTools():
else
:
# ['Facts', 'Amount', 'Amount']
tuples
=
[[[[
self
.
executer
.
facts
]
+
[
mes
]
+
[
mes
]]]
for
mes
in
self
.
executer
.
measures
]
for
mes
in
self
.
executer
.
selected_
measures
]
first_att
=
3
# query with on columns and on rows (without measure)
elif
mdx_execution_result
[
'columns_desc'
][
'columns'
]
and
mdx_execution_result
[
'columns_desc'
][
'rows'
]:
# ['Geography','America']
tuples
=
[
zip
(
*
[[[
key
]
+
list
(
row
)
for
row
in
splited_df
[
key
].
itertuples
(
index
=
False
)]
for
key
in
splited_df
.
keys
()
if
key
is
not
self
.
executer
.
facts
])
zip
(
*
[[[
key
]
+
list
(
row
)
for
row
in
splited_df
[
key
].
itertuples
(
index
=
False
)]
for
key
in
splited_df
.
keys
()
if
key
is
not
self
.
executer
.
facts
])
]
first_att
=
2
# query with on columns and on rows (many measures selected)
else
:
# ['Geography','Amount','America']
tuples
=
[
zip
(
*
[[[
key
]
+
[
mes
]
+
list
(
row
)
for
row
in
splited_df
[
key
].
itertuples
(
index
=
False
)]
for
key
in
splited_df
.
keys
()
if
key
is
not
self
.
executer
.
facts
])
for
mes
in
self
.
executer
.
measures
zip
(
*
[[[
key
]
+
[
mes
]
+
list
(
row
)
for
row
in
splited_df
[
key
].
itertuples
(
index
=
False
)]
for
key
in
splited_df
.
keys
()
if
key
is
not
self
.
executer
.
facts
])
for
mes
in
self
.
executer
.
selected_
measures
]
first_att
=
3
for
tupls
in
itertools
.
chain
(
*
tuples
):
axis0
+=
"<Tuple>
\
n
"
# [u'Geography', u'Amount', 'America']
# tupls[0][1] --> Measure
if
tupls
[
0
][
1
]
in
self
.
executer
.
measures
and
len
(
self
.
executer
.
measures
)
>
1
:
self
.
executer
.
selected_
measures
)
>
1
:
axis0
+=
"""
<Member Hierarchy="[Measures]">
...
...
@@ -150,7 +146,7 @@ class XmlaExecuteTools():
</Member>
"""
.
format
(
tupls
[
0
][
1
])
if
len
(
tupls
)
==
1
:
if
tupls
[
0
][
-
1
]
in
self
.
executer
.
measures
:
axis0
+=
"</Tuple>
\
n
"
continue
...
...
@@ -368,7 +364,9 @@ class XmlaExecuteTools():
to_write
=
"[{0}].[{0}]"
.
format
(
dim_diff
)
if
dim_diff
==
'Measures'
:
# if measures > 1 we don't have to write measure
if
len
(
self
.
executer
.
measures
)
>
1
:
if
self
.
executer
.
facts
in
mdx_execution_result
[
'columns_desc'
][
'all'
]
and
len
(
mdx_execution_result
[
'columns_desc'
][
'all'
][
self
.
executer
.
facts
])
>
1
:
continue
else
:
to_write
=
"[Measures]"
...
...
@@ -425,31 +423,37 @@ class XmlaExecuteTools():
:return:
"""
all_dimensions_names
=
self
.
executer
.
get_all_tables_names
(
ignore_fact
=
True
)
hierarchy_info
=
""
all_dimensions_names
.
append
(
'Measures'
)
for
table_name
in
mdx_execution_result
[
'columns_desc'
][
mdx_query_axis
]:
to_write
=
"[{0}].[{0}]"
.
format
(
table_name
)
# measures must be added to axis0 if measures selected > 1
if
table_name
==
self
.
executer
.
facts
and
len
(
mdx_execution_result
[
'columns_desc'
][
mdx_query_axis
][
table_name
])
>
1
:
to_write
=
"[Measures]"
all_dimensions_names
.
remove
(
'Measures'
)
elif
table_name
==
self
.
executer
.
facts
:
continue
# measure must be written at the top
if
self
.
executer
.
facts
in
mdx_execution_result
[
'columns_desc'
][
mdx_query_axis
].
keys
()
and
len
(
mdx_execution_result
[
'columns_desc'
][
mdx_query_axis
][
self
.
executer
.
facts
])
>
1
:
hierarchy_info
+=
"""
<HierarchyInfo name="{0}">
<UName name="{0}.[MEMBER_UNIQUE_NAME]" type="xs:string"/>
<Caption name="{0}.[MEMBER_CAPTION]" type="xs:string"/>
<LName name="{0}.[LEVEL_UNIQUE_NAME]" type="xs:string"/>
<LNum name="{0}.[LEVEL_NUMBER]" type="xs:int"/>
<DisplayInfo name="{0}.[DISPLAY_INFO]" type="xs:unsignedInt"/>
<PARENT_UNIQUE_NAME name="{0}.[PARENT_UNIQUE_NAME]" type="xs:string"/>
<HIERARCHY_UNIQUE_NAME name="{0}.[HIERARCHY_UNIQUE_NAME]" type="xs:string"/>
<HierarchyInfo name="{0}">
<UName name="{0}.[MEMBER_UNIQUE_NAME]" type="xs:string"/>
<Caption name="{0}.[MEMBER_CAPTION]" type="xs:string"/>
<LName name="{0}.[LEVEL_UNIQUE_NAME]" type="xs:string"/>
<LNum name="{0}.[LEVEL_NUMBER]" type="xs:int"/>
<DisplayInfo name="{0}.[DISPLAY_INFO]" type="xs:unsignedInt"/>
<PARENT_UNIQUE_NAME name="{0}.[PARENT_UNIQUE_NAME]" type="xs:string"/>
<HIERARCHY_UNIQUE_NAME name="{0}.[HIERARCHY_UNIQUE_NAME]" type="xs:string"/>
</HierarchyInfo>
"""
.
format
(
to_write
)
"""
.
format
(
'[Measures]'
)
for
table_name
in
mdx_execution_result
[
'columns_desc'
][
mdx_query_axis
]:
if
table_name
!=
self
.
executer
.
facts
:
hierarchy_info
+=
"""
<HierarchyInfo name="[{0}].[{0}]">
<UName name="[{0}].[{0}].[MEMBER_UNIQUE_NAME]" type="xs:string"/>
<Caption name="[{0}].[{0}].[MEMBER_CAPTION]" type="xs:string"/>
<LName name="[{0}].[{0}].[LEVEL_UNIQUE_NAME]" type="xs:string"/>
<LNum name="[{0}].[{0}].[LEVEL_NUMBER]" type="xs:int"/>
<DisplayInfo name="[{0}].[{0}].[DISPLAY_INFO]" type="xs:unsignedInt"/>
<PARENT_UNIQUE_NAME name="[{0}].[{0}].[PARENT_UNIQUE_NAME]" type="xs:string"/>
<HIERARCHY_UNIQUE_NAME name="[{0}].[{0}].[HIERARCHY_UNIQUE_NAME]" type="xs:string"/>
</HierarchyInfo>
"""
.
format
(
table_name
)
if
hierarchy_info
:
hierarchy_info
=
"""
<AxisInfo name='{0}'>
...
...
@@ -522,12 +526,12 @@ class XmlaExecuteTools():
tuple
=
""
# not used dimensions
for
dim_diff
in
list
(
set
(
self
.
executer
.
get_all_tables_names
(
ignore_fact
=
True
))
-
set
(
[
table_name
for
table_name
in
mdx_execution_result
[
'columns_desc'
][
'all'
]
])):
set
(
self
.
executer
.
get_all_tables_names
(
ignore_fact
=
True
))
-
set
(
[
table_name
for
table_name
in
mdx_execution_result
[
'columns_desc'
][
'all'
]
])):
tuple
+=
"""
<Member Hierarchy="[{0}].[{0}]">
<UName>[{0}].[{0}].[{1}].[{2}]</UName>
...
...
@@ -541,7 +545,7 @@ class XmlaExecuteTools():
self
.
executer
.
tables_loaded
[
dim_diff
].
iloc
[
0
][
0
])
# if we have zero on one only measures used
if
len
(
self
.
executer
.
measures
)
<=
1
:
if
len
(
self
.
executer
.
selected_
measures
)
<=
1
:
tuple
+=
"""
<Member Hierarchy="[Measures]">
<UName>[Measures].[{0}]</UName>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment