Skip to content

Commit 0da1156

Browse files
Niels MöllerCommit Bot
Niels Möller
authored and
Commit Bot
committed
Simplify WindowsCommandLineArguments, and move to example code.
Eliminates one use of strcpyn. Bug: None Change-Id: I339a41d3d978f584fbb00ebfbffa31e4133ae33f Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/135741 Commit-Queue: Niels Moller <[email protected]> Reviewed-by: Karl Wiberg <[email protected]> Cr-Commit-Position: refs/heads/master@{#27910}
1 parent fb8c856 commit 0da1156

File tree

3 files changed

+53
-70
lines changed

3 files changed

+53
-70
lines changed

examples/peerconnection/client/main.cc

+53-2
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,68 @@
88
* be found in the AUTHORS file in the root of the source tree.
99
*/
1010

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+
1120
#include "examples/peerconnection/client/conductor.h"
1221
#include "examples/peerconnection/client/flag_defs.h"
1322
#include "examples/peerconnection/client/main_wnd.h"
1423
#include "examples/peerconnection/client/peer_connection_client.h"
1524
#include "rtc_base/checks.h"
25+
#include "rtc_base/constructor_magic.h"
1626
#include "rtc_base/ssl_adapter.h"
27+
#include "rtc_base/string_utils.h" // For ToUtf8
1728
#include "rtc_base/win32_socket_init.h"
1829
#include "rtc_base/win32_socket_server.h"
1930
#include "system_wrappers/include/field_trial.h"
2031
#include "test/field_trial.h"
2132

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
2273
int PASCAL wWinMain(HINSTANCE instance,
2374
HINSTANCE prev_instance,
2475
wchar_t* cmd_line,
@@ -28,9 +79,9 @@ int PASCAL wWinMain(HINSTANCE instance,
2879
rtc::Win32Thread w32_thread(&w32_ss);
2980
rtc::ThreadManager::Instance()->SetCurrentThread(&w32_thread);
3081

31-
rtc::WindowsCommandLineArguments win_args;
82+
WindowsCommandLineArguments win_args;
3283
int argc = win_args.argc();
33-
char** argv = win_args.argv();
84+
const char** argv = win_args.argv();
3485

3586
rtc::FlagList::SetFlagsFromCommandLine(&argc, argv, true);
3687
if (FLAG_help) {

rtc_base/flags.cc

-41
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,6 @@
1616

1717
#include "rtc_base/checks.h"
1818

19-
#if defined(WEBRTC_WIN)
20-
// clang-format off
21-
// clang formating would change include order.
22-
#include <windows.h>
23-
#include <shellapi.h> // must come after windows.h
24-
// clang-format on
25-
26-
#include "rtc_base/string_utils.h" // For ToUtf8
27-
#endif
28-
2919
namespace {
3020
bool FlagEq(const char* arg, const char* flag) {
3121
// Compare two flags for equality.
@@ -289,35 +279,4 @@ void FlagList::Register(Flag* flag) {
289279
list_ = flag;
290280
}
291281

292-
#if defined(WEBRTC_WIN)
293-
WindowsCommandLineArguments::WindowsCommandLineArguments() {
294-
// start by getting the command line.
295-
LPCWSTR command_line = ::GetCommandLineW();
296-
// now, convert it to a list of wide char strings.
297-
LPWSTR* wide_argv = ::CommandLineToArgvW(command_line, &argc_);
298-
// now allocate an array big enough to hold that many string pointers.
299-
argv_ = new char*[argc_];
300-
301-
// iterate over the returned wide strings;
302-
for (int i = 0; i < argc_; ++i) {
303-
std::string s = rtc::ToUtf8(wide_argv[i], wcslen(wide_argv[i]));
304-
char* buffer = new char[s.length() + 1];
305-
rtc::strcpyn(buffer, s.length() + 1, s.c_str());
306-
307-
// make sure the argv array has the right string at this point.
308-
argv_[i] = buffer;
309-
}
310-
LocalFree(wide_argv);
311-
}
312-
313-
WindowsCommandLineArguments::~WindowsCommandLineArguments() {
314-
// need to free each string in the array, and then the array.
315-
for (int i = 0; i < argc_; i++) {
316-
delete[] argv_[i];
317-
}
318-
319-
delete[] argv_;
320-
}
321-
#endif // WEBRTC_WIN
322-
323282
} // namespace rtc

rtc_base/flags.h

-27
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@
2424

2525
#include "rtc_base/checks.h"
2626

27-
#if defined(WEBRTC_WIN)
28-
#include "rtc_base/constructor_magic.h"
29-
#endif
30-
3127
namespace rtc {
3228

3329
// Internal use only.
@@ -243,29 +239,6 @@ class FlagList {
243239
static Flag* list_;
244240
};
245241

246-
#if defined(WEBRTC_WIN)
247-
// A helper class to translate Windows command line arguments into UTF8,
248-
// which then allows us to just pass them to the flags system.
249-
// This encapsulates all the work of getting the command line and translating
250-
// it to an array of 8-bit strings; all you have to do is create one of these,
251-
// and then call argc() and argv().
252-
class WindowsCommandLineArguments {
253-
public:
254-
WindowsCommandLineArguments();
255-
~WindowsCommandLineArguments();
256-
257-
int argc() { return argc_; }
258-
char** argv() { return argv_; }
259-
260-
private:
261-
int argc_;
262-
char** argv_;
263-
264-
private:
265-
RTC_DISALLOW_COPY_AND_ASSIGN(WindowsCommandLineArguments);
266-
};
267-
#endif // WEBRTC_WIN
268-
269242
} // namespace rtc
270243

271244
#endif // SHARED_COMMANDLINEFLAGS_FLAGS_H_

0 commit comments

Comments
 (0)