Skip to content

Commit

Permalink
🐛 Fix #27
Browse files Browse the repository at this point in the history
  • Loading branch information
circlespainter committed May 24, 2015
1 parent bb26039 commit 40a7869
Show file tree
Hide file tree
Showing 16 changed files with 5,074 additions and 125 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,162 @@
/*
* COMSAT
* Copyright (c) 2013-2015, Parallel Universe Software Co. All rights reserved.
*
* This program and the accompanying materials are dual-licensed under
* either the terms of the Eclipse Public License v1.0 as published by
* the Eclipse Foundation
*
* or (per the licensee's choosing)
*
* under the terms of the GNU Lesser General Public License version 3.0
* as published by the Free Software Foundation.
*/
package co.paralleluniverse.fibers.jdbc;

import co.paralleluniverse.common.util.CheckedCallable;
import co.paralleluniverse.fibers.Suspendable;
import java.sql.Array;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Map;
import java.util.concurrent.ExecutorService;

/**
* @author crclespainter
*/
class FiberArray implements Array {
private final Array array;
private final ExecutorService executor;

public FiberArray(final Array array, final ExecutorService executor) {
this.array = array;
this.executor = executor;
}

@Override
@Suspendable
public String getBaseTypeName() throws SQLException {
return JDBCFiberAsync.exec(executor, new CheckedCallable<String, SQLException>() {
@Override
public String call() throws SQLException {
return array.getBaseTypeName();
}
});
}

@Override
@Suspendable
public int getBaseType() throws SQLException {
return JDBCFiberAsync.exec(executor, new CheckedCallable<Integer, SQLException>() {
@Override
public Integer call() throws SQLException {
return array.getBaseType();
}
});
}

@Override
@Suspendable
public Object getArray() throws SQLException {
return JDBCFiberAsync.exec(executor, new CheckedCallable<Object, SQLException>() {
@Override
public Object call() throws SQLException {
return array.getArray();
}
});
}

@Override
@Suspendable
public Object getArray(final Map<String, Class<?>> map) throws SQLException {
return JDBCFiberAsync.exec(executor, new CheckedCallable<Object, SQLException>() {
@Override
public Object call() throws SQLException {
return array.getArray(map);
}
});
}

@Override
@Suspendable
public Object getArray(final long index, final int count) throws SQLException {
return JDBCFiberAsync.exec(executor, new CheckedCallable<Object, SQLException>() {
@Override
public Object call() throws SQLException {
return array.getArray(index, count);
}
});
}

@Override
@Suspendable
public Object getArray(final long index, final int count, final Map<String, Class<?>> map) throws SQLException {
return JDBCFiberAsync.exec(executor, new CheckedCallable<Object, SQLException>() {
@Override
public Object call() throws SQLException {
return array.getArray(index, count, map);
}
});
}

@Override
@Suspendable
public FiberResultSet getResultSet() throws SQLException {
final ResultSet result = JDBCFiberAsync.exec(executor, new CheckedCallable<ResultSet, SQLException>() {
@Override
public ResultSet call() throws SQLException {
return array.getResultSet();
}
});
return new FiberResultSet(result, executor);
}

@Override
@Suspendable
public FiberResultSet getResultSet(final Map<String, Class<?>> map) throws SQLException {
final ResultSet result = JDBCFiberAsync.exec(executor, new CheckedCallable<ResultSet, SQLException>() {
@Override
public ResultSet call() throws SQLException {
return array.getResultSet(map);
}
});
return new FiberResultSet(result, executor);

}

@Override
@Suspendable
public FiberResultSet getResultSet(final long index, final int count) throws SQLException {
final ResultSet result = JDBCFiberAsync.exec(executor, new CheckedCallable<ResultSet, SQLException>() {
@Override
public ResultSet call() throws SQLException {
return array.getResultSet(index, count);
}
});
return new FiberResultSet(result, executor);
}

@Override
@Suspendable
public FiberResultSet getResultSet(final long index, final int count, final Map<String, Class<?>> map) throws SQLException {
final ResultSet result = JDBCFiberAsync.exec(executor, new CheckedCallable<ResultSet, SQLException>() {
@Override
public ResultSet call() throws SQLException {
return array.getResultSet(index, count, map);
}
});
return new FiberResultSet(result, executor);
}

@Override
@Suspendable
public void free() throws SQLException {
JDBCFiberAsync.exec(executor, new CheckedCallable<Void, SQLException>() {
@Override
public Void call() throws SQLException {
array.free();
return null;
}
});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

import co.paralleluniverse.common.util.CheckedCallable;
import co.paralleluniverse.fibers.Suspendable;
import com.google.common.util.concurrent.ListeningExecutorService;
import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
Expand All @@ -34,12 +33,13 @@
import java.sql.Timestamp;
import java.util.Calendar;
import java.util.Map;
import java.util.concurrent.ExecutorService;

/**
* @author eitan
*/
class FiberCallableStatement extends FiberPreparedStatement implements CallableStatement {
public FiberCallableStatement(CallableStatement cs, ListeningExecutorService exec) {
public FiberCallableStatement(final CallableStatement cs, final ExecutorService exec) {
super(cs, exec);
}

Expand Down Expand Up @@ -862,13 +862,14 @@ public Object call() throws SQLException {

@Override
@Suspendable
public Ref getRef(final String parameterName) throws SQLException {
return JDBCFiberAsync.exec(executor, new CheckedCallable<Ref, SQLException>() {
public FiberRef getRef(final String parameterName) throws SQLException {
final Ref ref = JDBCFiberAsync.exec(executor, new CheckedCallable<Ref, SQLException>() {
@Override
public Ref call() throws SQLException {
return stmt().getRef(parameterName);
}
});
return new FiberRef(ref, executor);
}

@Override
Expand Down
Loading

0 comments on commit 40a7869

Please sign in to comment.