Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1272)

Unified Diff: net/ftp/ftp_directory_listing_parser_netware.cc

Issue 6670085: FTP: Detect the character encoding only after the entire listing is received. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: test coverage Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/ftp/ftp_directory_listing_parser_netware.cc
diff --git a/net/ftp/ftp_directory_listing_parser_netware.cc b/net/ftp/ftp_directory_listing_parser_netware.cc
index 1801a4a169b5022aec435e403bb9db2268cd1c90..1e8c80e357f82bd1b4b1fbef3618ea759d6cea14 100644
--- a/net/ftp/ftp_directory_listing_parser_netware.cc
+++ b/net/ftp/ftp_directory_listing_parser_netware.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -10,6 +10,7 @@
#include "base/string_split.h"
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
+#include "net/ftp/ftp_directory_listing_parser.h"
#include "net/ftp/ftp_util.h"
namespace {
@@ -34,80 +35,60 @@ bool LooksLikeNetwarePermissionsListing(const string16& text) {
namespace net {
-FtpDirectoryListingParserNetware::FtpDirectoryListingParserNetware(
- const base::Time& current_time)
- : received_first_line_(false),
- current_time_(current_time) {
-}
-
-FtpDirectoryListingParserNetware::~FtpDirectoryListingParserNetware() {}
-
-FtpServerType FtpDirectoryListingParserNetware::GetServerType() const {
- return SERVER_NETWARE;
-}
-
-bool FtpDirectoryListingParserNetware::ConsumeLine(const string16& line) {
- if (!received_first_line_) {
- received_first_line_ = true;
-
- return StartsWith(line, ASCIIToUTF16("total "), true);
- }
-
- std::vector<string16> columns;
- base::SplitString(CollapseWhitespace(line, false), ' ', &columns);
-
- if (columns.size() != 8)
- return false;
-
- FtpDirectoryListingEntry entry;
-
- if (columns[0].length() != 1)
- return false;
- if (columns[0][0] == 'd') {
- entry.type = FtpDirectoryListingEntry::DIRECTORY;
- } else if (columns[0][0] == '-') {
- entry.type = FtpDirectoryListingEntry::FILE;
- } else {
- return false;
- }
-
- // Note: on older Netware systems the permissions listing is in the same
- // column as the entry type (just there is no space between them). We do not
- // support the older format here for simplicity.
- if (!LooksLikeNetwarePermissionsListing(columns[1]))
+bool ParseFtpDirectoryListingNetware(
+ const std::vector<string16>& lines,
+ const base::Time& current_time,
+ std::vector<FtpDirectoryListingEntry>* entries) {
+ if (!lines.empty() && !StartsWith(lines[0], ASCIIToUTF16("total "), true))
return false;
- if (!base::StringToInt64(columns[3], &entry.size))
- return false;
- if (entry.size < 0)
- return false;
- if (entry.type != FtpDirectoryListingEntry::FILE)
- entry.size = -1;
-
- // Netware uses the same date listing format as Unix "ls -l".
- if (!FtpUtil::LsDateListingToTime(columns[4], columns[5], columns[6],
- current_time_, &entry.last_modified)) {
- return false;
+ for (size_t i = 1U; i < lines.size(); i++) {
+ if (lines[i].empty())
+ continue;
+
+ std::vector<string16> columns;
+ base::SplitString(CollapseWhitespace(lines[i], false), ' ', &columns);
+
+ if (columns.size() != 8)
+ return false;
+
+ FtpDirectoryListingEntry entry;
+
+ if (columns[0].length() != 1)
+ return false;
+ if (columns[0][0] == 'd') {
+ entry.type = FtpDirectoryListingEntry::DIRECTORY;
+ } else if (columns[0][0] == '-') {
+ entry.type = FtpDirectoryListingEntry::FILE;
+ } else {
+ return false;
+ }
+
+ // Note: on older Netware systems the permissions listing is in the same
+ // column as the entry type (just there is no space between them). We do not
+ // support the older format here for simplicity.
+ if (!LooksLikeNetwarePermissionsListing(columns[1]))
+ return false;
+
+ if (!base::StringToInt64(columns[3], &entry.size))
+ return false;
+ if (entry.size < 0)
+ return false;
+ if (entry.type != FtpDirectoryListingEntry::FILE)
+ entry.size = -1;
+
+ // Netware uses the same date listing format as Unix "ls -l".
+ if (!FtpUtil::LsDateListingToTime(columns[4], columns[5], columns[6],
+ current_time, &entry.last_modified)) {
+ return false;
+ }
+
+ entry.name = columns[7];
+
+ entries->push_back(entry);
}
- entry.name = columns[7];
-
- entries_.push(entry);
return true;
}
-bool FtpDirectoryListingParserNetware::OnEndOfInput() {
- return true;
-}
-
-bool FtpDirectoryListingParserNetware::EntryAvailable() const {
- return !entries_.empty();
-}
-
-FtpDirectoryListingEntry FtpDirectoryListingParserNetware::PopEntry() {
- FtpDirectoryListingEntry entry = entries_.front();
- entries_.pop();
- return entry;
-}
-
} // namespace net
« no previous file with comments | « net/ftp/ftp_directory_listing_parser_netware.h ('k') | net/ftp/ftp_directory_listing_parser_netware_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698