T.R | Title | User | Personal Name | Date | Lines |
---|
1624.1 | It works for me when using one-level AES | ECRU::TAMER | | Wed Oct 09 1991 11:11 | 8 |
| Hi,
re .1
I use mcc_aes_match successfully for partial and full wildcards on SimpleNames.
However, I am using only bottom level (depth one) match and mask AES.
Phil
|
1624.2 | | RIVAGE::BACCAR | | Wed Oct 09 1991 13:04 | 4 |
|
I use mcc_aes_match successfully for partial and full wildcards on SimpleNames.
However, I am using only bottom level (depth one) match and mask AES.
###> botton level means global entity-instance partial wild-card
|
1624.3 | Target level wildcard | ECRU::TAMER | | Wed Oct 09 1991 13:57 | 13 |
| Well I mean one level AES comparison. e.g.,
Suppose I have SHOW ENTITY foo subentity xy*
and I have subentity instances x, xy, and xyz
then I create two AES (match and mask). Each one level. The mask has instance
xy* with the PARTIAL INSTANCE wildcard flag. For each subentity instance, it
has an instance of x, xy, and xyz with flag no wildcard.
Phil
PS: I support multiple level full and partial instance wildcards
|
1624.4 | could this explain my trouble... | TENERE::BACCAR | | Thu Oct 10 1991 08:26 | 30 |
|
I debug my code and come into mcc, I find out a little problem in the
encoding of the mask entity. My entity is a sample name, partial wilcarded
and the FCL encoding of the simple shows that the simple name is not
wilcarded.
see the following dump and analyse it with me :
(dbx) p mcc_aes_dump(p_callargs->p_in_entity)
entity [0] wild = NOT_WILD class = 1001 id = 1 type = 5
instance = ..................baccar..
%X00000000000000000000000000000A0001066261636361720000
entity [1] wild = INSTANCE_PARTIAL class = 608 id = 1 type = 4
instance = ..hedi*
########>>
%X0105686564692A
########>> if I encode this dump into an MCC_T_SimpleName, I get the following
field
->sn_b_type = 1 -------> this means MCC_K_SN_NORMAL and not
MCC_K_SN_WILDCARD
->sn_b_count = 5
->sn_b_string = "hedi*"
I patch this value to 4 ( MCC_K_SN_WILDCARD ), the match-entity matches the
mask-entity.
I am wrong ??
This bug is du to the FCL PM simple_name encoding ???
Can any one help me ???
For who want to know my version of DECmcc, it is the T122 ULTRIX of sept 91
Thanck for your help...
|
1624.5 | Made changes in Simplename conversion rtn | TRM::KWAK | | Wed Oct 16 1991 14:29 | 9 |
| RE: .4
Thanks for finding a bug.
I have modified the Simplename conversion routine such that when
the Simplename contains a wildcard, the "sn_b_type" field is set to
MCC_K_SN_WILDCARD.
The change will be available in the next T12? Ultrix kit.
|