• Home
  • History
  • Annotate
  • only in /external/parameter-framework/remote-process/
NameDateSize

..07-Jan-20164 KiB

Android.mk07-Jan-20162.9 KiB

CMakeLists.txt07-Jan-20161.9 KiB

main.cpp07-Jan-20166.1 KiB

README.md07-Jan-20161.1 KiB

README.md

1# remote-process
2
3`remote-process` is an executable used to communicate with an instance of the
4parameter-framework through a TCP socket.  It is only possible if the
5parameter-framework's configuration allows it (`TuningAllowed="true"` in the
6ParameterFrameworkConfiguration.xml) and if the port is also defined in the
7configuration (by the `ServerPort` attribute):
8
9For instance, if your parameter-framework configuration starts with:
10
11    <ParameterFrameworkConfiguration SystemClassName="..." ServerPort="5000" TuningAllowed="true">
12
13then, it listens on port 5000.
14
15remote-process may also be used to communicate with test-platform
16(see test/test-platform/README.md) thanks to test-platform being a minimal
17parameter-framework client.
18
19## Syntax
20
21    remote-process <host> <port> <command>
22
23You can get all available commands with the `help` command.
24
25You may also run a batch of commands by passing them on remote-process'
26standard input:
27
28    remote-process <host> <port> < file
29
30You should not use this feature in an interactive mode, because the
31communication may timeout if you're typing your commands too slowly.
32