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

io.rdbc.japi.ResultSet Maven / Gradle / Ivy

There is a newer version: 0.0.77
Show newest version
/*
 * Copyright 2016 rdbc contributors
 *
 * 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 io.rdbc.japi;


import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Objects;

/**
 * Represents a set of rows returned by a database engine.
 */
public final class ResultSet implements Iterable {

    private final long rowsAffected;
    private final List warnings;
    private final RowMetadata metadata;
    private final List rows;

    private ResultSet(long rowsAffected, List warnings,
                      RowMetadata metadata, List rows) {
        this.rowsAffected = rowsAffected;
        this.warnings = new ArrayList<>(warnings);
        this.metadata = metadata;
        this.rows = new ArrayList<>(rows);
    }

    /**
     * Creates a new instance of ResultSet.
     *
     * @param rowsAffected a number of rows that were affected by the statement
     *                     that this result set is for
     * @param warnings     a sequence of warnings that were emitted by the database
     *                     during processing the statement that this result set is for
     * @param metadata     a meta data of columns of this result set
     * @param rows         a sequence of rows returned by a database
     */
    public static ResultSet of(long rowsAffected, List warnings,
                               RowMetadata metadata, List rows) {
        return new ResultSet(
                rowsAffected,
                warnings,
                metadata,
                rows
        );
    }

    public long getRowsAffected() {
        return rowsAffected;
    }

    public List getWarnings() {
        return new ArrayList<>(warnings);
    }

    public RowMetadata getMetadata() {
        return this.metadata;
    }

    public List getRows() {
        return new ArrayList<>(rows);
    }

    @Override
    public Iterator iterator() {
        return new Iterator() {
            //this inner class was created to remove "remove()" operation
            Iterator underlying = rows.iterator();

            @Override
            public boolean hasNext() {
                return underlying.hasNext();
            }

            @Override
            public Row next() {
                return underlying.next();
            }
        };
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        ResultSet rows1 = (ResultSet) o;
        return rowsAffected == rows1.rowsAffected &&
                Objects.equals(warnings, rows1.warnings) &&
                Objects.equals(metadata, rows1.metadata) &&
                Objects.equals(rows, rows1.rows);
    }

    @Override
    public int hashCode() {

        return Objects.hash(rowsAffected, warnings, metadata, rows);
    }

    @Override
    public String toString() {
        return "ResultSet(" +
                "rowsAffected=" + rowsAffected +
                ", warnings=" + warnings +
                ", metadata=" + metadata +
                ", rows=" + rows +
                ')';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy