org.oscarehr.PMmodule.exporter.DATISProgramInformation.java Source code

Java tutorial

Introduction

Here is the source code for org.oscarehr.PMmodule.exporter.DATISProgramInformation.java

Source

/**
 *
 * Copyright (c) 2005-2012. Centre for Research on Inner City Health, St. Michael's Hospital, Toronto. All Rights Reserved.
 * This software is published under the GPL GNU General Public License.
 * This program 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 2
 * of the License, or (at your option) any later version.
 *
 * This program 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 this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 * This software was written for
 * Centre for Research on Inner City Health, St. Michael's Hospital,
 * Toronto, Ontario, Canada
 */

package org.oscarehr.PMmodule.exporter;

import java.util.List;
import java.util.Set;

import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.collections.Predicate;
import org.apache.log4j.Logger;
import org.oscarehr.PMmodule.model.IntakeAnswer;
import org.oscarehr.PMmodule.model.IntakeNode;

public class DATISProgramInformation extends AbstractIntakeExporter {

    private static final String FILE_PREFIX = "File4";

    private static final Logger log = Logger.getLogger(DATISProgramInformation.class);

    @Override
    protected String exportData() throws ExportException {
        List<IntakeNode> intakeNodes = intake.getNode().getChildren();
        StringBuilder buf = new StringBuilder();

        IntakeNode file4Node = null;

        for (IntakeNode inode : intakeNodes) {
            if (inode.getLabelStr().startsWith(FILE_PREFIX)) {
                file4Node = inode;
                break;
            }
        }

        Set<IntakeAnswer> answers = intake.getAnswers();

        int counter = 0;
        for (IntakeAnswer ans : answers) {
            if (counter == fields.size()) {
                break;
            }
            if (ans.getNode().getGrandParent().equals(file4Node)) {
                final String lbl = ans.getNode().getParent().getLabelStr().toUpperCase();
                DATISField found = (DATISField) CollectionUtils.find(fields, new Predicate() {

                    public boolean evaluate(Object arg0) {
                        DATISField field = (DATISField) arg0;
                        if (lbl.startsWith(field.getName())) {
                            return true;
                        }
                        return false;
                    }

                });

                if (found != null) {
                    writeCSV(buf, ans, found);
                    //writeData(buf, ans, found);
                    counter++;
                }
            }
        }

        if (buf.lastIndexOf(",") == -1) {
            return buf.toString();
        }

        return buf.substring(0, buf.lastIndexOf(",")).toString();
    }

}