]> git.proxmox.com Git - pve-common.git/blame - README.dev
rename data to src
[pve-common.git] / README.dev
CommitLineData
e143e9d8 1====================================
47e4eb11 2Setup PVE Development Environment
e143e9d8
DM
3====================================
4
47e4eb11 51. Install Debian 'jessie'
e143e9d8
DM
62. Install prerequisites for development environment:
7
47e4eb11
DM
8# new jessie depends
9apt-get -y install build-essential git-core debhelper autotools-dev \
10doxygen check pkg-config groff quilt dpatch automake autoconf libtool \
11lintian libdevel-cycle-perl libjson-perl libcommon-sense-perl \
12liblinux-inotify2-perl libio-stringy-perl libstring-shellquote-perl \
13dh-systemd rpm2cpio libsqlite3-dev sqlite3 libglib2.0-dev librrd-dev \
14librrds-perl rrdcached libdigest-hmac-perl libxml-parser-perl \
b51b16e6
DM
15gdb libcrypt-openssl-random-perl libcrypt-openssl-rsa-perl \
16libnet-ldap-perl libauthen-pam-perl libjson-xs-perl libterm-readline-gnu-perl oathtool libmime-base32-perl liboath0 libpci-dev texi2html libsdl1.2-dev \
17libgnutls28-dev libspice-protocol-dev xfslibs-dev libnuma-dev libaio-dev \
18libspice-server-dev libusbredirparser-dev glusterfs-common libusb-1.0-0-dev \
19librbd-dev libpopt-dev iproute bridge-utils numactl glusterfs-common \
20ceph-common python-ceph libgoogle-perftools4 libfile-chdir-perl lvm2 \
21glusterfs-client liblockfile-simple-perl libsystemd-daemon-dev \
22libreadline-gplv2-dev libio-multiplex-perl libnetfilter-log-dev \
23libipset3 ipset socat libsasl2-dev
47e4eb11
DM
24
25# old wheezy depends
7da024b1 26apt-get -y install build-essential git-core debhelper autotools-dev \
e143e9d8
DM
27doxygen check pkg-config libnss3-dev groff quilt dpatch libxml2-dev \
28libncurses5-dev libslang2-dev libldap2-dev xsltproc python-pexpect \
29python-pycurl libdbus-1-dev openipmi sg3-utils libnet-snmp-perl \
30libnet-telnet-perl snmp python-openssl libxml2-utils automake autoconf \
31libsqlite3-dev sqlite3 libfuse-dev libglib2.0-dev librrd-dev \
32librrds-perl rrdcached lintian libdevel-cycle-perl libjson-perl \
33liblinux-inotify2-perl libio-stringy-perl unzip fuse-utils \
34libcrypt-openssl-random-perl libcrypt-openssl-rsa-perl \
35libauthen-pam-perl libterm-readline-gnu-perl libssl-dev open-iscsi \
36libapache2-mod-perl2 libfilesys-df-perl libfile-readbackwards-perl \
37libpci-dev texi2html libgnutls-dev libsdl1.2-dev bridge-utils \
38libvncserver0 rpm2cpio apache2-mpm-prefork libintl-perl \
39libapache2-request-perl libnet-dns-perl vlan libio-socket-ssl-perl \
67799787 40libfile-sync-perl ifenslave-2.6 libnet-ldap-perl console-data \
60f4e8c7
DM
41libtool dietlibc-dev liblocale-po-perl libstring-shellquote-perl \
42libio-multiplex-perl liblockfile-simple-perl
e143e9d8 43
7da024b1 443. Download and install the following git modules in order from top to bottom:
e143e9d8 45
7da024b1 46# git clone git://git.proxmox.com/git/<PACKAGE.git>
e143e9d8 47
7da024b1
DM
48You currently need the following packages:
49
47e4eb11 50libqb.git
7da024b1
DM
51corosync-pve.git
52openais-pve.git
53pve-common.git
54pve-cluster.git
55redhat-cluster-pve.git
56d42b76 56lvm.git
7da024b1
DM
57pve-access-control.git
58pve-storage.git
59pve-qemu-kvm.git
60qemu-server.git
61vncterm.git
60f4e8c7 62vzquota.git
b2b9ba38 63vzctl.git
60f4e8c7
DM
64fence-agents-pve.git
65resource-agents-pve.git
7da024b1
DM
66pve-manager.git
67pve-kernel-2.6.32.git
60f4e8c7
DM
68libiscsi.git
69gfs2-utils.git
70ksm-control-daemon.git
e143e9d8 71
60f4e8c7 72Most packages can be installed with 'make dinstall' command.
e143e9d8
DM
73
744. Reboot the system.
755. Learn to use the quilt patch scripts.
766. Happy coding.
77
78There is an experimental package containing the API documentation
79as ExtJS application:
80
7da024b1
DM
81pve2-api-doc.git
82
83You can view the source code at:
84
85https://git.proxmox.com
e143e9d8
DM
86
87
88REST vs. SOAP
89=============
90
91We decided to change our SOAP API (1.X) and use a REST like API. The
92concept is described in [1] (Resource Oriented Architecture
93(ROA)). The main advantage is that we are able to remove a lot of code
94(the whole SOAP stack) to reduce software complexity.
95
96We also moved away from server side content generation. Instead we use
97the ExtJS Rich Internet Application Framework
98(http://www.sencha.com).
99
100That framework, like any other AJAX toolkit, can talk directly to the
101REST API using JSON. So we were able to remove the server side
102template toolkit completely.
103
104JSON and JSON Schema
105====================
106
107We use JSON as data format, because it is simple and parse-able by any
108web browser.
109
110Additionally, we use JSON Schema [2] to formally describe our API. So
111we can automatically generate the whole API Documentation, and we can
112verify all parameters and return values.
113
60f4e8c7 114A great side effect was that we are able to use JSON Schema to
e143e9d8
DM
115produce command line argument parsers automatically. In fact, the REST
116API and the command line tools use the same code.
117
118Object linkage is done using the JSON Hyper Schema (links property).
119
120A small utility called 'pvesh' exposes the whole REST API on the command
121line.
122
123So here is a summary of the advantage:
124
125 - easy, human readable data format (native web browser format)
126 - automatic parameter verification (we can also verify return values)
127 - automatic generation of API documentation
128 - easy way to create command line tools (using same API).
129
130API Implementation (PVE::RESTHandler)
131=====================================
132
133All classes exposing methods on the API use PVE::RESTHandler as base class.
134
135 use base qw(PVE::RESTHandler);
136
137To expose methods, one needs to call register_method():
138
139 __PACKAGE__->register_method ($schema);
140
141Where $schema is a PVE method schema as described in
142PVE::JSONSchema. It includes a description of parameters and return
143values, and a reference to the actual code
144
145__PACKAGE__->register_method ({
146 name => 'echo',
147 path => 'echo',
148 method => 'GET',
149 description => "simple return value of parameter 'text'",
150 parameters => {
151 additionalProperties => 0,
152 properties => {
153 text => {
154 type => 'string',
155 }
156 },
157 },
158 returns => {
159 type => 'string',
160 },
161 code => sub {
162 my ($conn, $resp, $param) = @_;
163
164 return $param->{text};
165 }
166});
167
168The 'name' property is only used if you want to call the method
169directly from Perl. You can do that using:
170
171 print __PACKAGE__->echo({ text => "a test" });
172
173We use Perl's AUTOLOAD feature to implement this. Note: You need to
174pass parameters a HASH reference.
175
176There is a special helper method called cli_handler(). This is used by
177the CLIHandler Class for command line tools, where you want to pass
178arguments as array of strings. This uses Getopt::Long to parse parameters.
179
180There is a second way to map names to methods - using the 'path'
181property. And you can register subclasses. That way you can set up a
182filesystem like hierarchy to access methods.
183
184Here is an example:
185----------------------------
186package C1;
187
188__PACKAGE__->register_method ({
189 subclass => "C2",
190 path => 'sub2',
191});
192
193
194__PACKAGE__->register_method ({
195 name => 'list1',
196 path => 'index',
197 method => 'GET',
198 ...
199});
200
201package C2;
202
203__PACKAGE__->register_method ({
204 name => 'list2',
205 path => 'index',
206 method => 'GET',
207 ...
208});
209-------------------------------
210
211The utily method find_handler (in PVE::RESTHandler) can be use to do
212'path' related method lookups.
213
214C1->find_handler('GET', "/index") => C1::list1
215C1->find_handler('GET', "/sub2/index") => C2::list2
216
217The HTTP server use the URL (a path) to find the corresponding method.
218
219
220References
221==========
222[1] RESTful Web Services
223Web services for the real world
224
225By
226 Leonard Richardson, Sam Ruby
227Publisher:
228 O'Reilly Media
229Released:
230 May 2007
231
232[2] JSON Schema links: http://json-schema.org/