substitutiongrouphandler.java
来自「JAVA的一些源码 JAVA2 STANDARD EDITION DEVELO」· Java 代码 · 共 358 行 · 第 1/2 页
JAVA
358 行
// 2 It is validly substitutable for HEAD subject to an empty blocking constraint, as defined in Substitution Group OK (Transitive) (3.3.6). return substitutionGroupOK(element, exemplar, exemplar.fBlock); } // to store substitution group information // the key to the hashtable is an element decl, and the value is // - a Vector, which contains all elements that has this element as their // substitution group affilication // - an array of OneSubGroup, which contains its substitution group before block. Hashtable fSubGroupsB = new Hashtable(); private static final OneSubGroup[] EMPTY_VECTOR = new OneSubGroup[0]; // The real substitution groups (after "block") Hashtable fSubGroups = new Hashtable(); /** * clear the internal registry of substitutionGroup information */ public void reset() { fSubGroupsB.clear(); fSubGroups.clear(); } /** * add a list of substitution group information. */ public void addSubstitutionGroup(XSElementDecl[] elements) { XSElementDecl subHead, element; Vector subGroup; // for all elements with substitution group affiliation for (int i = elements.length-1; i >= 0; i--) { element = elements[i]; subHead = element.fSubGroup; // check whether this an entry for this element subGroup = (Vector)fSubGroupsB.get(subHead); if (subGroup == null) { // if not, create a new one subGroup = new Vector(); fSubGroupsB.put(subHead, subGroup); } // add to the vactor subGroup.addElement(element); } } /** * get all elements that can substitute the given element, * according to the spec, we shouldn't consider the {block} constraints. * * from the spec, substitution group of a given element decl also contains * the element itself. but the array returned from this method doesn't * containt this element. */ public XSElementDecl[] getSubstitutionGroup(XSElementDecl element) { // If we already have sub group for this element, just return it. Object subGroup = fSubGroups.get(element); if (subGroup != null) return (XSElementDecl[])subGroup; // Otherwise, get all potential sub group elements // (without considering "block" on this element OneSubGroup[] groupB = getSubGroupB(element, new OneSubGroup()); int len = groupB.length, rlen = 0; XSElementDecl[] ret = new XSElementDecl[len]; // For each of such elements, check whether the derivation methods // overlap with "block". If not, add it to the sub group for (int i = 0 ; i < len; i++) { if ((element.fBlock & groupB[i].dMethod) == 0) ret[rlen++] = groupB[i].sub; } // Resize the array if necessary if (rlen < len) { XSElementDecl[] ret1 = new XSElementDecl[rlen]; System.arraycopy(ret, 0, ret1, 0, rlen); ret = ret1; } // Store the subgroup fSubGroups.put(element, ret); return ret; } // Get potential sub group element (without considering "block") private OneSubGroup[] getSubGroupB(XSElementDecl element, OneSubGroup methods) { Object subGroup = fSubGroupsB.get(element); // substitution group for this one is empty if (subGroup == null) { fSubGroupsB.put(element, EMPTY_VECTOR); return EMPTY_VECTOR; } // we've already calculated the element, just return. if (subGroup instanceof OneSubGroup[]) return (OneSubGroup[])subGroup; // we only have the *direct* substitutions Vector group = (Vector)subGroup, newGroup = new Vector(); OneSubGroup[] group1; // then for each of the direct substitutions, get its substitution // group, and combine the groups together. short dMethod, bMethod, dSubMethod, bSubMethod; for (int i = group.size()-1, j; i >= 0; i--) { // Check whether this element is blocked. If so, ignore it. XSElementDecl sub = (XSElementDecl)group.elementAt(i); if (!getDBMethods(sub.fType, element.fType, methods)) continue; // Remember derivation methods and blocks from the types dMethod = methods.dMethod; bMethod = methods.bMethod; // Add this one to potential group newGroup.addElement(new OneSubGroup(sub, methods.dMethod, methods.bMethod)); // Get potential group for this element group1 = getSubGroupB(sub, methods); for (j = group1.length-1; j >= 0; j--) { // For each of them, check whether it's blocked (by type) dSubMethod = (short)(dMethod | group1[j].dMethod); bSubMethod = (short)(bMethod | group1[j].bMethod); // Ignore it if it's blocked if ((dSubMethod & bSubMethod) != 0) continue; newGroup.addElement(new OneSubGroup(group1[j].sub, dSubMethod, bSubMethod)); } } // Convert to an array OneSubGroup[] ret = new OneSubGroup[newGroup.size()]; for (int i = newGroup.size()-1; i >= 0; i--) { ret[i] = (OneSubGroup)newGroup.elementAt(i); } // Store the potential sub group fSubGroupsB.put(element, ret); return ret; } private boolean getDBMethods(XSTypeDefinition typed, XSTypeDefinition typeb, OneSubGroup methods) { short dMethod = 0, bMethod = 0; while (typed != typeb && typed != SchemaGrammar.fAnyType) { if (typed.getTypeCategory() == XSTypeDefinition.COMPLEX_TYPE) dMethod |= ((XSComplexTypeDecl)typed).fDerivedBy; else dMethod |= XSConstants.DERIVATION_RESTRICTION; typed = typed.getBaseType(); // type == null means the current type is anySimpleType, // whose base type should be anyType if (typed == null) typed = SchemaGrammar.fAnyType; if (typed.getTypeCategory() == XSTypeDefinition.COMPLEX_TYPE) bMethod |= ((XSComplexTypeDecl)typed).fBlock; } // No derivation relation, or blocked, return false if (typed != typeb || (dMethod & bMethod) != 0) return false; // Remember the derivation methods and blocks, return true. methods.dMethod = dMethod; methods.bMethod = bMethod; return true; } // Record the information about how one element substitute another one private static final class OneSubGroup { OneSubGroup() {} OneSubGroup(XSElementDecl sub, short dMethod, short bMethod) { this.sub = sub; this.dMethod = dMethod; this.bMethod = bMethod; } // The element that substitutes another one XSElementDecl sub; // The combination of all derivation methods from sub's type to // the head's type short dMethod; // The combination of {block} of the types in the derivation chain // excluding sub's type short bMethod; }} // class SubstitutionGroupHandler
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?