GCC Code Coverage Report


Directory: src/
File: src/hpp-manipulation-corba.cc
Date: 2024-12-13 15:43:02
Exec Total Coverage
Lines: 0 11 0.0%
Branches: 0 24 0.0%

Line Branch Exec Source
1 // Copyright (c) 2012 CNRS
2 // Author: Florent Lamiraux
3 //
4
5 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions are
7 // met:
8 //
9 // 1. Redistributions of source code must retain the above copyright
10 // notice, this list of conditions and the following disclaimer.
11 //
12 // 2. Redistributions in binary form must reproduce the above copyright
13 // notice, this list of conditions and the following disclaimer in the
14 // documentation and/or other materials provided with the distribution.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
27 // DAMAGE.
28
29 #include <hpp/corbaserver/manipulation/server.hh>
30 #include <hpp/corbaserver/server.hh>
31 #include <hpp/manipulation/package-config.hh>
32 #include <hpp/manipulation/problem-solver.hh>
33
34 typedef hpp::corbaServer::Server CorbaServer;
35 typedef hpp::manipulation::Server ManipulationServer;
36 typedef hpp::manipulation::ProblemSolver ProblemSolver;
37 typedef hpp::manipulation::ProblemSolverPtr_t ProblemSolverPtr_t;
38
39 int main(int argc, char* argv[]) {
40 if (argc > 0)
41 std::cerr << argv[0];
42 else
43 std::cerr << "hpp-manipulation-server";
44 std::cerr << " is provided for backward compatibility.\n"
45 "You can now use hppcorbaserver and add the following lines to "
46 "your Python script:\n"
47 "from hpp.corbaserver import loadServerPlugin\n"
48 "loadServerPlugin (\"corbaserver\", \"manipulation-corba.so\")\n"
49 << std::endl;
50
51 ProblemSolverPtr_t problemSolver = new ProblemSolver();
52
53 CorbaServer corbaServer(problemSolver, argc, const_cast<const char**>(argv),
54 true);
55 corbaServer.startCorbaServer();
56
57 corbaServer.loadPlugin(corbaServer.mainContextId(), "manipulation-corba.so");
58 corbaServer.processRequest(true);
59 }
60