forked from ooici/pyon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
205 lines (141 loc) · 6.83 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
===========================================================
Ocean Observatories Initiative Cyberinfrastructure (OOI CI)
Integrated Observatory Network (ION)
pyon - Python COI Capability Container and Core Modules R2
https://confluence.oceanobservatories.org/x/ehdTAQ
(C) UC Regents, 2010-2011
===========================================================
INSTALL
=======
Install the following if not yet present:
* OS Packages and package management:
For Mac, use homebrew
> /usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)"
- python 2.7.2
Download and use installer on a Mac.
If you need to build from source (like on some linux distributions), enable the following in the build:
- SSL
- sqlite
- git 1.7.7: Use brew or download the Mac or Linux installer and run it
- couchdb 1.1.0 (optional if memory mockdb is used)
You will need to upgrade couchdb to at least 1.1.0.
- rabbitmq 2.6.1 or later (recommended, but can use rabbitmq on amoeba)
Use brew.
Alternative: download generic Linux version and unpack into a suitable directory.
- Install libevent, libyaml, couchdb, python, and rabbitmq with Homebrew
> brew install libevent libyaml couchdb python rabbitmq hdf5
You can even reinstall git using brew to clean up your /usr/local directory
(If you have trouble with brew 'MD5 mismatch' errors, try running 'brew update'
and try the install again)
Linux: Note that many installs have much older versions installed by default.
- libevent: Install with package manager
- libyaml: You need the -dev or -devel version. If you don't have such a package, use extern/setup-libyaml.sh
- couchdb: Make sure to have the appropriate version
* python packages and environment management:
- pip
> easy_install pip
- virtualenv and virtualenvwrapper modules for your python 2.7 installation
> easy_install --upgrade virtualenv
> easy_install --upgrade virtualenvwrapper
Note: This may require Mac's XCode (use XCode 3.3 free version)
* Setup a virtualenv to for Pyon (use any name you like):
> mkvirtualenv --no-site-packages --python=python2.7 ion27
> workon ion27
DEVELOPMENT TIME DEPENDENCIES
=============================
PACKAGES:
Use Buildout to install the python package dependencies with:
> python bootstrap.py
> bin/buildout
ION-DEFINITIONS SUBMODULE:
Link git submodule ion-definitions, containing object and service definitions and resource files:
git submodule update --init
Note: This git-submodule always references a specific commit of ion-definitions used by pyon.
Hint: The .gitmodules file declares the submodule as read only GIT reference (https: instead of git@).
If you have problems with a read only (anonymous) clone because of a missing public key,
edit .git/config and change the last url to git://github.com/ooici/ion-definitions.git
If you want to avoid entering your password for every push to the submodule,
edit extern/ion-definitions/.git/config and change the remote reference to:
[email protected]:ooici/ion-definitions.git
To update the code in pyon and the specific commit in the submodule:
> git pull
> git submodule update
Notes:
- The submodule update does NOT happen automatically
- The submodule update does NOT pull the branch head of the submodule.
- To change the submodule commit within pyon, cd into the submodule and do a `git pull`, then commit pyon.
The obj/ subdir is a symlink to the checkout's extern/ion-definitions/objects.
The res/ subdir is a symlink to the checkout's extern/ion-definitions/res.
See more about submodules:
- http://book.git-scm.com/5_submodules.html
- http://speirs.org/blog/2009/5/11/understanding-git-submodules.html
- http://blog.endpoint.com/2010/04/git-submodule-workflow.html
GENERATE SERVICE STUBS:
Generate service definition interfaces and abstract base classes files:
> bin/generate_interfaces
Note: These will be placed in the interfaces/ subdirectory (and not in GIT nor in the egg).
RUN-TIME DEPENDENCIES
=====================
COUCHDB (OBJECT DATA STORE):
Run couchdb in second terminal before starting the container or running tests:
> couchdb
RABBITMQ (MESSAGE BROKER):
> sudo sbin/rabbitmq-server
SOURCE PATH:
Add the current directory to your PYTHONPATH for an easier time running scripts. Add the following
line to your ~/.profile (create it if it doesnt not exist, or use bash_profile if you already have that):
> export PYTHONPATH=.
TEST
====
Run the unittests:
bin/unittest
bin/nosetests -a UNIT
Run code coverage:
bin/nosetests -w pyon --with-coverage --cover-package=pyon
USE
===
Provide local configuration overrides in:
res/config/pyon.local.yml
res/config/logging.local.yml
Start the capability container in interactive mode:
> bin/pycc
List supported arguments:
> bin/pycc --help
Start the CC with a deploy file:
> bin/pycc --rel res/deploy/r2deploy.yml
Start the CC with a process to execute and then quit:
> bin/pycc --proc examples.service.hello_service.HelloService
Command line configuration options for pycc:
Use a different message broker:
> bin/pycc server.amqp.host=amoeba.ucsd.edu
Use a different database server:
> bin/pycc server.couchdb.host=amoeba.ucsd.edu
Set the container's system name:
> bin/pycc system.name=MINE
DEBUG
=====
USE Pycharm or any other Python IDE to debug; breakpoints and step-by-step are possible.
Set the executable to the bin/pycc and set the working directory to the repository root.
Use the -n option to avoid the interactive ipython shell. It does not work property with the debugger.
You will need to make sure the Pycharm debug egg is available in your path, something like:
> export PYTHONPATH=.:/Applications/PyCharm\ 1.5.2.app/pycharm-debug.egg
Remote debugging of services in a running container is possible too. Setup a remote debugging
configuration to use the localhost and port 8585. First start the remote debuging server, then
start the container from the command line below (the -n seems to be required)
> bin/pyccd -n --rel res/deploy/r2services.yml
DATASTORE
=========
View and manipulate the CouchDB datastore, by accessing http://localhost:5984/_utils
EXAMPLES
========
Make sure to look in the examples directory for a README and examples.
SEE ALSO
========
https://confluence.oceanobservatories.org/display/CIDev/ION+R2+Development
https://confluence.oceanobservatories.org/display/CIDev/R2+Container+Use+Guide
https://confluence.oceanobservatories.org/display/CIDev/R2+Development+Conventions
https://confluence.oceanobservatories.org/display/CIDev/R2+Resource+Development+Guide
https://confluence.oceanobservatories.org/display/CIDev/R2+Service+Implementation+Guide
https://confluence.oceanobservatories.org/display/CIDev/R2+Service+Testing+Guide
https://confluence.oceanobservatories.org/x/ehdTAQ
https://github.com/ooici/coi-services