/**
* Copyright (c) 2011 Source Auditor Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.spdx.rdfparser;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.spdx.spdxspreadsheet.AbstractSheet;
/**
* Spreadsheet holding SPDX Licenses
* @author Gary O'Neall
*
*/
public class LicenseSheet extends AbstractSheet {
static final int NUM_COLS = 7;
static final int COL_NAME = 0;
static final int COL_ID = COL_NAME + 1;
static final int COL_SOURCE_URL = COL_ID + 1;
static final int COL_NOTES = COL_SOURCE_URL + 1;
static final int COL_STANDARD_LICENSE_HEADER = COL_NOTES + 1;
static final int COL_TEXT = COL_STANDARD_LICENSE_HEADER + 1;
static final int COL_TEMPLATE = COL_TEXT + 1;
static final boolean[] REQUIRED = new boolean[] {true, true, false, false,
false, true, false};
static final String[] HEADER_TITLES = new String[] {"Full name of License", "License Identifier", "Source/url", "Notes",
"Standard License Header", "Text", "Template"};
public LicenseSheet(Workbook workbook, String sheetName) {
super(workbook, sheetName);
}
/**
* Create a blank worksheet NOTE: Replaces / deletes existing sheet by the same name
*/
public static void create(Workbook wb, String sheetName) {
int sheetNum = wb.getSheetIndex(sheetName);
if (sheetNum >= 0) {
wb.removeSheetAt(sheetNum);
}
Sheet sheet = wb.createSheet(sheetName);
Row row = sheet.createRow(0);
for (int i = 0; i < HEADER_TITLES.length; i++) {
Cell cell = row.createCell(i);
cell.setCellValue(HEADER_TITLES[i]);
}
}
public void add(SPDXStandardLicense license) {
Row row = addRow();
Cell nameCell = row.createCell(COL_NAME);
nameCell.setCellValue(license.getName());
Cell idCell = row.createCell(COL_ID);
idCell.setCellValue(license.getId());
if (license.getSourceUrl() != null) {
Cell sourceUrlCell = row.createCell(COL_SOURCE_URL);
sourceUrlCell.setCellValue(license.getSourceUrl());
}
if (license.getNotes() != null) {
Cell notesCell = row.createCell(COL_NOTES);
notesCell.setCellValue(license.getNotes());
}
if (license.getStandardLicenseHeader() != null) {
Cell standardLicenseHeaderCell = row.createCell(COL_STANDARD_LICENSE_HEADER);
standardLicenseHeaderCell.setCellValue(license.getStandardLicenseHeader());
}
Cell textCell = row.createCell(COL_TEXT);
textCell.setCellValue(license.getText());
if (license.getTemplate() != null) {
Cell templateCell = row.createCell(COL_TEMPLATE);
templateCell.setCellValue(license.getTemplate());
}
}
public SPDXStandardLicense getLicense(int rowNum) {
Row row = sheet.getRow(rowNum);
if (row == null) {
return null;
}
String id = null;
Cell idCell = row.getCell(COL_ID);
if (idCell != null) {
id = idCell.getStringCellValue();
}
String name = null;
Cell nameCell = row.getCell(COL_NAME);
if (nameCell != null) {
name = nameCell.getStringCellValue();
}
String notes = null;
Cell notesCell = row.getCell(COL_NOTES);
if (notesCell != null) {
notes = notesCell.getStringCellValue();
}
String sourceURL = null;
Cell sourceURLCell = row.getCell(COL_SOURCE_URL);
if (sourceURLCell != null) {
sourceURL = sourceURLCell.getStringCellValue();
}
String stdLicHeader = null;
Cell stdLicHeaderCell = row.getCell(COL_STANDARD_LICENSE_HEADER);
if (stdLicHeaderCell != null) {
stdLicHeader = stdLicHeaderCell.getStringCellValue();
}
String template = null;
Cell templateCell = row.getCell(COL_TEMPLATE);
if (templateCell != null) {
template = templateCell.getStringCellValue();
}
String text = null;
Cell textCell = row.getCell(COL_TEXT);
if (textCell != null) {
text = textCell.getStringCellValue();
}
return new SPDXStandardLicense(name, id, text, sourceURL, notes, stdLicHeader, template);
}
/* (non-Javadoc)
* @see org.spdx.rdfparser.AbstractSheet#verify()
*/
@Override
public String verify() {
try {
if (sheet == null) {
return "Worksheet for SPDX Licenses does not exist";
}
Row firstRow = sheet.getRow(firstRowNum);
for (int i = 0; i < NUM_COLS; i++) {
Cell cell = firstRow.getCell(i+firstCellNum);
if (cell == null ||
cell.getStringCellValue() == null ||
!cell.getStringCellValue().equals(HEADER_TITLES[i])) {
return "Column "+HEADER_TITLES[i]+" missing for SPDX Licenses worksheet";
}
}
// validate rows
boolean done = false;
int rowNum = firstRowNum + 1;
while (!done) {
Row row = sheet.getRow(rowNum);
if (row == null || row.getCell(firstCellNum) == null) {
done = true;
} else {
String error = validateRow(row);
if (error != null) {
return error;
}
rowNum++;
}
}
return null;
} catch (Exception ex) {
return "Error in verifying SPDX License work sheet: "+ex.getMessage();
}
}
private String validateRow(Row row) {
for (int i = 0; i < NUM_COLS; i++) {
Cell cell = row.getCell(i);
if (cell == null) {
if (REQUIRED[i]) {
return "Required cell "+HEADER_TITLES[i]+" missing for row "+String.valueOf(row.getRowNum());
}
} else {
// if (cell.getCellType() != Cell.CELL_TYPE_STRING) {
// return "Invalid cell format for "+HEADER_TITLES[i]+" for forw "+String.valueOf(row.getRowNum());
// }
}
}
return null;
}
}