biz.ganttproject.impex.csv.ResourceRecords.java Source code

Java tutorial

Introduction

Here is the source code for biz.ganttproject.impex.csv.ResourceRecords.java

Source

/*
Copyright 2014 BarD Software s.r.o
    
This file is part of GanttProject, an opensource project management tool.
    
GanttProject is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
    
GanttProject is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
    
You should have received a copy of the GNU General Public License
along with GanttProject.  If not, see <http://www.gnu.org/licenses/>.
*/
package biz.ganttproject.impex.csv;

import java.util.List;

import net.sourceforge.ganttproject.ResourceDefaultColumn;
import net.sourceforge.ganttproject.language.GanttLanguage;
import net.sourceforge.ganttproject.resource.HumanResource;
import net.sourceforge.ganttproject.resource.HumanResourceManager;

import org.apache.commons.csv.CSVRecord;

import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Sets;

/**
 * Class responsible for processing resource records in CSV import
 *
 * @author dbarashev (Dmitry Barashev)
 */
class ResourceRecords extends RecordGroup {
    public enum ResourceFields {
        ID("tableColID"), NAME("tableColResourceName"), EMAIL("tableColResourceEMail"), PHONE(
                "tableColResourcePhone"), ROLE("tableColResourceRole");

        private final String text;

        private ResourceFields(final String text) {
            this.text = text;
        }

        @Override
        public String toString() {
            // Return translated field name
            return GanttLanguage.getInstance().getText(text);
        }
    }

    private final HumanResourceManager resourceManager;

    ResourceRecords(HumanResourceManager resourceManager) {
        super("Resource group",
                Sets.union(Sets.newHashSet(GanttCSVOpen.getFieldNames(ResourceFields.values())),
                        ImmutableSet.of(ResourceDefaultColumn.STANDARD_RATE.getName())),
                Sets.newHashSet(GanttCSVOpen.getFieldNames(ResourceFields.ID, ResourceFields.NAME)));
        this.resourceManager = resourceManager;
    }

    @Override
    public void setHeader(List<String> header) {
        super.setHeader(header);
        GanttCSVOpen.createCustomProperties(getCustomFields(), resourceManager.getCustomPropertyManager());
    }

    @Override
    protected boolean doProcess(CSVRecord record) {
        if (!super.doProcess(record)) {
            return false;
        }
        if (!hasMandatoryFields(record)) {
            return false;
        }
        assert record.size() > 0;
        HumanResource hr = resourceManager.newResourceBuilder()
                .withName(getOrNull(record, ResourceFields.NAME.toString()))
                .withID(getOrNull(record, ResourceFields.ID.toString()))
                .withEmail(getOrNull(record, ResourceFields.EMAIL.toString()))
                .withPhone(getOrNull(record, ResourceFields.PHONE.toString()))
                .withRole(getOrNull(record, ResourceFields.ROLE.toString()))
                .withStandardRate(getOrNull(record, ResourceDefaultColumn.STANDARD_RATE.getName())).build();
        for (String customField : getCustomFields()) {
            String value = getOrNull(record, customField);
            if (value != null) {
                hr.addCustomProperty(
                        resourceManager.getCustomPropertyManager().getCustomPropertyDefinition(customField), value);
            }
        }
        return true;
    }
}