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