Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
szegedi committed Jul 2, 2010
1 parent e6ef753 commit 25fe061
Show file tree
Hide file tree
Showing 79 changed files with 16,694 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/main/scala"/>
<classpathentry kind="con" path="ch.epfl.lamp.sdt.launching.SCALA_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.launching.macosx.MacOSXType/JVM 1.6.0"/>
<classpathentry kind="output" path="bin"/>
</classpath>
23 changes: 23 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>twitterActors</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>ch.epfl.lamp.sdt.core.scalabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>ch.epfl.lamp.sdt.core.scalanature</nature>
</natures>
</projectDescription>
3 changes: 3 additions & 0 deletions .scala_dependencies
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/Users/aszegedi/Documents/projects/twitterActors/bin:/Applications/eclipse 3.6/configuration/org.eclipse.osgi/bundles/308/1/.cp/lib/scala-library.jar:/Applications/eclipse 3.6/configuration/org.eclipse.osgi/bundles/308/1/.cp/lib/scala-dbc.jar:/Applications/eclipse 3.6/configuration/org.eclipse.osgi/bundles/308/1/.cp/lib/scala-swing.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/ui.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jsse.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/charsets.jar:/System/Library/Java/Extensions/AppleScriptEngine.jar:/System/Library/Java/Extensions/dns_sd.jar:/System/Library/Java/Extensions/j3daudio.jar:/System/Library/Java/Extensions/j3dcore.jar:/System/Library/Java/Extensions/j3dutils.jar:/System/Library/Java/Extensions/jai_codec.jar:/System/Library/Java/Extensions/jai_core.jar:/System/Library/Java/Extensions/mlibwrapper_jai.jar:/System/Library/Java/Extensions/MRJToolkit.jar:/System/Library/Java/Extensions/QTJava.zip:/System/Library/Java/Extensions/vecmath.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/ext/apple_provider.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/ext/bcprov-jdk16-145.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/ext/dnsns.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/ext/localedata.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/ext/sunjce_provider.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/ext/sunpkcs11.jar
-------
-------
12 changes: 12 additions & 0 deletions .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#Fri Jul 02 17:36:05 CEST 2010
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6
71 changes: 71 additions & 0 deletions ant/bootstrap.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<project xmlns:ivy="antlib:org.apache.ivy.ant">

<!-- defaults for all projects -->
<property name="source.dir" value="${basedir}/src/main" />
<property name="test.source.dir" value="${basedir}/src/test" />
<property name="target.dir" value="${basedir}/target" />

<property environment="env" />

<property name="ivy.install.version" value="2.1.0" />
<property name="ivy.jar.dir" value="${user.home}/.ivy2" />
<property name="ivy.jar.file" value="${ivy.jar.dir}/ivy-${ivy.install.version}.jar" />
<property name="jsch.install.version" value="0.1.29" />
<property name="jsch.jar.file" value="${ivy.jar.dir}/jsch-${jsch.install.version}.jar" />

<!--
download ivy from the web site so that it can be used without being
installed. if the file has already been downloaded, we use a rename
trick to avoid hitting the website again. (that would be annoying
when building offline.)
-->
<target name="download-ivy" unless="skip.download">
<mkdir dir="${ivy.jar.dir}"/>
<condition property="ivy.url" value="file:${ivy.jar.file}">
<available file="${ivy.jar.file}" />
</condition>
<property name="ivy.url" value="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar" />
<get src="${ivy.url}" dest="${ivy.jar.file}.download" usetimestamp="true" />
<move file="${ivy.jar.file}.download" tofile="${ivy.jar.file}" />

<condition property="jsch.url" value="file:${jsch.jar.file}">
<available file="${jsch.jar.file}" />
</condition>
<property name="jsch.url" value="http://repo1.maven.org/maven2/jsch/jsch/${jsch.install.version}/jsch-${jsch.install.version}.jar" />
<get src="${jsch.url}" dest="${jsch.jar.file}.download" usetimestamp="true" />
<move file="${jsch.jar.file}.download" tofile="${jsch.jar.file}" />
</target>

<!-- import ivy's ant tasks -->
<target name="install-ivy" depends="download-ivy">
<path id="ivy.lib.path">
<fileset dir="${ivy.jar.dir}" includes="ivy-${ivy.install.version}.jar jsch-${jsch.install.version}.jar"/>
</path>
<taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path" />
</target>

<!-- define filename-friendly names for the OS variants -->
<condition property="os.libsname" value="osx">
<os name="Mac OS X" />
</condition>
<condition property="os.jni.ext" value="jnilib">
<os name="Mac OS X" />
</condition>
<condition property="os.libsname" value="linux">
<os name="Linux" />
</condition>
<condition property="os.jni.ext" value="so">
<os name="Linux" />
</condition>

<!-- where to look for the ivy config -->
<property name="ivy.dep.file" value="${basedir}/ivy/ivy.xml" />
<property name="ivy.settings.file" value="${basedir}/ivy/ivysettings.xml" />

<import file="clean.xml" />
<import file="prepare.xml" />
<import file="compile.xml" />
<import file="test.xml" />
<import file="docs.xml" />
<import file="package.xml" />
</project>
20 changes: 20 additions & 0 deletions ant/clean.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<project xmlns:ivy="antlib:org.apache.ivy.ant">

<target name="clean" depends="init" description="erase built files and targets">
<delete dir="${target.dir}" />
<delete dir="${dist.dir}" />
<!-- i dont think this is really a good idea: -->
<!-- delete dir="${ivy.jar.dir}/cache/${ivy.organisation}" /-->
</target>

