Version 4.0.2.1, tag libreoffice-4.0.2.1
[LibreOffice.git] / ucb / source / ucp / ftp / ftpdirp.hxx
blobd371d889b2fe8a7621fc1e0cf5f836ce2cf9136f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 /**************************************************************************
21 TODO
22 **************************************************************************
24 *************************************************************************/
25 #ifndef _FTP_FTPDIRP_HXX_
26 #define _FTP_FTPDIRP_HXX_
28 #include <osl/time.h>
29 #include <rtl/ustring.hxx>
30 #include <com/sun/star/util/DateTime.hpp>
33 namespace ftp {
35 /*========================================================================
37 * the DateTime structure
39 *======================================================================*/
41 struct DateTime
42 : public com::sun::star::util::DateTime
44 DateTime(const sal_uInt16& hundredthSeconds,
45 const sal_uInt16& seconds,
46 const sal_uInt16& minutes,
47 const sal_uInt16& hours,
48 const sal_uInt16& day,
49 const sal_uInt16& month,
50 const sal_uInt16& year) SAL_THROW(())
51 : com::sun::star::util::DateTime(hundredthSeconds,
52 seconds,
53 minutes,
54 hours,
55 day,
56 month,
57 year) { }
59 void SetYear(sal_uInt16 year) { Year = year; }
60 void SetMonth(sal_uInt16 month) { Month = month; }
61 void SetDay(sal_uInt16 day) { Day = day; }
62 // Only zero allowed and used for time-argument
63 void SetTime(sal_uInt16) { Hours = Minutes = Seconds = HundredthSeconds = 0; }
64 void SetHour(sal_uInt16 hours) { Hours = hours; }
65 void SetMin(sal_uInt16 minutes) { Minutes = minutes; }
66 void SetSec(sal_uInt16 seconds) { Seconds = seconds; }
67 void Set100Sec(sal_uInt16 hundredthSec) { HundredthSeconds = hundredthSec; }
69 sal_uInt16 GetMonth(void) { return Month; }
74 /*========================================================================
76 * the directory information structure
78 *======================================================================*/
80 enum FTPDirentryMode { INETCOREFTP_FILEMODE_UNKNOWN = 0x00,
81 INETCOREFTP_FILEMODE_READ = 0x01,
82 INETCOREFTP_FILEMODE_WRITE = 0x02,
83 INETCOREFTP_FILEMODE_ISDIR = 0x04,
84 INETCOREFTP_FILEMODE_ISLINK = 0x08 };
86 struct FTPDirentry
88 rtl::OUString m_aURL;
89 rtl::OUString m_aName;
90 DateTime m_aDate;
91 sal_uInt32 m_nMode;
92 sal_uInt32 m_nSize;
94 FTPDirentry(void)
95 : m_aDate(0,0,0,0,0,0,0),
96 m_nMode(INETCOREFTP_FILEMODE_UNKNOWN),
97 m_nSize((sal_uInt32)(-1)) { }
99 void clear() {
100 m_aURL = m_aName = rtl::OUString();
101 m_aDate = DateTime(0,0,0,0,0,0,0);
102 m_nMode = INETCOREFTP_FILEMODE_UNKNOWN;
103 m_nSize = sal_uInt32(-1);
106 bool isDir() const {
107 return bool(m_nMode && INETCOREFTP_FILEMODE_ISDIR);
110 bool isFile() const {
111 return ! bool(m_nMode && INETCOREFTP_FILEMODE_ISDIR);
116 /*========================================================================
118 * the directory parser
120 *======================================================================*/
123 class FTPDirectoryParser
125 public:
126 static sal_Bool parseDOS (
127 FTPDirentry &rEntry,
128 const sal_Char *pBuffer );
130 static sal_Bool parseVMS (
131 FTPDirentry &rEntry,
132 const sal_Char *pBuffer );
134 static sal_Bool parseUNIX (
135 FTPDirentry &rEntry,
136 const sal_Char *pBuffer );
139 private:
141 static sal_Bool parseUNIX_isSizeField (
142 const sal_Char *pStart,
143 const sal_Char *pEnd,
144 sal_uInt32 &rSize);
146 static sal_Bool parseUNIX_isMonthField (
147 const sal_Char *pStart,
148 const sal_Char *pEnd,
149 DateTime& rDateTime);
151 static sal_Bool parseUNIX_isDayField (
152 const sal_Char *pStart,
153 const sal_Char *pEnd,
154 DateTime& rDateTime);
156 static sal_Bool parseUNIX_isYearTimeField (
157 const sal_Char *pStart,
158 const sal_Char *pEnd,
159 DateTime& rDateTime);
161 static sal_Bool parseUNIX_isTime (
162 const sal_Char *pStart,
163 const sal_Char *pEnd,
164 sal_uInt16 nHour,
165 DateTime& rDateTime);
167 static sal_Bool setYear (
168 DateTime& rDateTime,
169 sal_uInt16 nYear);
171 static sal_Bool setPath (
172 rtl::OUString& rPath,
173 const sal_Char *value,
174 sal_Int32 length = -1);
181 #endif
183 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */