public class SmartMemberReader extends Object
SmartMemberReader
implements MemberReader
by keeping a
cache of members and their children. If a member is 'in cache', there is a
list of its children. It also caches the members of levels.
Synchronization: the MemberReader source
must be called
from synchronized(this) context - it does not synchronize itself (probably
it should).
Constraints: Member.Children and Level.Members may be constrained by a SqlConstraint object. In this case a subset of all members is returned. These subsets are cached too and the SqlConstraint is part of the cache key. This is used in NON EMPTY context.
Uniqueness. We need to ensure that there is never more than one RolapMember
object representing the same member.
Modifier and Type | Field and Description |
---|---|
protected MemberCacheHelper |
cacheHelper |
protected List<RolapMember> |
rootMembers |
protected mondrian.rolap.MemberReader |
source
access to
source must be synchronized(this) |
Modifier and Type | Method and Description |
---|---|
protected void |
checkCacheStatus() |
int |
compare(RolapMember m1,
RolapMember m2,
boolean siblingsAreEqual)
Compares two members according to their order in a prefix ordered
traversal.
|
RolapMember |
desubstitute(RolapMember member)
Returns the member which was substituted.
|
RolapMember |
getDefaultMember() |
RolapHierarchy |
getHierarchy()
Returns the hierarchy that this source is reading for.
|
RolapMember |
getLeadMember(RolapMember member,
int n)
Returns the member
n after member in the same
level (or before, if n is negative). |
int |
getLevelMemberCount(RolapLevel level)
Returns the number of members in this level.
|
TupleReader.MemberBuilder |
getMemberBuilder() |
RolapMember |
getMemberByKey(RolapLevel level,
List<Comparable> keyValues)
Looks up a member by its key value.
|
mondrian.rolap.MemberCache |
getMemberCache() |
void |
getMemberChildren(List<RolapMember> parentMembers,
List<RolapMember> children)
Returns all members which are a child of one of the members in
parentMembers , sorted by ordinal. |
Map<? extends Member,Access> |
getMemberChildren(List<RolapMember> parentMembers,
List<RolapMember> children,
MemberChildrenConstraint constraint)
Populates a list of the children of a given set of Members, optionally
applying a constraint.
|
void |
getMemberChildren(RolapMember parentMember,
List<RolapMember> children)
Writes all children
parentMember to children . |
Map<? extends Member,Access> |
getMemberChildren(RolapMember parentMember,
List<RolapMember> children,
MemberChildrenConstraint constraint)
Populates a list of the children of a Member, optionally applying a
constraint.
|
int |
getMemberCount()
Returns an estimate of number of members in this hierarchy.
|
RolapMember |
getMemberParent(RolapMember member) |
void |
getMemberRange(RolapLevel level,
RolapMember startMember,
RolapMember endMember,
List<RolapMember> list)
Writes all members between
startMember and
endMember into list . |
List<RolapMember> |
getMembers()
Returns all members of this hierarchy, sorted by ordinal.
|
List<RolapMember> |
getMembersInLevel(RolapLevel level)
Returns all of the members in
level whose ordinal lies
between startOrdinal and endOrdinal . |
List<RolapMember> |
getMembersInLevel(RolapLevel level,
TupleConstraint constraint)
Returns the members in the given Level, optionally applying a constraint.
|
List<RolapMember> |
getRootMembers()
Returns all members of this hierarchy which do not have a parent,
sorted by ordinal.
|
boolean |
isSorted(List<RolapMember> members)
Returns true if every element of
members is not null and is
strictly less than the following element; false otherwise. |
RolapMember |
lookupMember(List<Id.Segment> uniqueNameParts,
boolean failIfNotFound)
Finds a member based upon its unique name.
|
protected void |
readMemberChildren(List<RolapMember> members,
List<RolapMember> result,
MemberChildrenConstraint constraint)
Reads the children of
member into cache, and also into
result . |
boolean |
setCache(mondrian.rolap.MemberCache cache)
Sets the cache which this
MemberSource will write to. |
RolapMember |
substitute(RolapMember member)
Substitutes a given member.
|
protected final mondrian.rolap.MemberReader source
source
must be synchronized(this)protected final MemberCacheHelper cacheHelper
protected List<RolapMember> rootMembers
public RolapHierarchy getHierarchy()
MemberSource
public mondrian.rolap.MemberCache getMemberCache()
public boolean setCache(mondrian.rolap.MemberCache cache)
MemberSource
MemberSource
will write to.
Cache-writeback is optional (for example, SqlMemberSource
supports it, and ArrayMemberSource
does not), and the return
value from this method indicates whether this object supports it.
If this method returns true
, the MemberSource.getMembers()
,
MemberSource.getRootMembers()
and MemberSource.getMemberChildren(mondrian.rolap.RolapMember, java.util.List<mondrian.rolap.RolapMember>)
methods must
write to the cache, in addition to returning members as a return value.
cache
- The MemberCache
which the caller would like
this MemberSource
to write to.MemberSource
supports cache-writeback.public RolapMember substitute(RolapMember member)
This method is called whenever a member is returned from the wrapped member reader and is to be returned to the caller. You could say that it translates 'to caller space'.
member
- Memberpublic RolapMember desubstitute(RolapMember member)
This method is called whenever the caller passes a member into a method and needs to be passed to a method on the wrapped member reader. You could say that it translates 'from caller space'.
member
- Memberpublic RolapMember getMemberByKey(RolapLevel level, List<Comparable> keyValues)
level
- LevelkeyValues
- Key valuespublic List<RolapMember> getMembers()
MemberSource
If this object supports cache-writeaback
, also
writes these members to the cache.
public List<RolapMember> getRootMembers()
MemberSource
If this object supports cache-writeback
, also
writes these members to the cache.
List
of RolapMember
spublic List<RolapMember> getMembersInLevel(RolapLevel level)
level
whose ordinal lies
between startOrdinal
and endOrdinal
.
If this object
supports cache-writeback
, also
writes these members to the cache.
List
of RolapMember
protected void checkCacheStatus()
public List<RolapMember> getMembersInLevel(RolapLevel level, TupleConstraint constraint)
level
- Levelconstraint
- Constraintpublic int getLevelMemberCount(RolapLevel level)
level
- Levelpublic void getMemberChildren(RolapMember parentMember, List<RolapMember> children)
MemberSource
parentMember
to children
.
If this object supports cache-writeback
, also
writes these members to the cache.
public Map<? extends Member,Access> getMemberChildren(RolapMember parentMember, List<RolapMember> children, MemberChildrenConstraint constraint)
parentMember
- Members whose children to findchildren
- List to populate with membersconstraint
- Constraintnull
values.public void getMemberChildren(List<RolapMember> parentMembers, List<RolapMember> children)
MemberSource
parentMembers
, sorted by ordinal.
If this object supports cache-writeaback
, also
writes these members to the cache.
public Map<? extends Member,Access> getMemberChildren(List<RolapMember> parentMembers, List<RolapMember> children, MemberChildrenConstraint constraint)
parentMembers
- List of members whose children to findchildren
- List to populate with membersconstraint
- Constraintnull
values.public RolapMember lookupMember(List<Id.Segment> uniqueNameParts, boolean failIfNotFound)
MemberSource
protected void readMemberChildren(List<RolapMember> members, List<RolapMember> result, MemberChildrenConstraint constraint)
member
into cache, and also into
result
.result
- Children are written here, in ordermembers
- Members whose children to readconstraint
- restricts the returned members if possible (optional
optimization)public boolean isSorted(List<RolapMember> members)
members
is not null and is
strictly less than the following element; false otherwise.public RolapMember getLeadMember(RolapMember member, int n)
n
after member
in the same
level (or before, if n
is negative).
Returns Hierarchy.getNullMember()
if we run off the beginning or
end of the level.public void getMemberRange(RolapLevel level, RolapMember startMember, RolapMember endMember, List<RolapMember> list)
startMember
and
endMember
into list
.public int getMemberCount()
MemberSource
public int compare(RolapMember m1, RolapMember m2, boolean siblingsAreEqual)
siblingsAreEqual
, then two members with the
same parent will compare equal.siblingsAreEqual
and
m1 and m2 have the same parentpublic TupleReader.MemberBuilder getMemberBuilder()
public RolapMember getDefaultMember()
public RolapMember getMemberParent(RolapMember member)
Copyright © 2019 Hitachi Vantara. All rights reserved.