apache-tuscany/sca-cpp/trunk
2011-09-10 23:08:28 +00:00
..
components Rename nosqldb component to constdb. 2011-09-10 18:11:07 +00:00
doc Simplified the automake build using configure options instead of environment variables and cleaned up some of the makefile.am files. Adjusted build instructions. Moved directories that don't yet build or work out of the main build dir and obsolete docs to a contrib dir. 2009-11-23 05:48:11 +00:00
etc Update svn:ignore properties and minor build cleanups. 2011-03-14 03:24:37 +00:00
kernel Improve logging with multiple threads and processes. 2011-09-05 23:30:20 +00:00
macos Build with Clang/LLVM when available. 2011-09-04 06:02:25 +00:00
modules Reinitialize Python thread support after a library reload or a fork. 2011-09-06 16:23:42 +00:00
samples Rename nosqldb component to constdb. 2011-09-10 18:11:07 +00:00
ubuntu Port to Memcached 1.4.7 and Ubuntu 11.04. 2011-08-30 04:48:44 +00:00
xsd Minimal support for implementation.widget, using simplified (and generic) JSONRPC and ATOMPub Javascript proxies. Minor changes to the server runtime to serve reference requests from widgets. Adjust and simplified samples using the widget support. 2010-07-01 06:04:35 +00:00
.gitignore Implement an OpenCL component implementation evaluator. Add OpenCL tests, working on Ubuntu and MacOS with both CPU and NVIDIA and ATI GPUs. 2011-08-28 02:50:09 +00:00
AUTHORS More build improvements, added a configure option to turn on debugging and profiling, fixed compile and link options to support multithreading where applicable, moved non-building tools to contrib, and adjusted the top readmes and build instructions. 2009-11-30 08:36:59 +00:00
bootstrap Port to Mac OS X 10.6.7. 2011-06-28 15:50:47 +00:00
ChangeLog More build improvements, added a configure option to turn on debugging and profiling, fixed compile and link options to support multithreading where applicable, moved non-building tools to contrib, and adjusted the top readmes and build instructions. 2009-11-30 08:36:59 +00:00
configure.ac Change optimizations from -O2 to -O1 with Clang/LLVM as -O2 is unsafe. 2011-09-10 23:08:28 +00:00
COPYING Minor README cleanup. Fixed permissions on COPYING and LICENSE files. 2010-02-28 20:01:37 +00:00
INSTALL Build with Clang/LLVM when available. 2011-09-04 06:02:25 +00:00
LICENSE Implementation of a streaming + aggregating Log utility component using Facebook Scribe. 2010-05-22 23:22:54 +00:00
Makefile.am Minor fixes to get all samples working in a target install dir. 2010-10-20 05:00:08 +00:00
NEWS More build improvements, added a configure option to turn on debugging and profiling, fixed compile and link options to support multithreading where applicable, moved non-building tools to contrib, and adjusted the top readmes and build instructions. 2009-11-30 08:36:59 +00:00
NOTICE Implementation of a streaming + aggregating Log utility component using Facebook Scribe. 2010-05-22 23:22:54 +00:00
README Implement an OpenCL component implementation evaluator. Add OpenCL tests, working on Ubuntu and MacOS with both CPU and NVIDIA and ATI GPUs. 2011-08-28 02:50:09 +00:00

Apache Tuscany SCA Runtime
==========================

Tuscany SCA Native is an SCA (Service Component Architecture) runtime written
in C++ and integrated with the Apache HTTPD server.

It supports SCA components written in C++ and Python. Experimental support
for other programming languages is under construction. SCA bindings are
available for the JSON-RPC, ATOMPub and RSS protocols. User signin is
implemented using OpenID and OAuth.

Several useful SCA components are provided on top of the SCA runtime, which
can be used to help assemble distributed SCA composite applications:

