]> git.proxmox.com Git - pve-common.git/blame - README.dev
README.dev: add missing build depends for pve-cluster
[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
48e957b9 177. run: apt-get install proxmox-ve
e143e9d8 18
a4a9a328
DM
19You should now have a working Proxmox VE installation.
20
21= Install build prerequisites for development environment =
47e4eb11 22
48e957b9
MR
23apt-get -y install build-essential git-core git-email debhelper \
24autotools-dev autogen dh-autoreconf dkms doxygen check pkg-config \
25groff quilt dpatch automake autoconf libtool lintian libdevel-cycle-perl \
26libjson-perl libcommon-sense-perl liblinux-inotify2-perl libio-stringy-perl \
8bc53243
DM
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 \
37640d62 38libsystemd-dev libreadline-gplv2-dev libio-multiplex-perl \
8bc53243
DM
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 \
37640d62 44liblzma-dev dosfstools mtools libxen-dev libfuse-dev corosync-dev \
3ffb1395 45libcpg-dev libquorum-dev libcmap-dev libuuid-perl \
37640d62 46libqb-dev libapparmor-dev docbook2x libcap-dev dh-apparmor \
fe949d0e 47graphviz libseccomp-dev libglib-perl libgtk3-perl libnss3-dev libdlm-dev \
67b18b35 48libudev-dev asciidoc-dblatex source-highlight inkscape
e143e9d8 49
a4a9a328
DM
50= Compile PVE packages from Source =
51
52Download and install the following git modules in order from top to bottom:
e143e9d8 53
7da024b1 54# git clone git://git.proxmox.com/git/<PACKAGE.git>
e143e9d8 55
7da024b1
DM
56You currently need the following packages:
57
7da024b1 58pve-common.git
67b18b35 59libpve-http-server-perl.git
60libpve-apiclient-perl.git
f77a3f79 61pve-docs.git
7da024b1 62pve-cluster.git
56d42b76 63lvm.git
7da024b1
DM
64pve-access-control.git
65pve-storage.git
66pve-qemu-kvm.git
67qemu-server.git
68vncterm.git
8bc53243
DM
69spiceterm.git
70#vzquota.git
71#vzctl.git
72#fence-agents-pve.git
73#resource-agents-pve.git
7da024b1 74pve-manager.git
fe949d0e 75#pve-kernel-3.10.0.git
37640d62 76#libiscsi.git
8bc53243 77#gfs2-utils.git
60f4e8c7 78ksm-control-daemon.git
fe949d0e
WL
79pve-container.git
80pve-firewall.git
81pve-kernel.git
e143e9d8 82
60f4e8c7 83Most packages can be installed with 'make dinstall' command.
e143e9d8
DM
84
854. Reboot the system.
865. Learn to use the quilt patch scripts.
876. Happy coding.
88
89There is an experimental package containing the API documentation
90as ExtJS application:
91
7da024b1
DM
92pve2-api-doc.git
93
94You can view the source code at:
95
96https://git.proxmox.com
e143e9d8
DM
97
98
a4a9a328 99= REST vs. SOAP =
e143e9d8
DM
100
101We decided to change our SOAP API (1.X) and use a REST like API. The
102concept is described in [1] (Resource Oriented Architecture
103(ROA)). The main advantage is that we are able to remove a lot of code
104(the whole SOAP stack) to reduce software complexity.
105
106We also moved away from server side content generation. Instead we use
107the ExtJS Rich Internet Application Framework
108(http://www.sencha.com).
109
110That framework, like any other AJAX toolkit, can talk directly to the
111REST API using JSON. So we were able to remove the server side
112template toolkit completely.
113
a4a9a328 114= JSON and JSON Schema =
e143e9d8
DM
115
116We use JSON as data format, because it is simple and parse-able by any
117web browser.
118
119Additionally, we use JSON Schema [2] to formally describe our API. So
120we can automatically generate the whole API Documentation, and we can
121verify all parameters and return values.
122
60f4e8c7 123A great side effect was that we are able to use JSON Schema to
e143e9d8
DM
124produce command line argument parsers automatically. In fact, the REST
125API and the command line tools use the same code.
126
127Object linkage is done using the JSON Hyper Schema (links property).
128
129A small utility called 'pvesh' exposes the whole REST API on the command
130line.
131
132So here is a summary of the advantage:
133
134 - easy, human readable data format (native web browser format)
135 - automatic parameter verification (we can also verify return values)
136 - automatic generation of API documentation
137 - easy way to create command line tools (using same API).
138
a4a9a328 139= API Implementation (PVE::RESTHandler) =
e143e9d8
DM
140
141All classes exposing methods on the API use PVE::RESTHandler as base class.
142
143 use base qw(PVE::RESTHandler);
144
145To expose methods, one needs to call register_method():
146
147 __PACKAGE__->register_method ($schema);
148
149Where $schema is a PVE method schema as described in
150PVE::JSONSchema. It includes a description of parameters and return
151values, and a reference to the actual code
152
153__PACKAGE__->register_method ({
154 name => 'echo',
155 path => 'echo',
156 method => 'GET',
157 description => "simple return value of parameter 'text'",
158 parameters => {
159 additionalProperties => 0,
160 properties => {
161 text => {
162 type => 'string',
163 }
164 },
165 },
166 returns => {
167 type => 'string',
168 },
169 code => sub {
ef73f03b 170 my ($param) = @_;
e143e9d8
DM
171
172 return $param->{text};
173 }
174});
175
176The 'name' property is only used if you want to call the method
177directly from Perl. You can do that using:
178
179 print __PACKAGE__->echo({ text => "a test" });
180
181We use Perl's AUTOLOAD feature to implement this. Note: You need to
182pass parameters a HASH reference.
183
184There is a special helper method called cli_handler(). This is used by
185the CLIHandler Class for command line tools, where you want to pass
186arguments as array of strings. This uses Getopt::Long to parse parameters.
187
188There is a second way to map names to methods - using the 'path'
189property. And you can register subclasses. That way you can set up a
190filesystem like hierarchy to access methods.
191
192Here is an example:
193----------------------------
194package C1;
195
196__PACKAGE__->register_method ({
197 subclass => "C2",
198 path => 'sub2',
199});
200
201
202__PACKAGE__->register_method ({
203 name => 'list1',
204 path => 'index',
205 method => 'GET',
206 ...
207});
208
209package C2;
210
211__PACKAGE__->register_method ({
212 name => 'list2',
213 path => 'index',
214 method => 'GET',
215 ...
216});
217-------------------------------
218
219The utily method find_handler (in PVE::RESTHandler) can be use to do
220'path' related method lookups.
221
222C1->find_handler('GET', "/index") => C1::list1
223C1->find_handler('GET', "/sub2/index") => C2::list2
224
225The HTTP server use the URL (a path) to find the corresponding method.
226
227
a4a9a328
DM
228= References =
229
e143e9d8
DM
230[1] RESTful Web Services
231Web services for the real world
232
233By
234 Leonard Richardson, Sam Ruby
235Publisher:
236 O'Reilly Media
237Released:
238 May 2007
239
240[2] JSON Schema links: http://json-schema.org/