Loading...
Searching...
No Matches
Ftp.hpp
Go to the documentation of this file.
1
2//
3// SFML - Simple and Fast Multimedia Library
4// Copyright (C) 2007-2024 Laurent Gomila (laurent@sfml-dev.org)
5//
6// This software is provided 'as-is', without any express or implied warranty.
7// In no event will the authors be held liable for any damages arising from the use of this software.
8//
9// Permission is granted to anyone to use this software for any purpose,
10// including commercial applications, and to alter it and redistribute it freely,
11// subject to the following restrictions:
12//
13// 1. The origin of this software must not be misrepresented;
14// you must not claim that you wrote the original software.
15// If you use this software in a product, an acknowledgment
16// in the product documentation would be appreciated but is not required.
17//
18// 2. Altered source versions must be plainly marked as such,
19// and must not be misrepresented as being the original software.
20//
21// 3. This notice may not be removed or altered from any source distribution.
22//
24
25#pragma once
26
28// Headers
31
33
34#include <SFML/System/Time.hpp>
35
36#include <filesystem>
37#include <string>
38#include <vector>
39
40
41namespace sf
42{
43class IpAddress;
44
50{
51public:
56 enum class TransferMode
57 {
61 };
62
68 {
69 public:
74 enum class Status
75 {
76 // 1xx: the requested action is being initiated,
77 // expect another reply before proceeding with a new command
82
83 // 2xx: the requested action has been successfully completed
84 Ok = 200,
88 FileStatus = 213,
90 SystemType = 215,
96 LoggedIn = 230,
99
100 // 3xx: the command has been accepted, but the requested action
101 // is dormant, pending receipt of further information
105
106 // 4xx: the command was not accepted and the requested action did not take place,
107 // but the error condition is temporary and the action may be requested again
114
115 // 5xx: the command was not accepted and
116 // the requested action did not take place
128
129 // 10xx: SFML custom codes
134 };
135
146 explicit Response(Status code = Status::InvalidResponse, std::string message = "");
147
157 [[nodiscard]] bool isOk() const;
158
165 [[nodiscard]] Status getStatus() const;
166
173 [[nodiscard]] const std::string& getMessage() const;
174
175 private:
177 // Member data
179 Status m_status;
180 std::string m_message;
181 };
182
188 {
189 public:
196 DirectoryResponse(const Response& response);
197
204 [[nodiscard]] const std::filesystem::path& getDirectory() const;
205
206 private:
208 // Member data
210 std::filesystem::path m_directory;
211 };
212
213
219 {
220 public:
228 ListingResponse(const Response& response, const std::string& data);
229
236 [[nodiscard]] const std::vector<std::string>& getListing() const;
237
238 private:
240 // Member data
242 std::vector<std::string> m_listing;
243 };
244
249 Ftp() = default;
250
259
264 Ftp(const Ftp&) = delete;
265
270 Ftp& operator=(const Ftp&) = delete;
271
293 [[nodiscard]] Response connect(IpAddress server, unsigned short port = 21, Time timeout = Time::Zero);
294
303 [[nodiscard]] Response disconnect();
304
314 [[nodiscard]] Response login();
315
328 [[nodiscard]] Response login(const std::string& name, const std::string& password);
329
339 [[nodiscard]] Response keepAlive();
340
353
369 [[nodiscard]] ListingResponse getDirectoryListing(const std::string& directory = "");
370
383 [[nodiscard]] Response changeDirectory(const std::string& directory);
384
393 [[nodiscard]] Response parentDirectory();
394
408 [[nodiscard]] Response createDirectory(const std::string& name);
409
425 [[nodiscard]] Response deleteDirectory(const std::string& name);
426
441 [[nodiscard]] Response renameFile(const std::filesystem::path& file, const std::filesystem::path& newName);
442
458 [[nodiscard]] Response deleteFile(const std::filesystem::path& name);
459
480 [[nodiscard]] Response download(const std::filesystem::path& remoteFile,
481 const std::filesystem::path& localPath,
483
505 [[nodiscard]] Response upload(const std::filesystem::path& localFile,
506 const std::filesystem::path& remotePath,
508 bool append = false);
509
526 [[nodiscard]] Response sendCommand(const std::string& command, const std::string& parameter = "");
527
528private:
538 Response getResponse();
539
545 class DataChannel;
546
547 friend class DataChannel;
548
550 // Member data
552 TcpSocket m_commandSocket;
553 std::string m_receiveBuffer;
554};
555
556} // namespace sf
557
558
#define SFML_NETWORK_API
Specialization of FTP response returning a directory.
Definition Ftp.hpp:188
DirectoryResponse(const Response &response)
Default constructor.
const std::filesystem::path & getDirectory() const
Get the directory returned in the response.
Specialization of FTP response returning a file name listing.
Definition Ftp.hpp:219
const std::vector< std::string > & getListing() const
Return the array of directory/file names.
ListingResponse(const Response &response, const std::string &data)
Default constructor.
FTP response.
Definition Ftp.hpp:68
bool isOk() const
Check if the status code means a success.
Status getStatus() const
Get the status code of the response.
Response(Status code=Status::InvalidResponse, std::string message="")
Default constructor.
const std::string & getMessage() const
Get the full message contained in the response.
Status
Status codes possibly returned by a FTP response.
Definition Ftp.hpp:75
@ SystemStatus
System status, or system help reply.
Definition Ftp.hpp:86
@ DataConnectionUnavailable
Can't open data connection.
Definition Ftp.hpp:109
@ NotEnoughMemory
Requested file action aborted, exceeded storage allocation.
Definition Ftp.hpp:126
@ CommandNotImplemented
Command not implemented.
Definition Ftp.hpp:119
@ FileStatus
File status.
Definition Ftp.hpp:88
@ ClosingConnection
Service closing control connection.
Definition Ftp.hpp:92
@ ServiceUnavailable
Service not available, closing control connection.
Definition Ftp.hpp:108
@ HelpMessage
Help message.
Definition Ftp.hpp:89
@ ConnectionClosed
Not part of the FTP standard, generated by SFML when the low-level socket connection is unexpectedly ...
Definition Ftp.hpp:132
@ ServiceReadySoon
Service ready in N minutes.
Definition Ftp.hpp:79
@ InvalidResponse
Not part of the FTP standard, generated by SFML when a received response cannot be parsed.
Definition Ftp.hpp:130
@ ParameterNotImplemented
Command not implemented for that parameter.
Definition Ftp.hpp:121
@ NeedAccountToStore
Need account for storing files.
Definition Ftp.hpp:123
@ SystemType
NAME system type, where NAME is an official system name from the list in the Assigned Numbers documen...
Definition Ftp.hpp:90
@ CommandUnknown
Syntax error, command unrecognized.
Definition Ftp.hpp:117
@ FileUnavailable
Requested action not taken, file unavailable.
Definition Ftp.hpp:124
@ DirectoryStatus
Directory status.
Definition Ftp.hpp:87
@ PageTypeUnknown
Requested action aborted, page type unknown.
Definition Ftp.hpp:125
@ NotLoggedIn
Not logged in.
Definition Ftp.hpp:122
@ ParametersUnknown
Syntax error in parameters or arguments.
Definition Ftp.hpp:118
@ NeedPassword
User name ok, need password.
Definition Ftp.hpp:102
@ DataConnectionAlreadyOpened
Data connection already opened, transfer starting.
Definition Ftp.hpp:80
@ TransferAborted
Connection closed, transfer aborted.
Definition Ftp.hpp:110
@ Ok
Command ok.
Definition Ftp.hpp:84
@ LocalError
Requested action aborted, local error in processing.
Definition Ftp.hpp:112
@ BadCommandSequence
Bad sequence of commands.
Definition Ftp.hpp:120
@ ClosingDataConnection
Closing data connection, requested file action successful.
Definition Ftp.hpp:94
@ ConnectionFailed
Not part of the FTP standard, generated by SFML when the low-level socket connection with the server ...
Definition Ftp.hpp:131
@ DataConnectionOpened
Data connection open, no transfer in progress.
Definition Ftp.hpp:93
@ InvalidFile
Not part of the FTP standard, generated by SFML when a local file cannot be read or written.
Definition Ftp.hpp:133
@ RestartMarkerReply
Restart marker reply.
Definition Ftp.hpp:78
@ EnteringPassiveMode
Entering passive mode.
Definition Ftp.hpp:95
@ InsufficientStorageSpace
Requested action not taken; insufficient storage space in system, file unavailable.
Definition Ftp.hpp:113
@ ServiceReady
Service ready for new user.
Definition Ftp.hpp:91
@ FileActionAborted
Requested file action not taken.
Definition Ftp.hpp:111
@ PointlessCommand
Command not implemented.
Definition Ftp.hpp:85
@ DirectoryOk
PATHNAME created.
Definition Ftp.hpp:98
@ NeedInformation
Requested file action pending further information.
Definition Ftp.hpp:104
@ FilenameNotAllowed
Requested action not taken, file name not allowed.
Definition Ftp.hpp:127
@ OpeningDataConnection
File status ok, about to open data connection.
Definition Ftp.hpp:81
@ NeedAccountToLogIn
Need account for login.
Definition Ftp.hpp:103
@ FileActionOk
Requested file action ok.
Definition Ftp.hpp:97
@ LoggedIn
User logged in, proceed. Logged out if appropriate.
Definition Ftp.hpp:96
TransferMode
Enumeration of transfer modes.
Definition Ftp.hpp:57
@ Binary
Binary mode (file is transferred as a sequence of bytes)
Definition Ftp.hpp:58
@ Ascii
Text mode using ASCII encoding.
Definition Ftp.hpp:59
@ Ebcdic
Text mode using EBCDIC encoding.
Definition Ftp.hpp:60
Response deleteFile(const std::filesystem::path &name)
Remove an existing file.
Response createDirectory(const std::string &name)
Create a new directory.
Response deleteDirectory(const std::string &name)
Remove an existing directory.
~Ftp()
Destructor.
Response sendCommand(const std::string &command, const std::string &parameter="")
Send a command to the FTP server.
Response connect(IpAddress server, unsigned short port=21, Time timeout=Time::Zero)
Connect to the specified FTP server.
Response login()
Log in using an anonymous account.
DirectoryResponse getWorkingDirectory()
Get the current working directory.
Response changeDirectory(const std::string &directory)
Change the current working directory.
friend class DataChannel
Definition Ftp.hpp:547
ListingResponse getDirectoryListing(const std::string &directory="")
Get the contents of the given directory.
Response download(const std::filesystem::path &remoteFile, const std::filesystem::path &localPath, TransferMode mode=TransferMode::Binary)
Download a file from the server.
Response renameFile(const std::filesystem::path &file, const std::filesystem::path &newName)
Rename an existing file.
Response login(const std::string &name, const std::string &password)
Log in using a username and a password.
Response keepAlive()
Send a null command to keep the connection alive.
Ftp(const Ftp &)=delete
Deleted copy constructor.
Ftp()=default
Default constructor.
Response disconnect()
Close the connection with the server.
Response parentDirectory()
Go to the parent directory of the current one.
Response upload(const std::filesystem::path &localFile, const std::filesystem::path &remotePath, TransferMode mode=TransferMode::Binary, bool append=false)
Upload a file to the server.
Ftp & operator=(const Ftp &)=delete
Deleted copy assignment.
Encapsulate an IPv4 network address.
Definition IpAddress.hpp:49
Specialized socket using the TCP protocol.
Definition TcpSocket.hpp:54
Represents a time value.
Definition Time.hpp:42
static const Time Zero
Predefined "zero" time value.
Definition Time.hpp:110