Cache: key/value memory cache, using Memcached;
Chat: XMPP chat, using Apache Vysper and Libstrophe;
Filedb: key/value 'NoSQL' persistent store, using plain files;
Http: HTTP client, using Libcurl;
Log: distributed logger, using Facebook Scribe;
Nosqldb: key/value 'NoSQL' persistent store, using TinyCDB;
Queue: AMQP queuing, using Apache Qpid/C;
Sqldb: SQL database, using PostgreSQL;
Webservice: Web service gateway, using Apache Axis2/C.

These components present a simple ATOMPub REST interface, allowing you to send
a message to a queue, a chat connection, or add an entry to a cache or a
database for example, using a simple HTTP POST. 


Getting the source code
=======================

To checkout the source code, do this:
git clone git://git.apache.org/tuscany-sca-cpp
or
svn checkout http://svn.apache.org/repos/asf/tuscany/sca-cpp tuscany-sca-cpp

To checkout the source code with commit access, do this:
git clone git://git.apache.org/tuscany-sca-cpp
cd tuscany-sca-cpp/.git
curl -OL http://git.apache.org/authors.txt
cd ..
git config svn.authorsfile .git/authors.txt
git config user.email <you>@apache.org
git config svn.rmdir true
git svn init --prefix=origin/ -s https://svn.apache.org/repos/asf/tuscany/sca-cpp
git svn rebase


Layout
======

Here's a rough guide to the Tuscany SCA source tree:

 /
 |-- trunk                    Master development branch
 |   |
 |   |-- kernel               SCA runtime kernel
 |   |
 |   |-- modules              Modules that plug into the runtime
 |   |   |-- atom             AtomPub data encoding
 |   |   |-- edit             Composite app editor
 |   |   |-- http             HTTP protocol
 |   |   |-- java             Support for Java components
 |   |   |-- json             JSON data encoding
 |   |   |-- oauth            User signin using OAuth
 |   |   |-- opencl           Support for OpenCL components
 |   |   |-- openid           User signin using OpenID
 |   |   |-- python           Support for Python components
 |   |   |-- rss              RSS data encoding
 |   |   |-- scheme           Support for Scheme components
 |   |   |-- server           Apache HTTPD server integration
 |   |   |-- wsgi             Python WSGI server integration
 |   |
 |   |-- components           Useful SCA components
 |   |   |-- cache            Memcached key/value cache
 |   |   |-- chat             XMPP chat
 |   |   |-- filedb           Plain file NoSQL database
 |   |   |-- http             HTTP client
 |   |   |-- log              Scribe logger
 |   |   |-- nosqldb          TinyCDB NoSQL database
 |   |   |-- queue            AMQP message queue
 |   |   |-- sqldb            PostgreSQL database
 |   |   |-- webservice       Axis2 Web service gateway
 |   |
 |   |-- samples              Sample Applications
 |   |   |-- store-cluster    Online store on a proxy + server + db cluster
 |   |   |-- store-cpp        Online store written in C++
 |   |   |-- store-gae        Online store written in Python, working on GAE
 |   |   |-- store-java       Online store written in Java
 |   |   |-- store-nosql      Online store using a NoSQL database
 |   |   |-- store-python     Online store written in Python
 |   |   |-- store-scheme     Online store written in Scheme
 |   |   |-- store-sql        Online store using an SQL database
 |   |   |-- store-vhost      Online store on virtual hosts
 |   |
 |   |-- macos                Automated install on Mac OS X 10.1.7
 |   |-- ubuntu               Automated install on Ubuntu 10.10
 |
 |-- branches                 Topic and release branches
 |
 |-- tags                     Release tags


Building
========

See the INSTALL file at the root of the source tree.


Contributing to the project
===========================

To contribute to the project or report issues see the Tuscany development
mailing list:
dev@tuscany.apache.org

Archives:
http://www.mail-archive.com/dev@tuscany.apache.org
http://marc.info/?l=tuscany-dev

To subscribe send an email to:
dev-subscribe@tuscany.apache.org