TabStripModel::GetActiveWebContents() might return NULL, and will cause a crash if...
[chromium-blink-merge.git] / net / ftp / ftp_directory_listing_parser_os2.cc
blob094a9bdb8d8475e50b008d670249d909a619c231
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "net/ftp/ftp_directory_listing_parser_os2.h"
7 #include <vector>
9 #include "base/strings/string_number_conversions.h"
10 #include "base/strings/string_split.h"
11 #include "base/strings/string_util.h"
12 #include "base/time/time.h"
13 #include "net/ftp/ftp_directory_listing_parser.h"
14 #include "net/ftp/ftp_util.h"
16 namespace net {
18 bool ParseFtpDirectoryListingOS2(
19 const std::vector<base::string16>& lines,
20 std::vector<FtpDirectoryListingEntry>* entries) {
21 for (size_t i = 0; i < lines.size(); i++) {
22 if (lines[i].empty())
23 continue;
25 std::vector<base::string16> columns;
26 base::SplitString(base::CollapseWhitespace(lines[i], false), ' ', &columns);
28 // Every line of the listing consists of the following:
30 // 1. size in bytes (0 for directories)
31 // 2. type (A for files, DIR for directories)
32 // 3. date
33 // 4. time
34 // 5. filename (may be empty or contain spaces)
36 // For now, make sure we have 1-4, and handle 5 later.
37 if (columns.size() < 4)
38 return false;
40 FtpDirectoryListingEntry entry;
41 if (!base::StringToInt64(columns[0], &entry.size))
42 return false;
43 if (EqualsASCII(columns[1], "DIR")) {
44 if (entry.size != 0)
45 return false;
46 entry.type = FtpDirectoryListingEntry::DIRECTORY;
47 entry.size = -1;
48 } else if (EqualsASCII(columns[1], "A")) {
49 entry.type = FtpDirectoryListingEntry::FILE;
50 if (entry.size < 0)
51 return false;
52 } else {
53 return false;
56 if (!FtpUtil::WindowsDateListingToTime(columns[2],
57 columns[3],
58 &entry.last_modified)) {
59 return false;
62 entry.name = FtpUtil::GetStringPartAfterColumns(lines[i], 4);
63 if (entry.name.empty()) {
64 // Some FTP servers send listing entries with empty names.
65 // It's not obvious how to display such an entry, so ignore them.
66 // We don't want to make the parsing fail at this point though.
67 // Other entries can still be useful.
68 continue;
71 entries->push_back(entry);
74 return true;
77 } // namespace net