Package org.mizartools.dli

Examples of org.mizartools.dli.DliException


        case J :
          if (symbolNr > vocabularyItem.nrG) symbolNr = symbolNr - vocabularyItem.nrG;
          else aid = vocabularyItem.articleId;
          break;
        default :
          throw new DliException();
        }
        if (aid != null) break;
      }
    }
    if (aid == null) aid = pattern.getAid();
    Symbols symbols = VocabularyFile.getSymbols(aid);
    SymbolId symbolId = null;
    SymbolType symbolType = null;
    ArticleId articleId = new ArticleId(aid);
    String token = null;
    org.mizartools.system.xml.Format.Kind kind = pattern.getFormat().getKind();
    switch (kind){
    case O :
      symbolType = SymbolType.vocO;
      token = symbols.getSymbolO(symbolNr);
      break;
    case R :
      symbolType = SymbolType.vocR;
      token = symbols.getSymbolR(symbolNr);
      break;
    case V :
      symbolType = SymbolType.vocV;
      token = symbols.getSymbolV(symbolNr);
      break;
    case M :
      symbolType = SymbolType.vocM;
      token = symbols.getSymbolM(symbolNr);
      break;
    case K :
      symbolType = SymbolType.vocK;
      token = symbols.getSymbolK(symbolNr);
      break;
    case L :
      symbolType = SymbolType.vocG;
      token = symbols.getSymbolG(symbolNr);
      break;
    case G :
      symbolType = SymbolType.vocG;
      token = symbols.getSymbolG(symbolNr);
      break;
    case U :
      symbolType = SymbolType.vocU;
      token = symbols.getSymbolU(symbolNr);
      break;
    case J :
      symbolType = SymbolType.vocG;
      token = symbols.getSymbolG(symbolNr);
      break;
    default :
      throw new DliException();
    }
    symbolId = new SymbolId(articleId, symbolType, token, symbolNr);
    return symbolId;
  }
View Full Code Here


      LinkedList<Term> termList = new LinkedList<Term>();
      for (org.mizartools.system.xml.Term term1 : func.getTermList()) {
        termList.add(getTerm(abstractSignature, term1, vid));
      }
      if (func.getKind() == org.mizartools.system.xml.Func.Kind.F){
        if (func.getNr() == null) throw new DliException();
        termDli = new PrivateFunctor(func.getNr(), termList);
      } else {
        ItemId itemId = getItemId(abstractSignature, func.getKind(), func.getNr());
        termDli = new Func(itemId, termList);
      }
    } else if (term instanceof org.mizartools.system.xml.Choice) {
      termDli = new The(getType(abstractSignature, ((org.mizartools.system.xml.Choice)term).getTyp()));
    } else if (term instanceof org.mizartools.system.xml.Num) {
      termDli = new Num(((org.mizartools.system.xml.Num)term).getNr());
    } else if (term instanceof org.mizartools.system.xml.Fraenkel) {
      org.mizartools.system.xml.Fraenkel fraenkel = (org.mizartools.system.xml.Fraenkel)term;
      LinkedList<Var> varList = new LinkedList<Var>();
      VariableId vid2 = new VariableId();
      vid2.setId(vid.getId());
      for (org.mizartools.system.xml.Typ typ : fraenkel.getTypList()) {
        vid2.increment();
        Variable variable = new Variable(vid2.getId());
        Type type = getType(abstractSignature, typ);
        varList.add(new Var(variable, type));
      }
      Term term1 = getTerm(abstractSignature, fraenkel.getTerm(), vid2);
      termDli = new Fraenkel(varList, term1, getFormula(abstractSignature, fraenkel.getFormula(), vid2));
    } else throw new DliException();
    return termDli;
  }
View Full Code Here

      org.mizartools.system.xml.Func.Kind kind, Integer nr) throws DliException {
    UniqueIdentifier uniqueIdentifier = null;
    try {
      uniqueIdentifier = UniqueIdentifier.getInstance(abstractSignature, null, kind, nr);
    } catch (UniqueIdentifierException e) {
      throw new DliException();
    }
    ArticleId articleId = new ArticleId(uniqueIdentifier.aid);
    ItemType itemType = null;
    switch (uniqueIdentifier.type){
    case func : itemType = ItemType.func; break;
    case struct : itemType = ItemType.struct; break;
    case sel : itemType = ItemType.sel; break;
    case aggr : itemType = ItemType.aggr; break;
    default : throw new DliException();
    }
    ItemId itemId = new ItemId(articleId, itemType, uniqueIdentifier.nr);
    return itemId;
  }