<target name="clean-ivy" depends="prepare" description="erase ivy cache of downloaded packages">
<ivy:cleancache />
</target>

<target name="clean-jni" depends="prepare" description="clean out any built jni targets" if="build.jni">
<ant dir="src/main/jni" target="clean" />
</target>

<target name="distclean" depends="clean, clean-jni, clean-ivy" />

</project>
111 changes: 111 additions & 0 deletions ant/compile.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
<project xmlns:ivy="antlib:org.apache.ivy.ant">

<!-- compile old-skool java -->

<target name="compile-java" if="build.java">
<javac srcdir="${source.dir}/java" destdir="${target.dir}/classes">
<classpath>
<path refid="deps.path" />
</classpath>
<include name="**/*.java" />
</javac>
</target>


<!-- compile scala -->

<target name="compile-scala" if="build.scala">
<scalac srcdir="${source.dir}/scala" destdir="${target.dir}/classes" force="changed">
<classpath>
<path refid="deps.path" />
</classpath>
<include name="**/*.scala" />
</scalac>
</target>


<!-- create properties file with build info -->

<target name="find-git-revision" unless="no.git">
<!-- ask git for the current "head" commit-id, for memoizing inside the built jar -->
<exec outputproperty="revision" executable="git" failifexecutionfails="false">
<arg value="rev-parse" />
<arg value="HEAD" />
</exec>
<exec executable="git" failifexecutionfails="false">
<arg value="rev-parse" />
<arg value="HEAD" />
<redirector outputproperty="revision-short">
<outputfilterchain>
<tokenfilter>
<filetokenizer />
<replaceregex pattern="(.{8}).*" replace="\1"/>
</tokenfilter>
</outputfilterchain>
</redirector>
</exec>
</target>

<target name="write-build-info" depends="init, find-git-revision" if="ivy.extra.buildpackage">
<tstamp>
<format property="build.timestamp.time" pattern="yyyyMMdd-HHmmss" />
<format property="build.timestamp.date" pattern="yyyyMMdd" />
</tstamp>
<pathconvert property="build.properties.path">
<path location="${ivy.extra.buildpackage}" />
<unpackagemapper from="${basedir}/*" to="${target.dir}/classes/*" />
</pathconvert>
<propertyfile file="${build.properties.path}/build.properties">
<entry key="name" value="${ivy.module}" />
<entry key="version" value="${ivy.revision}" />
<entry key="build_name" value="${build.timestamp.time}" />
<entry key="build_revision" value="${revision}" />
</propertyfile>
</target>


<!-- copy resources needed by tests and jar -->

<target name="copy-resources">
<copy todir="${dist.dir}/libs" flatten="true">
<path refid="deps.path" />
</copy>
<copy todir="${target.dir}/test-classes/" failonerror="false">
<fileset dir="${test.source.dir}/resources" />
</copy>
<copy todir="${target.dir}/classes/" overwrite="true" failonerror="false">
<fileset dir="${source.dir}/resources" />
</copy>
</target>

<target name="copy-config" if="copy.config">
<copy todir="${dist.dir}/config">
<fileset dir="${basedir}/config" />
</copy>
</target>

<target name="copy-extra-config" if="config.extra">
<copy todir="${dist.dir}/config">
<fileset dir="${config.extra}" />
</copy>
</target>

<target name="copy-extra-libs" if="libs.extra">
<copy todir="${dist.dir}/libs">
<path refid="libs.extra" />
</copy>
</target>

<target name="copy-extra-dist" if="dist.extra">
<copy todir="${dist.dir}">
<path refid="dist.extra" />
</copy>
</target>

<target name="copy-extra" depends="copy-resources, copy-config, copy-extra-config, copy-extra-libs, copy-extra-dist" />


<target name="compile" depends="prepare, find-source, compile-java, compile-scala, write-build-info, copy-extra"
description="compile java and scala code" />

</project>
35 changes: 35 additions & 0 deletions ant/docs.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<project xmlns:ivy="antlib:org.apache.ivy.ant">

<target name="vscaladoc" depends="prepare" unless="skip.docs">
<delete dir="${docs.target.dir}/scaladoc" />
<mkdir dir="${docs.target.dir}/scaladoc" />
<pathconvert property="doc.sources" pathsep=" ">
<fileset dir="${source.dir}" includes="**/*.scala" />
</pathconvert>
<path id="docs.path">
<path refid="bootstrap.path" />
<pathelement location="${target.dir}/classes" />
</path>
<echo message="Building vscaladoc..." />
<java classname="org.scala_tools.vscaladoc.Main" fork="true" failonerror="true">
<classpath>
<path refid="bootstrap.path" />
</classpath>
<arg value="-classpath" />
<arg pathref="docs.path" />
<arg value="-d" />
<arg value="${docs.target.dir}/scaladoc" />
<arg value="-sourcepath" />
<arg value="${source.dir}/scala" />
<arg value="-windowtitle" />
<arg value="${ivy.module} ${ivy.revision}" />
<arg value="-doctitle" />
<arg value="${ivy.module} ${ivy.revision}" />
<arg value="-linksource" />
<arg line="${doc.sources}" />
</java>
</target>

<target name="docs" depends="prepare,vscaladoc" unless="skip.docs" description="build source documentation" />

</project>
Loading

0 comments on commit 25fe061

Please sign in to comment.