Lets write out first CppCMS based application: |
|
First we create a file called hello.cpp and store in |
it the following content. |
|
_Includes:_ |
|
We should import some definitions for our 1st application: |
|
- `cppcms/application.h` - the class `application` that every CppCMS application is derived from it. |
- `cppcms/applications_pool.h` - the class `applications_pool` - the class the manages user applications - creates new per HTTP request and caches them for future use. |
- `cppcms/applications_pool.h` - the class `applications_pool` - the class that manages user applications - creates new per HTTP request and caches them for future use. |
- `cppcms/service.h` - the service - central event loop of the network service. |
- `cppcms/http_response.h` the class we write response to the client with. |
|
So let's include them all. |
|
#include <cppcms/application.h> |
#include <cppcms/applications_pool.h> |
#include <cppcms/service.h> |
#include <cppcms/http_response.h> |
#include <iostream> |
|
Now we define our first application class, that is |
derived from `cppcms::application`. It should receive |
in its constructor a reference to the central CppCMS service |
that runs our application. |
|
class hello : public cppcms::application { |
public: |
hello(cppcms::service &srv) : |
cppcms::application(srv) |
{ |
} |
virtual void main(std::string url); |
}; |
|
At this point, in order to respond on user request we |
just override `cppcms::application::main` member |
function that is always called per each request. |
|
In this function we write simple HTML to output stream. |
The output stream can be accessed using `response` member |
function of `application` class that gives us an access to |
the output stream `out()`. |
|
void hello::main(std::string /*url*/) |
{ |
response().out() << |
"<html>\n" |
"<body>\n" |
" <h1>Hello World</h1>\n" |
"</body>\n" |
"</html>\n"; |
} |
|
Now lets setup our main function. First we create the |
service class that parser command line parameters and searches for configuration options |
|
int main(int argc,char ** argv) |
{ |
try { |
cppcms::service srv(argc,argv); |
|
Then we tell to `applications_pool` class to use our application - `hello` by providing it predefined |
object factory `cppcms::applications_factory<hello>()`. We so |
called mount our application to the pool to it would |
be used for request handling. |
|
srv.applications_pool().mount( |
cppcms::applications_factory<hello>() |
); |
|
And now we run our event loop. The `run()` function |
exits when the process receives `SIGINT`, `SIGTERM` or `SIGUSR1` signal. |
|
srv.run(); |
} |
catch(std::exception const &e) { |
std::cerr << e.what() << std::endl; |
} |
} |
|
Thats it, our application is ready, now we can compile it as simple as: |
|
c++ hello.cpp -lcppcms -o hello |
|
Now we need to prepare configuration file `config.js` that uses JSON file format for passing all options: |
|
{ |
"service" : { |
"api" : "http", |
"port" : 8080 |
}, |
"http" : { |
"script_names" : [ "/hello" ] |
} |
} |
|
We setup our service to listen on port 8080 using HTTP |
protocol (it is very useful for debugging our applications). |
|
We also provide the `script_names` parameter that defines |
the path to the virtual "CGI Scripts" or in simple words |
the path that our application should be called from. |
|
Now we can start the applications |
|
./hello -c config.js |
|
Go to our browser and hit <http://localhost:8080/hello> |
link to see our first CppCMS application working. |