View Full Code Here

      LinkedList<Term> termList = new LinkedList<Term>();
      for (org.mizartools.system.xml.Term term : pred.getTermList()) {
        termList.add(getTerm(abstractSignature, term, vid));
      }
      if (pred.getKind() == Kind.P) {
        if (pred.getNr() == null) throw new DliException();
        formulaDli = new PrivateFormula(pred.getNr(), termList);
      }
      else {
        ItemId itemId = getItemId(abstractSignature, pred.getKind(), pred.getNr());
        switch (pred.getKind()){
        case V :
          LinkedList<Adjective> adjectiveList = new LinkedList<Adjective>();
          Type type = new Type(adjectiveList, itemId, termList, false);
          formulaDli = new Is(termList, type);
          break;
        default :
          formulaDli = new Pred(itemId, termList);
        }
      }
    } else if (formula instanceof org.mizartools.system.xml.Is){
      org.mizartools.system.xml.Is is = (org.mizartools.system.xml.Is) formula;
      Type type = getType(abstractSignature, is.getTyp());
      LinkedList<Term> termList = new LinkedList<Term>();
      termList.add(getTerm(abstractSignature, is.getTerm(), vid));
      formulaDli = new Is(termList, type);
    } else if (formula instanceof org.mizartools.system.xml.Verum){
      formulaDli = new Verum();
    } else throw new DliException();
    return formulaDli;
  }
View Full Code Here

      org.mizartools.system.xml.Pred.Kind kind, Integer nr) throws DliException {
    UniqueIdentifier uniqueIdentifier = null;
    try {
      uniqueIdentifier = UniqueIdentifier.getInstance(abstractSignature, null, kind, nr);
    } catch (UniqueIdentifierException e) {
      throw new DliException();
    }
    ArticleId articleId = new ArticleId(uniqueIdentifier.aid);
    ItemType itemType = null;
    switch (uniqueIdentifier.type){
    case attr : itemType = ItemType.attr; break;
    case pred : itemType = ItemType.pred; break;
    default : throw new DliException();
    }
    ItemId itemId = new ItemId(articleId, itemType, uniqueIdentifier.nr);
    return itemId;
  }
View Full Code Here

      Integer constrnr) throws DliException {
    UniqueIdentifier uniqueIdentifier = null;
    try {
      uniqueIdentifier = UniqueIdentifier.getInstance(abstractSignature, null, constrkind, constrnr);
    } catch (UniqueIdentifierException e) {
      throw new DliException();
    }
    ArticleId articleId = new ArticleId(uniqueIdentifier.aid);
    ItemType itemType = null;
    switch (uniqueIdentifier.type){
    case mode : itemType = ItemType.mode; break;
    case attr : itemType = ItemType.attr; break;
    case aggr : itemType = ItemType.aggr; break;
    case func : itemType = ItemType.func; break;
    case pred : itemType = ItemType.pred; break;
    default : throw new DliException();
    }
    ItemId itemId = new ItemId(articleId, itemType, uniqueIdentifier.nr);
    return itemId;
  }
View Full Code Here

    } else if (iClusterRegistration instanceof org.mizartools.system.xml.FCluster) {
      return getItemF(registrationsSignature, (org.mizartools.system.xml.FCluster)iClusterRegistration);
    } else if (iClusterRegistration instanceof org.mizartools.system.xml.RCluster) {
      return getItemR(registrationsSignature, (org.mizartools.system.xml.RCluster)iClusterRegistration);
    } else {
      throw new DliException();
    }
  }
