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

Side by Side Diff: net/ftp/ftp_directory_parser.h

Issue 126096: Using base::Time::Exploded instead of "tm" (FTP PATCH SET 5) (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | net/ftp/ftp_directory_parser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Version: MPL 1.1/GPL 2.0/LGPL 2.1 5 // Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 // The contents of this file are subject to the Mozilla Public License Version 6 // The contents of this file are subject to the Mozilla Public License Version
7 // 1.1 (the "License"); you may not use this file except in compliance with 7 // 1.1 (the "License"); you may not use this file except in compliance with
8 // the License. You may obtain a copy of the License at 8 // the License. You may obtain a copy of the License at
9 // http://www.mozilla.org/MPL/ 9 // http://www.mozilla.org/MPL/
10 // Software distributed under the License is distributed on an "AS IS" basis, 10 // Software distributed under the License is distributed on an "AS IS" basis,
(...skipping 23 matching lines...) Expand all
34 // the provisions above, a recipient may use your version of this file under 34 // the provisions above, a recipient may use your version of this file under
35 // the terms of any one of the MPL, the GPL or the LGPL. 35 // the terms of any one of the MPL, the GPL or the LGPL.
36 36
37 // Derived from: 37 // Derived from:
38 // mozilla/netwerk/streamconv/converters/ParseFTPList.h revision 1.3 38 // mozilla/netwerk/streamconv/converters/ParseFTPList.h revision 1.3
39 39
40 40
41 #ifndef NET_FTP_FTP_DIRECTORY_PARSER_H_ 41 #ifndef NET_FTP_FTP_DIRECTORY_PARSER_H_
42 #define NET_FTP_FTP_DIRECTORY_PARSER_H_ 42 #define NET_FTP_FTP_DIRECTORY_PARSER_H_
43 43
44 #include <time.h>
45 44
46 #include "base/basictypes.h" 45 #include "base/time.h"
47 46
48 namespace net { 47 namespace net {
49 48
50 struct ListState { 49 struct ListState {
51 void* magic; // to determine if previously initialized 50 void* magic; // Determine if previously initialized.
52 int64 now_time; // needed for year determination. 51 bool now_tm_valid; // now_tm contains a valid time
53 struct tm now_tm; // needed for year determination. 52 base::Time::Exploded now_tm; // needed for year determination.
54 int lstyle; // LISTing style. 53 int lstyle; // LISTing style.
55 int parsed_one; // returned anything yet? 54 int parsed_one; // returned anything yet?
56 char carry_buf[84]; // for VMS multiline. 55 char carry_buf[84]; // for VMS multiline.
57 unsigned int carry_buf_len; // length of name in carry_buf. 56 unsigned int carry_buf_len; // length of name in carry_buf.
58 unsigned int numlines; // number of lines seen. 57 unsigned int numlines; // number of lines seen.
59 }; 58 };
60 59
61 enum LineType { 60 enum LineType {
62 FTP_TYPE_DIRECTORY, // LIST line is a directory entry ('result' is valid). 61 FTP_TYPE_DIRECTORY, // LIST line is a directory entry ('result' is valid).
63 FTP_TYPE_FILE, // LIST line is a file's entry ('result' is valid). 62 FTP_TYPE_FILE, // LIST line is a file's entry ('result' is valid).
64 FTP_TYPE_SYMLINK, // LIST line is a symlink's entry ('result' is valid). 63 FTP_TYPE_SYMLINK, // LIST line is a symlink's entry ('result' is valid).
65 FTP_TYPE_JUNK, // LIST line is junk. (cwd, non-file/dir/link, etc). 64 FTP_TYPE_JUNK, // LIST line is junk. (cwd, non-file/dir/link, etc).
66 FTP_TYPE_COMMENT // Its not a LIST line (its a "comment"). 65 FTP_TYPE_COMMENT // Its not a LIST line (its a "comment").
67 }; 66 };
68 67
69 struct ListResult { 68 struct ListResult {
70 LineType fe_type; 69 LineType fe_type;
71 const char* fe_fname; // pointer to filename 70 const char* fe_fname; // pointer to filename
72 unsigned int fe_fnlen; // length of filename 71 unsigned int fe_fnlen; // length of filename
73 const char* fe_lname; // pointer to symlink name 72 const char* fe_lname; // pointer to symlink name
74 unsigned int fe_lnlen; // length of symlink name 73 unsigned int fe_lnlen; // length of symlink name
75 char fe_size[40]; // size of file in bytes (<= (2^128 - 1)) 74 char fe_size[40]; // size of file in bytes
76 int fe_cinfs; // file system is definitely case insensitive 75 // (<= (2^128 - 1))
77 // TODO(ibrar): We should use "base::Time::Exploded" instead of "tm" 76 int fe_cinfs; // file system is definitely
78 struct tm fe_time; // last-modified time 77 // case insensitive
78 base::Time::Exploded fe_time; // last-modified time
79 }; 79 };
80 80
81 // ParseFTPLine() parses line from an FTP LIST command. 81 // ParseFTPLine() parses line from an FTP LIST command.
82 // 82 //
83 // Written July 2002 by Cyrus Patel <cyp@fb14.uni-mainz.de> 83 // Written July 2002 by Cyrus Patel <cyp@fb14.uni-mainz.de>
84 // with acknowledgements to squid, lynx, wget and ftpmirror. 84 // with acknowledgements to squid, lynx, wget and ftpmirror.
85 // 85 //
86 // Arguments: 86 // Arguments:
87 // 'line': line of FTP data connection output. The line is assumed 87 // 'line': line of FTP data connection output. The line is assumed
88 // to end at the first '\0' or '\n' or '\r\n'. 88 // to end at the first '\0' or '\n' or '\r\n'.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 // between an error message and an NLST line would require ParseList() to 125 // between an error message and an NLST line would require ParseList() to
126 // recognize all the possible strerror() messages in the world. 126 // recognize all the possible strerror() messages in the world.
127 127
128 LineType ParseFTPLine(const char *line, 128 LineType ParseFTPLine(const char *line,
129 struct ListState *state, 129 struct ListState *state,
130 struct ListResult *result); 130 struct ListResult *result);
131 131
132 } // namespace net 132 } // namespace net
133 133
134 #endif // NET_FTP_FTP_DIRECTORY_PARSER_H_ 134 #endif // NET_FTP_FTP_DIRECTORY_PARSER_H_
OLDNEW
« no previous file with comments | « no previous file | net/ftp/ftp_directory_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698