All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.refine.model.changes.ColumnReorderChange Maven / Gradle / Ivy

Go to download

OpenRefine is a free, open source power tool for working with messy data and improving it

There is a newer version: 3.8.2
Show newest version
/*

Copyright 2010, Google Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

    * Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
    * Neither the name of Google Inc. nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,           
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY           
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

*/

package com.google.refine.model.changes;

import java.io.IOException;
import java.io.LineNumberReader;
import java.io.Writer;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.Properties;

import com.google.refine.history.Change;
import com.google.refine.model.Cell;
import com.google.refine.model.Column;
import com.google.refine.model.ColumnGroup;
import com.google.refine.model.Project;
import com.google.refine.model.Row;
import com.google.refine.util.Pool;

public class ColumnReorderChange extends ColumnChange {

    final protected List _columnNames;
    protected List _oldColumns;
    protected List _newColumns;
    protected List _removedColumns;
    protected List _oldColumnGroups;
    protected CellAtRowCellIndex[] _oldCells;

    public ColumnReorderChange(List columnNames) {
        _columnNames = columnNames;
    }

    @Override
    public void apply(Project project) {
        synchronized (project) {
            if (_newColumns == null) {
                _newColumns = new ArrayList();
                _oldColumns = new ArrayList(project.columnModel.columns);

                for (String n : _columnNames) {
                    Column column = project.columnModel.getColumnByName(n);
                    if (column != null) {
                        _newColumns.add(column);
                    }
                }

                _oldColumnGroups = new ArrayList(project.columnModel.columnGroups);
            }

            if (_removedColumns == null) {
                _removedColumns = new ArrayList();
                for (String n : project.columnModel.getColumnNames()) {
                    Column oldColumn = project.columnModel.getColumnByName(n);
                    if (!_newColumns.contains(oldColumn)) {
                        _removedColumns.add(oldColumn);
                    }
                }
            }

            if (_oldCells == null) {
                _oldCells = new CellAtRowCellIndex[project.rows.size() * _removedColumns.size()];

                int count = 0;
                for (int i = 0; i < project.rows.size(); i++) {
                    for (int j = 0; j < _removedColumns.size(); j++) {
                        int cellIndex = _removedColumns.get(j).getCellIndex();
                        Row row = project.rows.get(i);

                        Cell oldCell = null;
                        if (cellIndex < row.cells.size()) {
                            oldCell = row.cells.get(cellIndex);
                        }
                        _oldCells[count++] = new CellAtRowCellIndex(i, cellIndex, oldCell);
                    }
                }
            }

            // Clear cells on removed columns.
            for (int i = 0; i < project.rows.size(); i++) {
                for (int j = 0; j < _removedColumns.size(); j++) {
                    int cellIndex = _removedColumns.get(j).getCellIndex();
                    Row row = project.rows.get(i);
                    row.setCell(cellIndex, null);
                }
            }

            project.columnModel.columns.clear();
            project.columnModel.columns.addAll(_newColumns);
            project.columnModel.columnGroups.clear();

            project.update();
        }
    }

    @Override
    public void revert(Project project) {
        synchronized (project) {
            project.columnModel.columns.clear();
            project.columnModel.columns.addAll(_oldColumns);

            project.columnModel.columnGroups.clear();
            project.columnModel.columnGroups.addAll(_oldColumnGroups);

            for (int i = 0; i < _oldCells.length; i++) {
                Row row = project.rows.get(_oldCells[i].row);
                row.setCell(_oldCells[i].cellIndex, _oldCells[i].cell);
            }

            project.update();
        }
    }

    @Override
    public void save(Writer writer, Properties options) throws IOException {
        writer.write("columnNameCount=");
        writer.write(Integer.toString(_columnNames.size()));
        writer.write('\n');
        for (String n : _columnNames) {
            writer.write(n);
            writer.write('\n');
        }
        writer.write("oldColumnCount=");
        writer.write(Integer.toString(_oldColumns.size()));
        writer.write('\n');
        for (Column c : _oldColumns) {
            c.save(writer);
            writer.write('\n');
        }
        writer.write("newColumnCount=");
        writer.write(Integer.toString(_newColumns.size()));
        writer.write('\n');
        for (Column c : _newColumns) {
            c.save(writer);
            writer.write('\n');
        }
        writer.write("removedColumnCount=");
        writer.write(Integer.toString(_removedColumns.size()));
        writer.write('\n');
        for (Column c : _removedColumns) {
            c.save(writer);
            writer.write('\n');
        }
        writer.write("oldCellCount=");
        writer.write(Integer.toString(_oldCells.length));
        writer.write('\n');
        for (CellAtRowCellIndex c : _oldCells) {
            c.save(writer, options);
            writer.write('\n');
        }

        writeOldColumnGroups(writer, options, _oldColumnGroups);
        writer.write("/ec/\n"); // end of change marker
    }

    static public Change load(LineNumberReader reader, Pool pool) throws Exception {
        List columnNames = new ArrayList();
        List oldColumns = new ArrayList();
        List newColumns = new ArrayList();
        List removedColumns = new ArrayList();
        CellAtRowCellIndex[] oldCells = new CellAtRowCellIndex[0];
        List oldColumnGroups = null;

        String line;
        while ((line = reader.readLine()) != null && !"/ec/".equals(line)) {
            int equal = line.indexOf('=');
            CharSequence field = line.subSequence(0, equal);

            if ("columnNameCount".equals(field)) {
                int count = Integer.parseInt(line.substring(equal + 1));
                for (int i = 0; i < count; i++) {
                    line = reader.readLine();
                    if (line != null) {
                        columnNames.add(line);
                    }
                }
            } else if ("oldColumnCount".equals(field)) {
                int count = Integer.parseInt(line.substring(equal + 1));
                for (int i = 0; i < count; i++) {
                    line = reader.readLine();
                    if (line != null) {
                        oldColumns.add(Column.load(line));
                    }
                }
            } else if ("newColumnCount".equals(field)) {
                int count = Integer.parseInt(line.substring(equal + 1));
                for (int i = 0; i < count; i++) {
                    line = reader.readLine();
                    if (line != null) {
                        newColumns.add(Column.load(line));
                    }
                }
            } else if ("removedColumnCount".equals(field)) {
                int count = Integer.parseInt(line.substring(equal + 1));
                for (int i = 0; i < count; i++) {
                    line = reader.readLine();
                    if (line != null) {
                        removedColumns.add(Column.load(line));
                    }
                }
            } else if ("oldCellCount".equals(field)) {
                int oldCellCount = Integer.parseInt(line.substring(equal + 1));

                oldCells = new CellAtRowCellIndex[oldCellCount];
                for (int i = 0; i < oldCellCount; i++) {
                    line = reader.readLine();
                    if (line != null) {
                        oldCells[i] = CellAtRowCellIndex.load(line, pool);
                    }
                }
            } else if ("oldColumnGroupCount".equals(field)) {
                int oldColumnGroupCount = Integer.parseInt(line.substring(equal + 1));

                oldColumnGroups = readOldColumnGroups(reader, oldColumnGroupCount);
            }
        }

        ColumnReorderChange change = new ColumnReorderChange(columnNames);
        change._oldColumns = oldColumns;
        change._newColumns = newColumns;
        change._removedColumns = removedColumns;
        change._oldCells = oldCells;
        change._oldColumnGroups = oldColumnGroups != null ? oldColumnGroups : new LinkedList();

        return change;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy