8
8
* be found in the AUTHORS file in the root of the source tree.
9
9
*/
10
10
11
+ // clang-format off
12
+ // clang formating would change include order.
13
+ #include < windows.h>
14
+ #include < shellapi.h> // must come after windows.h
15
+ // clang-format on
16
+
17
+ #include < string>
18
+ #include < vector>
19
+
11
20
#include " examples/peerconnection/client/conductor.h"
12
21
#include " examples/peerconnection/client/flag_defs.h"
13
22
#include " examples/peerconnection/client/main_wnd.h"
14
23
#include " examples/peerconnection/client/peer_connection_client.h"
15
24
#include " rtc_base/checks.h"
25
+ #include " rtc_base/constructor_magic.h"
16
26
#include " rtc_base/ssl_adapter.h"
27
+ #include " rtc_base/string_utils.h" // For ToUtf8
17
28
#include " rtc_base/win32_socket_init.h"
18
29
#include " rtc_base/win32_socket_server.h"
19
30
#include " system_wrappers/include/field_trial.h"
20
31
#include " test/field_trial.h"
21
32
33
+ namespace {
34
+ // A helper class to translate Windows command line arguments into UTF8,
35
+ // which then allows us to just pass them to the flags system.
36
+ // This encapsulates all the work of getting the command line and translating
37
+ // it to an array of 8-bit strings; all you have to do is create one of these,
38
+ // and then call argc() and argv().
39
+ class WindowsCommandLineArguments {
40
+ public:
41
+ WindowsCommandLineArguments ();
42
+
43
+ int argc () { return argv_.size (); }
44
+ const char ** argv () { return argv_.data (); }
45
+
46
+ private:
47
+ // Owned argument strings.
48
+ std::vector<std::string> args_;
49
+ // Pointers, to get layout compatible with char** argv.
50
+ std::vector<const char *> argv_;
51
+
52
+ private:
53
+ RTC_DISALLOW_COPY_AND_ASSIGN (WindowsCommandLineArguments);
54
+ };
55
+
56
+ WindowsCommandLineArguments::WindowsCommandLineArguments () {
57
+ // start by getting the command line.
58
+ LPCWSTR command_line = ::GetCommandLineW ();
59
+ // now, convert it to a list of wide char strings.
60
+ int argc;
61
+ LPWSTR* wide_argv = ::CommandLineToArgvW (command_line, &argc);
62
+
63
+ // iterate over the returned wide strings;
64
+ for (int i = 0 ; i < argc; ++i) {
65
+ args_.push_back (rtc::ToUtf8 (wide_argv[i], wcslen (wide_argv[i])));
66
+ // make sure the argv array points to the string data.
67
+ argv_.push_back (args_.back ().c_str ());
68
+ }
69
+ LocalFree (wide_argv);
70
+ }
71
+
72
+ } // namespace
22
73
int PASCAL wWinMain (HINSTANCE instance,
23
74
HINSTANCE prev_instance,
24
75
wchar_t * cmd_line,
@@ -28,9 +79,9 @@ int PASCAL wWinMain(HINSTANCE instance,
28
79
rtc::Win32Thread w32_thread (&w32_ss);
29
80
rtc::ThreadManager::Instance ()->SetCurrentThread (&w32_thread);
30
81
31
- rtc:: WindowsCommandLineArguments win_args;
82
+ WindowsCommandLineArguments win_args;
32
83
int argc = win_args.argc ();
33
- char ** argv = win_args.argv ();
84
+ const char ** argv = win_args.argv ();
34
85
35
86
rtc::FlagList::SetFlagsFromCommandLine (&argc, argv, true );
36
87
if (FLAG_help) {
0 commit comments