コード例 #1
0
  /** @param args */
  public static void main(String[] args) {
    if (args.length < MIN_ARGS) {
      usage();
      return;
    }
    if (args.length > MAX_ARGS) {
      usage();
      return;
    }
    File spdxSpreadsheetFile = new File(args[0]);
    if (!spdxSpreadsheetFile.exists()) {
      System.out.printf("Spreadsheet file %1$s does not exists.\n", args[0]);
      return;
    }
    File spdxRdfFile = new File(args[1]);
    if (spdxRdfFile.exists()) {
      System.out.printf("Error: File %1$s already exists - please specify a new file.\n", args[1]);
      return;
    }

    try {
      if (!spdxRdfFile.createNewFile()) {
        System.out.println("Could not create the new SPDX RDF file " + args[1]);
        usage();
        return;
      }
    } catch (IOException e1) {
      System.out.println("Could not create the new SPDX RDF file " + args[1]);
      System.out.println("due to error " + e1.getMessage());
      usage();
      return;
    }
    FileOutputStream out;
    try {
      out = new FileOutputStream(spdxRdfFile);
    } catch (FileNotFoundException e1) {
      System.out.println("Could not write to the new SPDX RDF file " + args[1]);
      System.out.println("due to error " + e1.getMessage());
      usage();
      return;
    }
    Model model = ModelFactory.createDefaultModel();
    SPDXDocument analysis = null;
    try {
      analysis = new SPDXDocument(model);
    } catch (InvalidSPDXAnalysisException ex) {
      System.out.print("Error creating SPDX Analysis: " + ex.getMessage());
      return;
    }
    SPDXSpreadsheet ss = null;
    try {
      ss = new SPDXSpreadsheet(spdxSpreadsheetFile, false, true);
      copySpreadsheetToSPDXAnalysis(ss, analysis);
      ArrayList<String> verify = analysis.verify();
      if (verify.size() > 0) {
        System.out.println(
            "Warning: The following verification errors were found in the resultant SPDX Document:");
        for (int i = 0; i < verify.size(); i++) {
          System.out.println("\t" + verify.get(i));
        }
      }
      model.write(out, "RDF/XML-ABBREV");
    } catch (SpreadsheetException e) {
      System.out.println("Error creating or writing to spreadsheet: " + e.getMessage());
    } catch (InvalidSPDXAnalysisException e) {
      System.out.println("Error translating the RDF file: " + e.getMessage());
    } finally {
      if (ss != null) {
        try {
          ss.close();
        } catch (SpreadsheetException e) {
          System.out.println("Error closing spreadsheet: " + e.getMessage());
        }
      }
      if (out != null) {
        try {
          out.close();
        } catch (IOException e) {
          System.out.println("Error closing RDF file: " + e.getMessage());
        }
      }
    }
  }
コード例 #2
0
ファイル: MergeSpdxDocs.java プロジェクト: timurphy/tools
  /** @param args (input SPDX documents; the last item in the args will be the output file name) */
  public static void main(String[] args) {
    if (args.length < MIN_ARGS) {
      System.out.println("Insufficient arguments");
      usage();
      System.exit(ERROR_STATUS);
    }
    // check the output file name to avoid the miss input value
    File spdxRdfFile = new File(args[args.length - 1]);
    if (spdxRdfFile.exists()) {
      System.out.println("Output file " + args[args.length - 1] + " already exist");
      System.exit(ERROR_STATUS);
    }

    // store inputed SPDX documents in the array "mergeDocs" for later parsing
    SpdxDocument[] mergeDocs = new SpdxDocument[args.length - 1];

    String[] docNames = new String[args.length - 1];
    @SuppressWarnings("unchecked")
    List<String>[] verficationError = new List[args.length - 1];

    for (int i = 0; i < args.length - 1; i++) {
      try {
        List<String> warnings = new ArrayList<String>();
        mergeDocs[i] = CompareSpdxDocs.openRdfOrTagDoc(args[i], warnings);
        if (!warnings.isEmpty()) {
          System.out.println("Verification errors were found in " + args[i].trim() + ":");
          if (!warnings.isEmpty()) {
            System.out.println("The following warnings and or verification errors were found:");
            for (String warning : warnings) {
              System.out.println("\t" + warning);
            }
          }
        }
        docNames[i] = CompareSpdxDocs.convertDocName(args[i]);
        verficationError[i] = mergeDocs[i].verify();
        if (verficationError[i] != null && verficationError[i].size() > 0) {
          System.out.println("Warning: " + docNames[i] + " contains verfication errors.");
        }
      } catch (SpdxCompareException e) {
        System.out.println("Error opening SPDX document " + args[i] + " : " + e.getMessage());
        System.exit(ERROR_STATUS);
      }
    }

    // separate master document and sub-documents
    SpdxDocument master = mergeDocs[0];
    SpdxDocument[] subDocs = new SpdxDocument[mergeDocs.length - 1];
    for (int k = 0; k < subDocs.length; k++) {
      subDocs[k] = mergeDocs[k + 1];
    }

    FileOutputStream out;
    try {
      out = new FileOutputStream(spdxRdfFile);
    } catch (FileNotFoundException e) {
      System.out.println("Could not write to the new SPDX RDF file " + args[args.length - 1]);
      System.out.println("due to error " + e.getMessage());
      usage();
      return;
    }

    // create outputDoc, then clone master into outputDoc
    SpdxDocument outputDoc = null;
    String masterDocUri = master.getDocumentContainer().getDocumentNamespace();
    Model model = null;
    if (masterDocUri.endsWith("#")) {
      masterDocUri = masterDocUri.substring(0, masterDocUri.length() - 1);
    }
    String outputDocURI = masterDocUri + "-merged";
    try {
      SpdxDocumentContainer container = new SpdxDocumentContainer(outputDocURI);
      outputDoc = container.getSpdxDocument();
      model = container.getModel();
    } catch (InvalidSPDXAnalysisException e1) {
      System.out.print("Error creating SPDX Analysis: " + e1.getMessage());
      // System.exit(1); - Causes unit tests to block
      try {
        out.close();
      } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
      }
      return;
    }

    // obtain package list from master document
    List<SpdxPackage> packageInfoResult = null;
    try {
      packageInfoResult = master.getDocumentContainer().findAllPackages();
    } catch (InvalidSPDXAnalysisException e1) {
      System.out.println("Error obtaining master's packages: " + e1.getMessage());
    }

    ExtractedLicenseInfo[] licInfoResult = null;
    SpdxLicenseMapper licenseMapper = new SpdxLicenseMapper();

    try {
      SpdxLicenseInfoMerger nonStandardLicMerger =
          new SpdxLicenseInfoMerger(outputDoc, licenseMapper);
      // merge non-standard license information
      licInfoResult = nonStandardLicMerger.mergeNonStdLic(subDocs);
    } catch (InvalidSPDXAnalysisException e) {
      System.out.println(
          "Error merging documents' SPDX Non-standard License Information: " + e.getMessage());
      System.exit(ERROR_STATUS);
    }

    SpdxFile[] fileInfoResult = null;
    try {
      SpdxFileInfoMerger fileInfoMerger = new SpdxFileInfoMerger(master, licenseMapper);
      // merge file information
      fileInfoResult = fileInfoMerger.mergeFileInfo(subDocs);
    } catch (InvalidSPDXAnalysisException e) {
      System.out.println("Error merging SPDX files' Information: " + e.getMessage());
      System.exit(ERROR_STATUS);
    }

    try {
      SpdxPackageInfoMerger packInfoMerger =
          new SpdxPackageInfoMerger(packageInfoResult, subDocs, licenseMapper);
      try {
        packInfoMerger.mergePackagesInfo(fileInfoResult);
      } catch (NoSuchAlgorithmException e) {
        System.out.println("Error merging packages' information: " + e.getMessage());
      } catch (InvalidLicenseStringException e) {
        System.out.println("Error on package's license string " + e.getMessage());
      }
    } catch (InvalidSPDXAnalysisException e) {
      System.out.println("Error merging SPDX Non-standard License Information: " + e.getMessage());
      System.exit(ERROR_STATUS);
    }

    try {
      // set document review information as empty array
      SPDXReview[] reviewInfoResult = new SPDXReview[0];
      outputDoc.setReviewers(reviewInfoResult);
      // set document SPDX version
      outputDoc.setSpecVersion(master.getSpecVersion());
      // set document creator information
      outputDoc.setCreationInfo(master.getCreationInfo());
      // set document comment information
      outputDoc.setComment(master.getComment());
      // set document data license information
      outputDoc.setDataLicense(master.getDataLicense());
      // set extracted license information
      outputDoc.setExtractedLicenseInfos(licInfoResult);
      // set package's declared license information
      //				outputDoc.getSpdxPackage().setLicenseDeclared(packageInfoResult.getLicenseDeclared());
      // set package's file information
      //				outputDoc.getSpdxPackage().setFiles(fileInfoResult);
      // set package's license comments information
      //				outputDoc.getSpdxPackage().setLicenseComments(packageInfoResult.getLicenseComments());
      // set package's verification code
      //
      //	outputDoc.getSpdxPackage().setPackageVerificationCode(packageInfoResult.getPackageVerificationCode());
    } catch (InvalidSPDXAnalysisException e) {
      System.out.println("Error to set merged information into output document " + e.getMessage());
      // System.exit(ERROR_STATUS); - Causes unit tests to stop
      try {
        out.close();
      } catch (IOException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
      }
      return;
    }

    try {
      model.write(out, "RDF/XML-ABBREV");
    } catch (Exception e) {
      System.out.println("Error writing to the output file " + e.getMessage());
    } finally {
      if (out != null) {
        try {
          out.close();
        } catch (IOException e) {
          System.out.println("Error closing RDF file: " + e.getMessage());
        }
      }
    }
  }