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

jnr.netdb.NetDBIterator Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
/*
 * Copyright (C) 2010 Wayne Meissner
 *
 * This file is part of jnr.
 *
 * 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 jnr.netdb;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.Reader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.NoSuchElementException;

final class NetDBIterator implements java.util.Iterator {

    private final BufferedReader reader;
    private NetDBEntry next = null;

    public NetDBIterator(Reader r) {
        this.reader = r instanceof BufferedReader ? (BufferedReader) r : new BufferedReader(r);
    }

    NetDBEntry readNextEntry() throws IOException {
        String s = null;

        while ((s = reader.readLine()) != null) {

            String[] line = s.split("#", 2);
            // Skip empty lines, or lines that are all comment
            if (line.length < 1 || line[0].length() == 0) {
                continue;
            }

            String[] fields = line[0].trim().split("\\s+");
            if (fields.length < 2 || fields[0] == null || fields[1] == null) {
                continue;
            }

            String serviceName = fields[0];
            String data = fields[1];
            List aliases;
            if (fields.length > 2) {
                aliases = new ArrayList(fields.length - 2);
                for (int i = 2; i < fields.length; ++i) {
                    if (fields[i] != null) {
                        aliases.add(fields[i]);
                    }
                }
            } else {
                aliases = Collections.emptyList();
            }

            return new NetDBEntry(serviceName, data, aliases);
        }
        
        return null;
    }

    public boolean hasNext() {
        try {
            return next != null || (next = readNextEntry()) != null;
        } catch (IOException ex) {
            return false;
        }
    }

    public NetDBEntry next() {
        try {
            NetDBEntry s = next != null ? next : readNextEntry();
            if (s == null) {
                throw new NoSuchElementException("not found");
            }
            next = null;

            return s;

        } catch (IOException ex) {
            throw new NoSuchElementException(ex.getMessage());
        }
    }

    public void remove() {
        throw new UnsupportedOperationException("Not supported yet.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy