]> git.proxmox.com Git - pve-common.git/blame - README.dev
use libspice-protocol-dev (instead of debian package)
[pve-common.git] / README.dev
CommitLineData
a4a9a328 1= Setup PVE Development Environment =
e143e9d8 2
8bc53243
DM
31. Install Debian 'jessie'
42. Configure pvetest repository in apt sources.list
a4a9a328
DM
5
6 deb http://download.proxmox.com/debian jessie pvetest
7
83. Add our repository key with apt-key:
9
10 wget -O- "http://download.proxmox.com/debian/key.asc" | apt-key add -
11
124. make sure you have a read IP address for your hostname in /etc/hosts
8bc53243 13 (using 127.0.1.1 will not work)
8bc53243 14
a4a9a328
DM
155. run: apt-get update
166. run: apt-get dist-upgrade
177. run: apt-get install proxmox-ve-3.10.0
e143e9d8 18
a4a9a328
DM
19You should now have a working Proxmox VE installation.
20
21= Install build prerequisites for development environment =
47e4eb11 22
7da024b1 23apt-get -y install build-essential git-core debhelper autotools-dev \
8bc53243
DM
24autogen dh-autoreconf dkms doxygen check pkg-config groff quilt dpatch \
25automake autoconf libtool lintian libdevel-cycle-perl libjson-perl \
26libcommon-sense-perl liblinux-inotify2-perl libio-stringy-perl \
27libstring-shellquote-perl dh-systemd rpm2cpio libsqlite3-dev sqlite3 \
28libglib2.0-dev librrd-dev librrds-perl rrdcached libdigest-hmac-perl \
29libxml-parser-perl gdb libcrypt-openssl-random-perl \
30libcrypt-openssl-rsa-perl libnet-ldap-perl libauthen-pam-perl \
31libjson-xs-perl libterm-readline-gnu-perl oathtool libmime-base32-perl \
32liboath0 libpci-dev texi2html libsdl1.2-dev libgnutls28-dev \
33libspice-protocol-dev xfslibs-dev libnuma-dev libaio-dev \
1cfd43f6 34pve-libspice-server-dev libusbredirparser-dev glusterfs-common \
8bc53243
DM
35libusb-1.0-0-dev librbd-dev libpopt-dev iproute bridge-utils numactl \
36glusterfs-common ceph-common python-ceph libgoogle-perftools4 \
37libfile-chdir-perl lvm2 glusterfs-client liblockfile-simple-perl \
38libsystemd-daemon-dev libreadline-gplv2-dev libio-multiplex-perl \
39libnetfilter-log-dev libipset3 ipset socat libsasl2-dev libogg-dev \
40python-pyparsing libfilesys-df-perl libcrypt-ssleay-perl \
41libfile-readbackwards-perl libanyevent-perl libanyevent-http-perl \
42unzip liblocale-po-perl vlan ifenslave-2.6 libfile-sync-perl cstream \
43lzop dtach apt-transport-https hdparm gdisk parted ttf-dejavu-core \
44liblzma-dev dosfstools mtools libxen-dev
e143e9d8 45
a4a9a328
DM
46= Compile PVE packages from Source =
47
48Download and install the following git modules in order from top to bottom:
e143e9d8 49
7da024b1 50# git clone git://git.proxmox.com/git/<PACKAGE.git>
e143e9d8 51
7da024b1
DM
52You currently need the following packages:
53
47e4eb11 54libqb.git
7da024b1 55corosync-pve.git
7da024b1
DM
56pve-common.git
57pve-cluster.git
56d42b76 58lvm.git
7da024b1
DM
59pve-access-control.git
60pve-storage.git
61pve-qemu-kvm.git
62qemu-server.git
63vncterm.git
8bc53243
DM
64spiceterm.git
65#vzquota.git
66#vzctl.git
67#fence-agents-pve.git
68#resource-agents-pve.git
7da024b1 69pve-manager.git
8bc53243 70pve-kernel-3.10.0.git
60f4e8c7 71libiscsi.git
8bc53243 72#gfs2-utils.git
60f4e8c7 73ksm-control-daemon.git
e143e9d8 74
60f4e8c7 75Most packages can be installed with 'make dinstall' command.
e143e9d8
DM
76
774. Reboot the system.
785. Learn to use the quilt patch scripts.
796. Happy coding.
80
81There is an experimental package containing the API documentation
82as ExtJS application:
83
7da024b1
DM
84pve2-api-doc.git
85
86You can view the source code at:
87
88https://git.proxmox.com
e143e9d8
DM
89
90
a4a9a328 91= REST vs. SOAP =
e143e9d8
DM
92
93We decided to change our SOAP API (1.X) and use a REST like API. The
94concept is described in [1] (Resource Oriented Architecture
95(ROA)). The main advantage is that we are able to remove a lot of code
96(the whole SOAP stack) to reduce software complexity.
97
98We also moved away from server side content generation. Instead we use
99the ExtJS Rich Internet Application Framework
100(http://www.sencha.com).
101
102That framework, like any other AJAX toolkit, can talk directly to the
103REST API using JSON. So we were able to remove the server side
104template toolkit completely.
105
a4a9a328 106= JSON and JSON Schema =
e143e9d8
DM
107
108We use JSON as data format, because it is simple and parse-able by any
109web browser.
110
111Additionally, we use JSON Schema [2] to formally describe our API. So
112we can automatically generate the whole API Documentation, and we can
113verify all parameters and return values.
114
60f4e8c7 115A great side effect was that we are able to use JSON Schema to
e143e9d8
DM
116produce command line argument parsers automatically. In fact, the REST
117API and the command line tools use the same code.
118
119Object linkage is done using the JSON Hyper Schema (links property).
120
121A small utility called 'pvesh' exposes the whole REST API on the command
122line.
123
124So here is a summary of the advantage:
125
126 - easy, human readable data format (native web browser format)
127 - automatic parameter verification (we can also verify return values)
128 - automatic generation of API documentation
129 - easy way to create command line tools (using same API).
130
a4a9a328 131= API Implementation (PVE::RESTHandler) =
e143e9d8
DM
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
a4a9a328
DM
220= References =
221
e143e9d8
DM
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/