Exemplo n.º 1
0
 @Override
 public void write(final File filename) throws DITAOTException {
   // pass map's directory path
   filePath = filename;
   try {
     output = new StringWriter();
     processChunk(rootTopicref, null);
     if (!copyto.isEmpty()) {
       updateList();
     }
   } finally {
     if (output != null) {
       try {
         output.close();
       } catch (final IOException e) {
         logger.error(e.getMessage(), e);
       }
     }
   }
 }
Exemplo n.º 2
0
  @Override
  public void write(final File filename) throws DITAOTException {
    // pass map's directory path
    filePath = filename;
    final String hrefValue = getValue(rootTopicref, ATTRIBUTE_NAME_HREF);
    final String copytoValue = getValue(rootTopicref, ATTRIBUTE_NAME_COPY_TO);
    final String scopeValue = getCascadeValue(rootTopicref, ATTRIBUTE_NAME_SCOPE);
    // Chimera path, has fragment
    String parseFilePath;
    final Collection<String> chunkValue = split(getValue(rootTopicref, ATTRIBUTE_NAME_CHUNK));
    final String processRoleValue = getCascadeValue(rootTopicref, ATTRIBUTE_NAME_PROCESSING_ROLE);
    boolean dotchunk = false;

    if (copytoValue != null && !chunkValue.contains(CHUNK_TO_CONTENT)) {
      if (hrefValue != null && getFragment(hrefValue) != null) {
        parseFilePath = setFragment(copytoValue, getFragment(hrefValue));
      } else {
        parseFilePath = copytoValue;
      }
    } else {
      parseFilePath = hrefValue;
    }

    // if @copy-to is processed in chunk module, the list file needs to be
    // updated.
    // Because @copy-to should be included in fulltopiclist, and the source
    // of coyy-to should be excluded in fulltopiclist.
    if (copytoValue != null && chunkValue.contains(CHUNK_TO_CONTENT)) {
      copyto.add(copytoValue);
      if (hrefValue != null && getFragment(hrefValue) != null) {
        copytoSource.add(stripFragment(hrefValue));
        copytotarget2source.put(toURI(copytoValue), toURI(stripFragment(hrefValue)));
      } else {
        copytoSource.add(hrefValue);
        copytotarget2source.put(toURI(copytoValue), toURI(hrefValue));
      }
    }
    try {
      if (parseFilePath != null
          && !ATTR_SCOPE_VALUE_EXTERNAL.equals(scopeValue)
          && !ATTR_PROCESSING_ROLE_VALUE_RESOURCE_ONLY.equals(processRoleValue)) {
        // if the path to target file make sense
        currentParsingFile = resolve(filePath, parseFilePath);
        File outputFileName;
        /*
         * FIXME: we have code flaws here, references in ditamap need to
         * be updated to new created file.
         */
        String id = null;
        String firstTopicID = null;
        if (getFragment(parseFilePath) != null) {
          id = getFragment(parseFilePath);
          if (chunkValue.contains(CHUNK_SELECT_BRANCH)) {
            outputFileName = resolve(filePath, id + FILE_EXTENSION_DITA);
            targetTopicId = id;
            startFromFirstTopic = false;
            selectMethod = CHUNK_SELECT_BRANCH;
          } else if (chunkValue.contains(CHUNK_SELECT_DOCUMENT)) {
            firstTopicID = getFirstTopicId(resolve(filePath, parseFilePath).getPath());

            topicDoc = getTopicDoc(resolve(filePath, parseFilePath).getPath());

            if (firstTopicID != null) {
              outputFileName = resolve(filePath, firstTopicID + FILE_EXTENSION_DITA);
              targetTopicId = firstTopicID;
            } else {
              outputFileName = new File(currentParsingFile.getPath() + FILE_EXTENSION_CHUNK);
              dotchunk = true;
              targetTopicId = null;
            }
            selectMethod = CHUNK_SELECT_DOCUMENT;
          } else {
            outputFileName = resolve(filePath, id + FILE_EXTENSION_DITA);
            targetTopicId = id;
            startFromFirstTopic = false;
            selectMethod = CHUNK_SELECT_TOPIC;
          }
        } else {
          firstTopicID = getFirstTopicId(resolve(filePath, parseFilePath).getPath());

          topicDoc = getTopicDoc(resolve(filePath, parseFilePath).getPath());

          if (firstTopicID != null) {
            outputFileName = resolve(filePath, firstTopicID + FILE_EXTENSION_DITA);
            targetTopicId = firstTopicID;
          } else {
            outputFileName = new File(currentParsingFile.getPath() + FILE_EXTENSION_CHUNK);
            dotchunk = true;
            targetTopicId = null;
          }
          selectMethod = CHUNK_SELECT_DOCUMENT;
        }
        if (copytoValue != null) {
          // use @copy-to value as the new file name
          outputFileName = resolve(filePath, copytoValue);
        }

        if (outputFileName.exists()) {
          final File t = outputFileName;
          outputFileName = resolve(filePath, generateFilename());
          conflictTable.put(outputFileName.getPath(), t.getPath());
          dotchunk = false;
        }
        output = new OutputStreamWriter(new FileOutputStream(outputFileName), UTF8);
        outputFile = outputFileName;
        if (!dotchunk) {
          changeTable.put(
              resolveTopic(filePath, parseFilePath), setFragment(outputFileName.getPath(), id));
          // new generated file
          changeTable.put(outputFileName.getPath(), outputFileName.getPath());
        }
        // change the href value
        if (firstTopicID == null) {
          rootTopicref.setAttribute(
              ATTRIBUTE_NAME_HREF,
              setFragment(
                      toURI(
                          getRelativePath(
                              new File(filePath, FILE_NAME_STUB_DITAMAP), outputFileName)),
                      id)
                  .toString());
        } else {
          rootTopicref.setAttribute(
              ATTRIBUTE_NAME_HREF,
              setFragment(
                      toURI(
                          getRelativePath(
                              new File(filePath, FILE_NAME_STUB_DITAMAP), outputFileName)),
                      firstTopicID)
                  .toString());
        }
        include = false;
        // just a mark?
        stub = rootTopicref.getOwnerDocument().createElement(ELEMENT_STUB);
        siblingStub = rootTopicref.getOwnerDocument().createElement(ELEMENT_STUB);
        // <element>
        // <stub/>
        // ...
        // </element>
        // <siblingstub/>
        // ...
        // Place stub
        if (rootTopicref.hasChildNodes()) {
          final NodeList list = rootTopicref.getElementsByTagName(MAP_TOPICMETA.localName);
          if (list.getLength() > 0) {
            final Node node = list.item(0);
            final Node nextSibling = node.getNextSibling();
            // no sibling so node is the last child
            if (nextSibling == null) {
              node.getParentNode().appendChild(stub);
            } else {
              // has sibling node
              node.getParentNode().insertBefore(stub, nextSibling);
            }
          } else {
            // no topicmeta tag.
            rootTopicref.insertBefore(stub, rootTopicref.getFirstChild());
          }

          // element.insertBefore(stub,element.getFirstChild());
        } else {
          rootTopicref.appendChild(stub);
        }

        // Place siblingStub
        if (rootTopicref.getNextSibling() != null) {
          rootTopicref.getParentNode().insertBefore(siblingStub, rootTopicref.getNextSibling());
        } else {
          rootTopicref.getParentNode().appendChild(siblingStub);
        }

        reader.setErrorHandler(new DITAOTXMLErrorHandler(currentParsingFile.getPath(), logger));
        reader.parse(currentParsingFile.toURI().toString());
        output.flush();

        // remove stub and siblingStub
        stub.getParentNode().removeChild(stub);
        siblingStub.getParentNode().removeChild(siblingStub);
      }
    } catch (final RuntimeException e) {
      throw e;
    } catch (final Exception e) {
      logger.error(e.getMessage(), e);
    } finally {
      try {
        if (output != null) {
          output.close();
          output = null;
          if (dotchunk && !currentParsingFile.delete()) {
            logger.error(
                MessageUtils.getInstance()
                    .getMessage("DOTJ009E", currentParsingFile.getPath(), outputFile.getPath())
                    .toString());
          }
          if (dotchunk && !outputFile.renameTo(currentParsingFile)) {
            logger.error(
                MessageUtils.getInstance()
                    .getMessage("DOTJ009E", currentParsingFile.getPath(), outputFile.getPath())
                    .toString());
          }
        }
      } catch (final Exception ex) {
        logger.error(ex.getMessage(), ex);
      }
    }
    if (!copyto.isEmpty()) {
      updateList();
    }
  }