View Full Code Here

    switch (type) {
    case attrnot:
    case funcnot:
    case modenot:
    case prednot:
      if (!articleXml.hasNotations()) throw new DliException();
      NotationsSignature notationsSignature = articleXml.getNotationsSignature();
      for (org.mizartools.system.xml.Pattern pattern : articleXml.getNotations().getPatternList()){
        DecodedLibraryItem decodedLibraryItem = getItem(notationsSignature, pattern);
        UniqueIdentifier uniqueIdentifier1;
        try {
          uniqueIdentifier1 = UniqueIdentifier.getInstance(decodedLibraryItem.getItemId().toString());
        } catch (UniqueIdentifierException e) {
          e.printStackTrace();
          throw new DliException();
        }
        if (hashMapItem.containsKey(uniqueIdentifier1)) {
          throw new DliException();
        } else {
          hashMapItem.put(uniqueIdentifier1, decodedLibraryItem);
        }
      }
      break;
    case sch:
      if (!articleXml.hasSchemes()) throw new DliException();
      SchemesSignature schemesSignature = articleXml.getSchemesSignature();
      SchemeId schemeId = new SchemeId();
      for (org.mizartools.system.xml.Scheme scheme : articleXml.getSchemes().getSchemeList()){
        DecodedLibraryItem decodedLibraryItem = getItem(schemesSignature, scheme, schemeId);
        UniqueIdentifier uniqueIdentifier1;
        try {
          uniqueIdentifier1 = UniqueIdentifier.getInstance(decodedLibraryItem.getItemId().toString());
        } catch (UniqueIdentifierException e) {
          e.printStackTrace();
          throw new DliException();
        }
        if (hashMapItem.containsKey(uniqueIdentifier1)) {
          throw new DliException();
        } else {
          hashMapItem.put(uniqueIdentifier1, decodedLibraryItem);
        }
      }
      break;
    case dfs:
      if (!articleXml.hasDefinientia()) throw new DliException();
      DefinientiaSignature definientiaSignature = articleXml.getDefinientiaSignature();
      int relativeNr = 0;
      int nrDefiniens = 0;
      for (org.mizartools.system.xml.Definiens definiens : articleXml.getDefinientia().getDefiniensList()){
        nrDefiniens++;
        relativeNr = definiens.getDefnr() - nrDefiniens;
        DecodedLibraryItem decodedLibraryItem = ItemFactory.getItem(definientiaSignature, definiens, relativeNr);
        UniqueIdentifier uniqueIdentifier1;
        try {
          uniqueIdentifier1 = UniqueIdentifier.getInstance(decodedLibraryItem.getItemId().toString());
        } catch (UniqueIdentifierException e) {
          e.printStackTrace();
          throw new DliException();
        }
        if (hashMapItem.containsKey(uniqueIdentifier1)) {
          throw new DliException();
        } else {
          hashMapItem.put(uniqueIdentifier1, decodedLibraryItem);
        }
      }
      break;
    case def:
    case th:
      if (!articleXml.hasTheorems()) throw new DliException();
      TheoremsSignature theoremsSignature = articleXml.getTheoremsSignature();
      TheoremId theoremId = new TheoremId();
      TheoremId theoremIdDef = new TheoremId();
      for (org.mizartools.system.xml.Theorem theorem : articleXml.getTheorems().getTheoremList()){
        DecodedLibraryItem decodedLibraryItem = ItemFactory.getItem(theoremsSignature, theorem, theoremId, theoremIdDef);
        UniqueIdentifier uniqueIdentifier1;
        try {
          uniqueIdentifier1 = UniqueIdentifier.getInstance(decodedLibraryItem.getItemId().toString());
        } catch (UniqueIdentifierException e) {
          e.printStackTrace();
          throw new DliException();
        }
        if (hashMapItem.containsKey(uniqueIdentifier1)) {
          throw new DliException();
        } else {
          hashMapItem.put(uniqueIdentifier1, decodedLibraryItem);
        }
      }
      break;
    case exreg:
    case funcreg:
      if (!articleXml.hasRegistrations()) throw new DliException();
      RegistrationsSignature registrationsSignature = articleXml.getRegistrationsSignature();
      for (IClusterRegistration iClusterRegistration : articleXml.getRegistrations().getIClusterRegistrationList()){
        DecodedLibraryItem decodedLibraryItem = ItemFactory.getItem(registrationsSignature, iClusterRegistration);
        UniqueIdentifier uniqueIdentifier1;
        try {
          uniqueIdentifier1 = UniqueIdentifier.getInstance(decodedLibraryItem.getItemId().toString());
        } catch (UniqueIdentifierException e) {
          e.printStackTrace();
          throw new DliException();
        }
        if (hashMapItem.containsKey(uniqueIdentifier1)) {
          throw new DliException();
        } else {
          hashMapItem.put(uniqueIdentifier1, decodedLibraryItem);
        }
      }
      break;
    default :
      throw new DliException();
    }
    if (hashMapItem.containsKey(uniqueIdentifier)){
      return hashMapItem.get(uniqueIdentifier);
    } else {
      throw new DliException();
    }
  }
View Full Code Here

TOP

Related Classes of org.mizartools.dli.DliException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.