Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
7c295a5c
Commit
7c295a5c
authored
1 year ago
by
Adam Laskowski
Browse files
Options
Downloads
Patches
Plain Diff
SSDM-55: Reverted changes to PropertiesBatchManager
parent
20f2e8d3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!40
SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
server-application-server/source/java/ch/systemsx/cisd/openbis/generic/server/business/PropertiesBatchManager.java
+20
-52
20 additions, 52 deletions
...enbis/generic/server/business/PropertiesBatchManager.java
with
20 additions
and
52 deletions
server-application-server/source/java/ch/systemsx/cisd/openbis/generic/server/business/PropertiesBatchManager.java
+
20
−
52
View file @
7c295a5c
...
@@ -149,9 +149,9 @@ public class PropertiesBatchManager implements IPropertiesBatchManager
...
@@ -149,9 +149,9 @@ public class PropertiesBatchManager implements IPropertiesBatchManager
{
{
List
<
IEntityProperty
>
newProperties
=
new
ArrayList
<
IEntityProperty
>();
List
<
IEntityProperty
>
newProperties
=
new
ArrayList
<
IEntityProperty
>();
List
<
KeyValue
<
Map
<
String
,
String
>>
>
subColumnBindings
=
Map
<
String
,
Map
<
String
,
String
>>
subColumnBindings
=
createColumnBindingsMap
(
propertiesBean
.
getProperties
(),
contexts
);
createColumnBindingsMap
(
propertiesBean
.
getProperties
(),
contexts
);
for
(
KeyValue
<
Map
<
String
,
String
>>
entry
:
subColumnBindings
)
for
(
Entry
<
String
,
Map
<
String
,
String
>>
entry
:
subColumnBindings
.
entrySet
()
)
{
{
String
code
=
entry
.
getKey
();
String
code
=
entry
.
getKey
();
EvaluationContext
evalContext
=
contexts
.
get
(
code
);
EvaluationContext
evalContext
=
contexts
.
get
(
code
);
...
@@ -206,45 +206,19 @@ public class PropertiesBatchManager implements IPropertiesBatchManager
...
@@ -206,45 +206,19 @@ public class PropertiesBatchManager implements IPropertiesBatchManager
return
entityProperty
;
return
entityProperty
;
}
}
private
static
final
class
KeyValue
<
T
>
private
Map
<
String
,
Map
<
String
,
String
>>
createColumnBindingsMap
(
IEntityProperty
[]
properties
,
{
private
final
String
key
;
private
final
T
value
;
KeyValue
(
String
key
,
T
value
)
{
this
.
key
=
key
;
this
.
value
=
value
;
}
public
String
getKey
()
{
return
key
;
}
public
T
getValue
()
{
return
value
;
}
}
private
List
<
KeyValue
<
Map
<
String
,
String
>>>
createColumnBindingsMap
(
IEntityProperty
[]
properties
,
Map
<
String
,
EvaluationContext
>
contexts
)
Map
<
String
,
EvaluationContext
>
contexts
)
{
{
List
<
KeyValue
<
Map
<
String
,
String
>>
>
subColumnBindings
=
Map
<
String
,
Map
<
String
,
String
>>
subColumnBindings
=
new
ArrayList
<
KeyValue
<
Map
<
String
,
String
>>
>
();
new
HashMap
<
String
,
Map
<
String
,
String
>>();
List
<
KeyValue
<
String
>
>
originalColumnBindings
=
new
ArrayList
<
KeyValue
<
String
>
>();
Map
<
String
,
String
>
originalColumnBindings
=
new
HashMap
<
String
,
String
>();
for
(
IEntityProperty
property
:
properties
)
for
(
IEntityProperty
property
:
properties
)
{
{
final
String
code
=
property
.
getPropertyType
().
getCode
().
toUpperCase
();
final
String
code
=
property
.
getPropertyType
().
getCode
().
toUpperCase
();
final
String
value
=
property
.
getStringValue
();
final
String
value
=
property
.
getStringValue
();
originalColumnBindings
.
add
(
new
KeyValue
<
String
>(
originalColumnBindings
.
put
(
ManagedPropertyFunctions
.
originalColumnNameBindingKey
(
code
),
ManagedPropertyFunctions
.
originalColumnNameBindingKey
(
code
),
value
)
)
;
value
);
int
indexOfColon
=
code
.
indexOf
(
':'
);
int
indexOfColon
=
code
.
indexOf
(
':'
);
String
propertyCode
=
code
;
String
propertyCode
=
code
;
...
@@ -254,36 +228,30 @@ public class PropertiesBatchManager implements IPropertiesBatchManager
...
@@ -254,36 +228,30 @@ public class PropertiesBatchManager implements IPropertiesBatchManager
propertyCode
=
code
.
substring
(
0
,
indexOfColon
);
propertyCode
=
code
.
substring
(
0
,
indexOfColon
);
subColumn
=
code
.
substring
(
indexOfColon
+
1
);
subColumn
=
code
.
substring
(
indexOfColon
+
1
);
}
}
Map
<
String
,
String
>
bindings
=
subColumnBindings
.
get
(
propertyCode
);
final
Map
<
String
,
String
>
bindings
=
new
HashMap
<
String
,
String
>();
if
(
bindings
==
null
)
subColumnBindings
.
add
(
new
KeyValue
<
Map
<
String
,
String
>>(
propertyCode
,
bindings
));
{
bindings
=
new
HashMap
<
String
,
String
>();
subColumnBindings
.
put
(
propertyCode
,
bindings
);
}
bindings
.
put
(
subColumn
,
value
);
bindings
.
put
(
subColumn
,
value
);
}
}
// add original column bindings to all bindings
// add original column bindings to all bindings
for
(
KeyValue
<
Map
<
String
,
String
>
>
bindings
:
subColumnBindings
)
for
(
Map
<
String
,
String
>
bindings
:
subColumnBindings
.
values
()
)
{
{
for
(
KeyValue
<
String
>
originalColumnEntry
:
originalColumnBindings
)
for
(
Entry
<
String
,
String
>
originalColumnEntry
:
originalColumnBindings
.
entrySet
()
)
{
{
bindings
.
getValue
()
bindings
.
put
(
originalColumnEntry
.
getKey
(),
originalColumnEntry
.
getValue
());
.
put
(
originalColumnEntry
.
getKey
(),
originalColumnEntry
.
getValue
());
}
}
}
}
for
(
Entry
<
String
,
EvaluationContext
>
entry
:
contexts
.
entrySet
())
for
(
Entry
<
String
,
EvaluationContext
>
entry
:
contexts
.
entrySet
())
{
{
String
code
=
entry
.
getKey
().
toUpperCase
();
String
code
=
entry
.
getKey
().
toUpperCase
();
List
<
KeyValue
<
Map
<
String
,
String
>>>
tmpSubColumnBindings
=
if
(
false
==
subColumnBindings
.
containsKey
(
code
))
new
ArrayList
<
KeyValue
<
Map
<
String
,
String
>>>();
{
boolean
hasKey
=
subColumnBindings
.
stream
().
anyMatch
(
x
->
x
.
getKey
().
equals
(
code
));
subColumnBindings
.
put
(
code
,
new
HashMap
<
String
,
String
>(
originalColumnBindings
));
if
(!
hasKey
)
{
Map
<
String
,
String
>
map2
=
new
HashMap
<
String
,
String
>();
for
(
KeyValue
<
String
>
kv2
:
originalColumnBindings
)
{
map2
.
put
(
kv2
.
getKey
(),
kv2
.
getValue
());
}
tmpSubColumnBindings
.
add
(
new
KeyValue
<
Map
<
String
,
String
>>(
code
,
map2
));
}
}
subColumnBindings
.
addAll
(
tmpSubColumnBindings
);
}
}
return
subColumnBindings
;
return
subColumnBindings
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment