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

org.github.evenjn.align.graph.TupleAlignmentGraphSerializer Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
/**
 *
 * Copyright 2016 Marco Trevisan
 *
 * 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 org.github.evenjn.align.graph;

import org.github.evenjn.yarn.Cursable;
import org.github.evenjn.yarn.Cursor;
import org.github.evenjn.yarn.Hook;
import org.github.evenjn.yarn.PastTheEndException;

public class TupleAlignmentGraphSerializer
		implements
		Cursable {

	private TupleAlignmentGraph graph;

	public TupleAlignmentGraphSerializer(TupleAlignmentGraph graph) {
		this.graph = graph;
	}

	@Override
	public Cursor pull( Hook hook ) {
		return new Cursor( ) {

			boolean started = false;

			private int a = 0;

			private int b = 0;

			private int e = 0;

			@Override
			public String next( )
					throws PastTheEndException {
				if ( !started ) {
					started = true;
					return "";
				}
				int la = graph.la( );
				int lb = graph.lb( );

				for ( ; a <= la; a++ ) {
					for ( ; b <= lb; b++ ) {
						if ( graph.matrix[a][b] == null || ( a == 0 && b == 0 ) ) {
							continue;
						}
						if ( e < graph.matrix[a][b].number_of_incoming_edges ) {
							int[] js = graph.matrix[a][b].incoming_edges[e];
							StringBuilder sb = new StringBuilder( );
							sb.append( a );
							sb.append( " " );
							sb.append( b );
							sb.append( " " );
							sb.append( js[0] );
							sb.append( " " );
							sb.append( js[1] );
							sb.append( " " );
							sb.append( js[2] );
							e++;
							return sb.toString( );
						}
						e = 0;
					}
					b = 0;
				}
				throw PastTheEndException.neo;
			}
		};
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy