forked from MobilityFirst/gigapaxos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit c3d9fe3
Showing
798 changed files
with
71,354 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* Copyright (c) 2015 University of Massachusetts | ||
* | ||
* 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. | ||
* | ||
* Initial developer(s): V. Arun | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#Build Number for ANT. Do not edit! | ||
#Mon Nov 16 19:48:34 EST 2015 | ||
build.number=267 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
VERSION=1.16 | ||
RELEASE=2015-11-16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,185 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project | ||
name="Build file for gigapaxos" | ||
basedir="." | ||
default="jar" > | ||
|
||
<property name="src.dir" value="src"/> | ||
<property name="testsrc.dir" location="test"/> | ||
<property name="build.dir" value="build"/> | ||
<property name="build.classes.dir" value="${build.dir}/classes"/> | ||
<property name="build.test.classes.dir" value="${build.dir}/test/classes"/> | ||
<property name="test.dir" value="test" /> | ||
<property name="build.test.dir" value="${build.dir}/test"/> | ||
<property name="build.jar.dir" value="${build.dir}/jars"/> | ||
<property name="lib.dir" value="lib"/> | ||
<property name="dist.dir" value="dist"/> | ||
<!-- <property name="jars.dir" value="jars"/>--> | ||
<!-- <property name="conf.dir" value="conf"/> | ||
<property name="scripts.dir" value="scripts"/>--> | ||
|
||
<!-- Properties --> | ||
<property file="build.properties" /> | ||
|
||
<path id="classpath.base"> | ||
<pathelement location="${build.dir}"/> | ||
<pathelement location="${build.classes.dor}"/> | ||
<!-- <pathelement location="${conf.dir}"/>--> | ||
<fileset dir="${lib.dir}"> | ||
<include name="*.jar"/> | ||
</fileset> | ||
</path> | ||
|
||
<target name="init"> | ||
<tstamp/> | ||
<mkdir dir="${build.dir}"/> | ||
<mkdir dir="${build.classes.dir}"/> | ||
</target> | ||
|
||
<target name="compile" depends="init, buildnumber" description="compile java files"> | ||
<javac srcdir="${src.dir}" destdir="${build.classes.dir}" debug="true" debuglevel="lines,vars,source" | ||
includeantruntime="false"> | ||
<compilerarg value="-Xlint:unchecked"/> | ||
<classpath refid="classpath.base"/> | ||
</javac> | ||
</target> | ||
|
||
<target name="nio_jarbuild" depends="compile" description="generate jar files"> | ||
<mkdir dir="${build.jar.dir}"/> | ||
<jar destfile="${build.jar.dir}/nio-1.2.jar" filesetmanifest="mergewithoutmain"> | ||
<manifest> | ||
<attribute name="Built-By" value="${user.name}"/> | ||
<attribute name="Implementation-Vendor" | ||
value="University of Massachusetts" /> | ||
<attribute name="Implementation-Title" value="GNS Nio Library" /> | ||
<attribute name="Implementation-Version" | ||
value="${VERSION}-${RELEASE}" /> | ||
<attribute name="Build-Version" value="${version.code}" /> | ||
</manifest> | ||
<fileset dir="${build.classes.dir}" includes="edu/umass/cs/nio/*.class"/> | ||
<fileset dir="${build.classes.dir}" includes="edu/umass/cs/nio/nioutils/*.class"/> | ||
<fileset dir="${build.classes.dir}" includes="edu/umass/cs/utils/*.class"/> | ||
<fileset dir="${build.classes.dir}" includes="org/json/*.class"/> | ||
<!-- interesting special cases here added because of one use of ReconfigurableClient in NIOInstrumenter --> | ||
<fileset dir="${build.classes.dir}" includes="edu/umass/cs/reconfiguration/**/*.class"/> | ||
<fileset dir="${build.classes.dir}" includes="edu/umass/cs/gigapaxos/**/*.class"/> | ||
<fileset dir="${build.classes.dir}" includes="edu/umass/cs/protocoltask/**/*.class"/> | ||
|
||
<!-- <fileset dir="${conf.dir}" includes="trustStore/**, keystore/**" />--> | ||
</jar> | ||
</target> | ||
|
||
<target name="gigapaxos_jarbuild" depends="compile" description="generate jar files"> | ||
<mkdir dir="${build.jar.dir}"/> | ||
<jar destfile="${build.jar.dir}/gigapaxos-1.0.jar" filesetmanifest="mergewithoutmain"> | ||
<manifest> | ||
<attribute name="Built-By" value="${user.name}"/> | ||
<attribute name="Implementation-Vendor" | ||
value="University of Massachusetts" /> | ||
<attribute name="Implementation-Title" value="GNS Gigapaxos Library" /> | ||
<attribute name="Implementation-Version" | ||
value="${VERSION}-${RELEASE}" /> | ||
<attribute name="Build-Version" value="${version.code}" /> | ||
</manifest> | ||
<fileset dir="${build.classes.dir}" includes="edu/umass/cs/nio/*.class"/> | ||
<fileset dir="${build.classes.dir}" includes="edu/umass/cs/nio/nioutils/*.class"/> | ||
<fileset dir="${build.classes.dir}" includes="edu/umass/cs/utils/*.class"/> | ||
<fileset dir="${build.classes.dir}" includes="org/json/*.class"/> | ||
<!-- interesting special cases here added because of one use of ReconfigurableClient in NIOInstrumenter --> | ||
<fileset dir="${build.classes.dir}" includes="edu/umass/cs/reconfiguration/**/*.class"/> | ||
<fileset dir="${build.classes.dir}" includes="edu/umass/cs/gigapaxos/**/*.class"/> | ||
<fileset dir="${build.classes.dir}" includes="edu/umass/cs/protocoltask/**/*.class"/> | ||
|
||
<!-- <fileset dir="${conf.dir}" includes="trustStore/**, keystore/**" />--> | ||
</jar> | ||
</target> | ||
|
||
<target name="clean" description="remove generated files"> | ||
<delete dir="${build.dir}"/> | ||
<delete dir="${dist.dir}"/> | ||
<!-- <delete dir="${jars.dir}"/>--> | ||
</target> | ||
|
||
<target name="doc" description="generate javadoc"> | ||
<mkdir dir="${build.dir}/doc"/> | ||
<javadoc packagenames="edu.umass.cs.*" | ||
sourcepath="${src.dir}" | ||
destdir="${build.dir}/doc" | ||
additionalparam="-Xdoclint:none"> | ||
<classpath refid="classpath.base"/> | ||
<!-- <link href="http://java.sun.com/javase/6/docs/api/"/>--> | ||
</javadoc> | ||
<mkdir dir="${dist.dir}/doc"/> | ||
<copy todir="${dist.dir}/doc"> | ||
<fileset dir="${build.dir}/doc" includes="**"/> | ||
</copy> | ||
</target> | ||
|
||
<target name="jar" depends="nio_jarbuild, gigapaxos_jarbuild"> | ||
<!-- copy jars into dist/jars --> | ||
<mkdir dir="${dist.dir}"/> | ||
<copy todir="${dist.dir}"> | ||
<fileset dir="${build.jar.dir}" includes="*.jar"/> | ||
</copy> | ||
<!-- <mkdir dir="${jars.dir}"/> | ||
<copy todir="${jars.dir}"> | ||
<fileset dir="${build.jar.dir}" includes="*.jar"/> | ||
</copy>--> | ||
|
||
</target> | ||
|
||
<path id="classpath.test"> | ||
<pathelement location="${build.classes.dir}"/> | ||
<pathelement location="${lib.dir}/junit-4.11.jar"/> | ||
<pathelement location="${lib.dir}/hamcrest-all-1.3.jar"/> | ||
<!-- <pathelement location="${conf.dir}"/>--> | ||
</path> | ||
|
||
<target name="ensure-test-name" unless="test"> | ||
<fail message="You must run this target with -Dtest=TestName"/> | ||
</target> | ||
|
||
<target name="compiletest" depends="compile" description="Compile all the test files"> | ||
<mkdir dir="${build.test.dir}" /> | ||
<mkdir dir="${build.test.classes.dir}" /> | ||
<javac srcdir="${test.dir}" | ||
destdir="${build.test.classes.dir}" | ||
debug="on" | ||
includeantruntime="false"> | ||
<classpath refid="classpath.test"/> | ||
</javac> | ||
</target> | ||
|
||
<target name="runtest" description="Runs the test you specify on the command line with -Dtest=" | ||
depends="compiletest, ensure-test-name"> | ||
<junit printsummary="withOutAndErr" fork="yes"> | ||
<!-- <jvmarg value="-Djavax.net.ssl.trustStorePassword=qwerty"/> | ||
<jvmarg value="-Djavax.net.ssl.trustStore=conf/trustStore/node100.jks"/> | ||
<jvmarg value="-Djavax.net.debug=ssl"/>--> | ||
<classpath> | ||
<pathelement location="${build.test.classes.dir}"/> | ||
</classpath> | ||
<!-- Make sure these libraries are included --> | ||
<classpath refid="classpath.test" /> | ||
<formatter type="plain" usefile="false"/> | ||
<batchtest> | ||
<fileset dir="${test.dir}"> | ||
<include name="**/${test}.java"/> | ||
</fileset> | ||
</batchtest> | ||
</junit> | ||
</target> | ||
|
||
|
||
<target name="all" depends="clean,jar" | ||
description="build all files"/> | ||
|
||
<target name="buildnumber" description="Generates version number and sets it in properties file."> | ||
<buildnumber file="build.number" /> | ||
|
||
<property name="version.code" value="${VERSION}_${RELEASE}_build${build.number}" /> | ||
|
||
<echo>Version: ${version.code}</echo> | ||
|
||
</target> | ||
</project> |
Binary file not shown.
Binary file added
BIN
+4.6 KB
build/classes/edu/umass/cs/gigapaxos/AbstractPaxosLogger$BatchedLogger.class
Binary file not shown.
Binary file added
BIN
+1.77 KB
build/classes/edu/umass/cs/gigapaxos/AbstractPaxosLogger$CheckpointTask.class
Binary file not shown.
Binary file added
BIN
+3.74 KB
build/classes/edu/umass/cs/gigapaxos/AbstractPaxosLogger$Checkpointer.class
Binary file not shown.
Binary file added
BIN
+779 Bytes
build/classes/edu/umass/cs/gigapaxos/AbstractPaxosLogger$Main.class
Binary file not shown.
Binary file added
BIN
+610 Bytes
build/classes/edu/umass/cs/gigapaxos/AbstractPaxosLogger$PaxosPacketizer.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.17 KB
build/classes/edu/umass/cs/gigapaxos/PaxosAcceptor$InstanceType.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.55 KB
build/classes/edu/umass/cs/gigapaxos/PaxosClientAsync$ClientPacketDemultiplexer.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.6 KB
build/classes/edu/umass/cs/gigapaxos/PaxosCoordinatorState$ProposalStateAtCoordinator.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.53 KB
build/classes/edu/umass/cs/gigapaxos/PaxosInstanceStateMachine$1.class
Binary file not shown.
Binary file added
BIN
+1.3 KB
build/classes/edu/umass/cs/gigapaxos/PaxosInstanceStateMachine$SyncMode.class
Binary file not shown.
Binary file added
BIN
+1.51 KB
build/classes/edu/umass/cs/gigapaxos/PaxosInstanceStateMachine$toLog.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.01 KB
build/classes/edu/umass/cs/gigapaxos/PaxosManager$1ClientRequestTask.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.16 KB
build/classes/edu/umass/cs/gigapaxos/PaxosManager$Outstanding$1.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.12 KB
build/classes/edu/umass/cs/gigapaxos/PaxosManager$PaxosPacketDemultiplexerJSON.class
Binary file not shown.
Binary file added
BIN
+5.03 KB
build/classes/edu/umass/cs/gigapaxos/PaxosManager$PaxosPacketDemultiplexerJSONSmart.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.33 KB
build/classes/edu/umass/cs/gigapaxos/PaxosPacketBatcher$HashMapContainer.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+636 Bytes
build/classes/edu/umass/cs/gigapaxos/SQLPaxosLogger$FileOffsetLength.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.17 KB
build/classes/edu/umass/cs/gigapaxos/SQLPaxosLogger$Journaler$1.class
Binary file not shown.
Binary file added
BIN
+1.16 KB
build/classes/edu/umass/cs/gigapaxos/SQLPaxosLogger$Journaler$2.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.67 KB
build/classes/edu/umass/cs/gigapaxos/SQLPaxosLogger$MapDBContainer.class
Binary file not shown.
Binary file added
BIN
+6.71 KB
build/classes/edu/umass/cs/gigapaxos/SQLPaxosLogger$MessageLogDiskMap.class
Binary file not shown.
Binary file added
BIN
+4.77 KB
build/classes/edu/umass/cs/gigapaxos/SQLPaxosLogger$MessageLogMapDB.class
Binary file not shown.
Binary file added
BIN
+982 Bytes
build/classes/edu/umass/cs/gigapaxos/SQLPaxosLogger$MessageLogPausable$1.class
Binary file not shown.
Binary file added
BIN
+7.43 KB
build/classes/edu/umass/cs/gigapaxos/SQLPaxosLogger$MessageLogPausable.class
Binary file not shown.
Binary file added
BIN
+800 Bytes
build/classes/edu/umass/cs/gigapaxos/SQLPaxosLogger$PendingLogTask.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.18 KB
build/classes/edu/umass/cs/gigapaxos/deprecated/AbstractPaxosManager.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+288 Bytes
build/classes/edu/umass/cs/gigapaxos/deprecated/DefaultPaxosInterfaceApp$1.class
Binary file not shown.
Binary file added
BIN
+1.33 KB
build/classes/edu/umass/cs/gigapaxos/deprecated/DefaultPaxosInterfaceApp$PaxosState.class
Binary file not shown.
Binary file added
BIN
+5.87 KB
build/classes/edu/umass/cs/gigapaxos/deprecated/DefaultPaxosInterfaceApp.class
Binary file not shown.
Binary file added
BIN
+450 Bytes
build/classes/edu/umass/cs/gigapaxos/deprecated/ReplicableDeprecated.class
Binary file not shown.
Binary file added
BIN
+1.57 KB
build/classes/edu/umass/cs/gigapaxos/examples/PaxosAppRequest$Keys.class
Binary file not shown.
Binary file added
BIN
+2.61 KB
build/classes/edu/umass/cs/gigapaxos/examples/PaxosAppRequest$PacketType.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.95 KB
build/classes/edu/umass/cs/gigapaxos/examples/noop/NoopPaxosApp.class
Binary file not shown.
Binary file added
BIN
+1.64 KB
build/classes/edu/umass/cs/gigapaxos/examples/noop/NoopPaxosClient$1.class
Binary file not shown.
Binary file added
BIN
+1.46 KB
build/classes/edu/umass/cs/gigapaxos/examples/noop/NoopPaxosClient.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+314 Bytes
build/classes/edu/umass/cs/gigapaxos/interfaces/ClientMessenger.class
Binary file not shown.
Binary file added
BIN
+355 Bytes
build/classes/edu/umass/cs/gigapaxos/interfaces/ClientRequest.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+219 Bytes
build/classes/edu/umass/cs/gigapaxos/interfaces/RequestCallback.class
Binary file not shown.
Binary file added
BIN
+246 Bytes
build/classes/edu/umass/cs/gigapaxos/interfaces/SummarizableRequest.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.76 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/AcceptReplyPacket.class
Binary file not shown.
Binary file added
BIN
+8.86 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/BatchedAccept.class
Binary file not shown.
Binary file added
BIN
+3.86 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/BatchedAcceptReply.class
Binary file not shown.
Binary file added
BIN
+5.62 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/BatchedCommit.class
Binary file not shown.
Binary file added
BIN
+5.59 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/BatchedPaxosPacket.class
Binary file not shown.
Binary file added
BIN
+1.37 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/FailureDetectionPacket$Keys.class
Binary file not shown.
Binary file added
BIN
+3.51 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/FailureDetectionPacket.class
Binary file not shown.
Binary file added
BIN
+1.07 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/FindReplicaGroupPacket$1.class
Binary file not shown.
Binary file added
BIN
+5.79 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/FindReplicaGroupPacket.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.27 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/PaxosPacket$1.class
Binary file not shown.
Binary file added
BIN
+954 Bytes
build/classes/edu/umass/cs/gigapaxos/paxospackets/PaxosPacket$2.class
Binary file not shown.
Binary file added
BIN
+2.29 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/PaxosPacket$Keys.class
Binary file not shown.
Binary file added
BIN
+1.38 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/PaxosPacket$NodeIDKeys.class
Binary file not shown.
Binary file added
BIN
+4.4 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/PaxosPacket$PaxosPacketType.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.43 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/PreparePacket.class
Binary file not shown.
Binary file added
BIN
+9.68 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/PrepareReplyPacket.class
Binary file not shown.
Binary file added
BIN
+2.61 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/ProposalPacket.class
Binary file not shown.
Binary file added
BIN
+1.92 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/RequestPacket$Keys.class
Binary file not shown.
Binary file added
BIN
+1.27 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/RequestPacket$ResponseCodes.class
Binary file not shown.
Binary file added
BIN
+26.1 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/RequestPacket.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.36 KB
build/classes/edu/umass/cs/gigapaxos/paxospackets/SyncDecisionsPacket.class
Binary file not shown.
Binary file added
BIN
+1.13 KB
build/classes/edu/umass/cs/gigapaxos/paxosutil/ActivePaxosState.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.28 KB
build/classes/edu/umass/cs/gigapaxos/paxosutil/ConsumerBatchTask.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.15 KB
build/classes/edu/umass/cs/gigapaxos/paxosutil/LogIndex$LogIndexEntry.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.68 KB
build/classes/edu/umass/cs/gigapaxos/paxosutil/LogMessagingTask.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+476 Bytes
build/classes/edu/umass/cs/gigapaxos/paxosutil/OverloadException.class
Binary file not shown.
Binary file added
BIN
+515 Bytes
build/classes/edu/umass/cs/gigapaxos/paxosutil/PaxosInstanceCreationException.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.67 KB
build/classes/edu/umass/cs/gigapaxos/paxosutil/PaxosPacketDemultiplexer$1.class
Binary file not shown.
Binary file added
BIN
+4.71 KB
build/classes/edu/umass/cs/gigapaxos/paxosutil/PaxosPacketDemultiplexer.class
Binary file not shown.
Binary file added
BIN
+1.09 KB
build/classes/edu/umass/cs/gigapaxos/paxosutil/PaxosPacketDemultiplexerJSONSmart$1.class
Binary file not shown.
Binary file added
BIN
+7.07 KB
build/classes/edu/umass/cs/gigapaxos/paxosutil/PaxosPacketDemultiplexerJSONSmart.class
Binary file not shown.
Binary file added
BIN
+1.23 KB
build/classes/edu/umass/cs/gigapaxos/paxosutil/PendingDigests$1.class
Binary file not shown.
Binary file added
BIN
+560 Bytes
build/classes/edu/umass/cs/gigapaxos/paxosutil/PendingDigests$PendingDigestCallback.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+7.52 KB
build/classes/edu/umass/cs/gigapaxos/paxosutil/PrepareReplyAssembler.class
Binary file not shown.
Binary file added
BIN
+1.38 KB
build/classes/edu/umass/cs/gigapaxos/paxosutil/RateLimiter$Main.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.11 KB
build/classes/edu/umass/cs/gigapaxos/paxosutil/RequestInstrumenter.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+434 Bytes
build/classes/edu/umass/cs/gigapaxos/paxosutil/StringContainer.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.59 KB
build/classes/edu/umass/cs/gigapaxos/testing/TESTPaxosApp$AllApps.class
Binary file not shown.
Binary file added
BIN
+2.36 KB
build/classes/edu/umass/cs/gigapaxos/testing/TESTPaxosApp$PaxosState.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+255 Bytes
build/classes/edu/umass/cs/gigapaxos/testing/TESTPaxosClient$1.class
Binary file not shown.
Binary file added
BIN
+4.75 KB
build/classes/edu/umass/cs/gigapaxos/testing/TESTPaxosClient$ClientPacketDemultiplexer.class
Binary file not shown.
Binary file added
BIN
+2.87 KB
build/classes/edu/umass/cs/gigapaxos/testing/TESTPaxosClient$Retransmitter.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.34 KB
build/classes/edu/umass/cs/gigapaxos/testing/TESTPaxosConfig$TC.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+821 Bytes
build/classes/edu/umass/cs/gigapaxos/testing/TESTPaxosShutdownThread$Main.class
Binary file not shown.
Binary file added
BIN
+3.69 KB
build/classes/edu/umass/cs/gigapaxos/testing/TESTPaxosShutdownThread.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.96 KB
build/classes/edu/umass/cs/nio/AbstractPacketDemultiplexer$Tasker.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+992 Bytes
build/classes/edu/umass/cs/nio/JSONMessenger$JSONObjectWrapper.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+766 Bytes
build/classes/edu/umass/cs/nio/NIOTransport$AlternatingByteBuffer.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.15 KB
build/classes/edu/umass/cs/nio/SSLDataProcessingWorker$NonBlockingSSLImpl.class
Binary file not shown.
Binary file added
BIN
+1.25 KB
build/classes/edu/umass/cs/nio/SSLDataProcessingWorker$SSL_MODES.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+284 Bytes
build/classes/edu/umass/cs/nio/interfaces/DataProcessingWorker.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+531 Bytes
build/classes/edu/umass/cs/nio/interfaces/InterfaceMessageExtractor.class
Binary file not shown.
Binary file added
BIN
+1.31 KB
build/classes/edu/umass/cs/nio/interfaces/InterfaceNIOTransport.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+295 Bytes
build/classes/edu/umass/cs/nio/interfaces/PacketDemultiplexer.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.3 KB
build/classes/edu/umass/cs/nio/nioutils/DataProcessingWorkerDefault.class
Binary file not shown.
Binary file added
BIN
+400 Bytes
build/classes/edu/umass/cs/nio/nioutils/InterfaceDelayEmulator.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+740 Bytes
build/classes/edu/umass/cs/nio/nioutils/NIOTester$1PDSender$1.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+746 Bytes
build/classes/edu/umass/cs/nio/nioutils/NIOTesterD$1PDSender$1.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+659 Bytes
build/classes/edu/umass/cs/nio/nioutils/PacketDemultiplexerDefault.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.64 KB
build/classes/edu/umass/cs/nio/nioutils/StringifiableDefault$Main.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+492 Bytes
build/classes/edu/umass/cs/protocoltask/CancelProtocolTaskException.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.67 KB
build/classes/edu/umass/cs/protocoltask/ProtocolExecutor$Restarter.class
Binary file not shown.
Binary file added
BIN
+1.61 KB
build/classes/edu/umass/cs/protocoltask/ProtocolExecutor$TooManyTasksWarner.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+589 Bytes
build/classes/edu/umass/cs/protocoltask/ProtocolTaskCreationException.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+556 Bytes
build/classes/edu/umass/cs/protocoltask/SchedulableProtocolTask.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+455 Bytes
build/classes/edu/umass/cs/protocoltask/ThresholdProtocolEvent.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+946 Bytes
build/classes/edu/umass/cs/protocoltask/examples/ExampleNode$1.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+991 Bytes
build/classes/edu/umass/cs/protocoltask/examples/ExamplePacketDemultiplexer$1.class
Binary file not shown.
Binary file added
BIN
+2.54 KB
build/classes/edu/umass/cs/protocoltask/examples/ExamplePacketDemultiplexer.class
Binary file not shown.
Binary file added
BIN
+1.85 KB
build/classes/edu/umass/cs/protocoltask/examples/PingPongPacket$PacketType.class
Binary file not shown.
Binary file added
BIN
+3.67 KB
build/classes/edu/umass/cs/protocoltask/examples/PingPongPacket.class
Binary file not shown.
Binary file added
BIN
+905 Bytes
build/classes/edu/umass/cs/protocoltask/examples/PingPongServer$1.class
Binary file not shown.
Binary file added
BIN
+5.07 KB
build/classes/edu/umass/cs/protocoltask/examples/PingPongServer.class
Binary file not shown.
Binary file added
BIN
+941 Bytes
build/classes/edu/umass/cs/protocoltask/examples/pingpong/PingPongProtocolTask$1.class
Binary file not shown.
Binary file added
BIN
+6.14 KB
build/classes/edu/umass/cs/protocoltask/examples/pingpong/PingPongProtocolTask.class
Binary file not shown.
Binary file added
BIN
+968 Bytes
...asses/edu/umass/cs/protocoltask/examples/thresholdfetch/MajorityFetchProtocolTask$1.class
Binary file not shown.
Binary file added
BIN
+6.79 KB
...classes/edu/umass/cs/protocoltask/examples/thresholdfetch/MajorityFetchProtocolTask.class
Binary file not shown.
Binary file added
BIN
+1.23 KB
build/classes/edu/umass/cs/protocoltask/json/ProtocolPacket$Keys.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.4 KB
build/classes/edu/umass/cs/reconfiguration/AbstractReconfiguratorDB$1.class
Binary file not shown.
Binary file added
BIN
+885 Bytes
build/classes/edu/umass/cs/reconfiguration/AbstractReconfiguratorDB$2$1.class
Binary file not shown.
Binary file added
BIN
+1.05 KB
build/classes/edu/umass/cs/reconfiguration/AbstractReconfiguratorDB$2.class
Binary file not shown.
Binary file added
BIN
+1.25 KB
build/classes/edu/umass/cs/reconfiguration/AbstractReconfiguratorDB$RecordNames.class
Binary file not shown.
Binary file added
BIN
+28.6 KB
build/classes/edu/umass/cs/reconfiguration/AbstractReconfiguratorDB.class
Binary file not shown.
Binary file added
BIN
+10.3 KB
build/classes/edu/umass/cs/reconfiguration/AbstractReplicaCoordinator.class
Binary file not shown.
Binary file added
BIN
+2.24 KB
build/classes/edu/umass/cs/reconfiguration/ActiveReplica$AckStopNotifier.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+11.6 KB
build/classes/edu/umass/cs/reconfiguration/PaxosReplicaCoordinator.class
Binary file not shown.
Binary file added
BIN
+1.3 KB
build/classes/edu/umass/cs/reconfiguration/ReconfigurableAppClientAsync$1.class
Binary file not shown.
Binary file added
BIN
+1.16 KB
build/classes/edu/umass/cs/reconfiguration/ReconfigurableAppClientAsync$2.class
Binary file not shown.
Binary file added
BIN
+6.21 KB
...edu/umass/cs/reconfiguration/ReconfigurableAppClientAsync$ClientPacketDemultiplexer.class
Binary file not shown.
Binary file added
BIN
+994 Bytes
...lasses/edu/umass/cs/reconfiguration/ReconfigurableAppClientAsync$RequestAndCallback.class
Binary file not shown.
Binary file added
BIN
+11.2 KB
build/classes/edu/umass/cs/reconfiguration/ReconfigurableAppClientAsync.class
Binary file not shown.
Binary file added
BIN
+1.55 KB
...d/classes/edu/umass/cs/reconfiguration/ReconfigurableNode$DefaultReconfigurableNode.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.33 KB
build/classes/edu/umass/cs/reconfiguration/ReconfigurationConfig$RC.class
Binary file not shown.
Binary file added
BIN
+7.74 KB
build/classes/edu/umass/cs/reconfiguration/ReconfigurationConfig.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+999 Bytes
build/classes/edu/umass/cs/reconfiguration/Reconfigurator$Instrumenter.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.41 KB
...s/edu/umass/cs/reconfiguration/RepliconfigurableReconfiguratorDB$ReplicaCoordinator.class
Binary file not shown.
Binary file added
BIN
+17.5 KB
build/classes/edu/umass/cs/reconfiguration/RepliconfigurableReconfiguratorDB.class
Binary file not shown.
Binary file added
BIN
+2.25 KB
build/classes/edu/umass/cs/reconfiguration/SQLReconfiguratorDB$1.class
Binary file not shown.
Binary file added
BIN
+893 Bytes
build/classes/edu/umass/cs/reconfiguration/SQLReconfiguratorDB$2.class
Binary file not shown.
Binary file added
BIN
+1.12 KB
build/classes/edu/umass/cs/reconfiguration/SQLReconfiguratorDB$3.class
Binary file not shown.
Binary file added
BIN
+2.33 KB
build/classes/edu/umass/cs/reconfiguration/SQLReconfiguratorDB$CheckpointServer.class
Binary file not shown.
Binary file added
BIN
+996 Bytes
build/classes/edu/umass/cs/reconfiguration/SQLReconfiguratorDB$CheckpointTransporter.class
Binary file not shown.
Binary file added
BIN
+1.78 KB
build/classes/edu/umass/cs/reconfiguration/SQLReconfiguratorDB$Columns.class
Binary file not shown.
Binary file added
BIN
+1.09 KB
build/classes/edu/umass/cs/reconfiguration/SQLReconfiguratorDB$Filename.class
Binary file not shown.
Binary file added
BIN
+1.27 KB
build/classes/edu/umass/cs/reconfiguration/SQLReconfiguratorDB$Keys.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.06 KB
...lasses/edu/umass/cs/reconfiguration/deprecated/AbstractReplicaCoordinatorPersistent.class
Binary file not shown.
Binary file added
BIN
+2.17 KB
build/classes/edu/umass/cs/reconfiguration/examples/AbstractReconfigurablePaxosApp.class
Binary file not shown.
Binary file added
BIN
+1.5 KB
build/classes/edu/umass/cs/reconfiguration/examples/AppRequest$Keys.class
Binary file not shown.
Binary file added
BIN
+2.61 KB
build/classes/edu/umass/cs/reconfiguration/examples/AppRequest$PacketType.class
Binary file not shown.
Binary file added
BIN
+1.21 KB
build/classes/edu/umass/cs/reconfiguration/examples/AppRequest$ResponseCodes.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.28 KB
build/classes/edu/umass/cs/reconfiguration/examples/NoopAppClient$1.class
Binary file not shown.
Binary file added
BIN
+1.27 KB
build/classes/edu/umass/cs/reconfiguration/examples/NoopAppClient$2.class
Binary file not shown.
Binary file added
BIN
+3.16 KB
build/classes/edu/umass/cs/reconfiguration/examples/NoopAppClient.class
Binary file not shown.
Binary file added
BIN
+905 Bytes
build/classes/edu/umass/cs/reconfiguration/examples/noop/NoopApp$1.class
Binary file not shown.
Binary file added
BIN
+962 Bytes
build/classes/edu/umass/cs/reconfiguration/examples/noop/NoopApp$AppData.class
Binary file not shown.
Binary file added
BIN
+8.74 KB
build/classes/edu/umass/cs/reconfiguration/examples/noop/NoopApp.class
Binary file not shown.
Binary file added
BIN
+1.03 KB
build/classes/edu/umass/cs/reconfiguration/examples/noop/NoopAppCoordinator$CoordData.class
Binary file not shown.
Binary file added
BIN
+1.33 KB
build/classes/edu/umass/cs/reconfiguration/examples/noop/NoopAppCoordinator$CoordType.class
Binary file not shown.
Oops, something went wrong.