Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
232de951
Commit
232de951
authored
Jan 17, 2009
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for directory listing in ftp access.
parent
28afd1fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
65 additions
and
21 deletions
+65
-21
modules/access/ftp.c
modules/access/ftp.c
+65
-21
No files found.
modules/access/ftp.c
View file @
232de951
...
@@ -112,6 +112,7 @@ struct access_sys_t
...
@@ -112,6 +112,7 @@ struct access_sys_t
char
sz_epsv_ip
[
NI_MAXNUMERICHOST
];
char
sz_epsv_ip
[
NI_MAXNUMERICHOST
];
bool
out
;
bool
out
;
bool
directory
;
};
};
#define GET_OUT_SYS( p_this ) \
#define GET_OUT_SYS( p_this ) \
((access_sys_t *)(((sout_access_out_t *)(p_this))->p_sys))
((access_sys_t *)(((sout_access_out_t *)(p_this))->p_sys))
...
@@ -324,6 +325,7 @@ static int InOpen( vlc_object_t *p_this )
...
@@ -324,6 +325,7 @@ static int InOpen( vlc_object_t *p_this )
STANDARD_READ_ACCESS_INIT
STANDARD_READ_ACCESS_INIT
p_sys
->
fd_data
=
-
1
;
p_sys
->
fd_data
=
-
1
;
p_sys
->
out
=
false
;
p_sys
->
out
=
false
;
p_sys
->
directory
=
false
;
if
(
parseURL
(
&
p_sys
->
url
,
p_access
->
psz_path
)
)
if
(
parseURL
(
&
p_sys
->
url
,
p_access
->
psz_path
)
)
goto
exit_error
;
goto
exit_error
;
...
@@ -335,13 +337,23 @@ static int InOpen( vlc_object_t *p_this )
...
@@ -335,13 +337,23 @@ static int InOpen( vlc_object_t *p_this )
if
(
ftp_SendCommand
(
p_this
,
p_sys
,
"SIZE %s"
,
p_sys
->
url
.
psz_path
?
:
""
)
<
0
||
if
(
ftp_SendCommand
(
p_this
,
p_sys
,
"SIZE %s"
,
p_sys
->
url
.
psz_path
?
:
""
)
<
0
||
ftp_ReadCommand
(
p_this
,
p_sys
,
NULL
,
&
psz_arg
)
!=
2
)
ftp_ReadCommand
(
p_this
,
p_sys
,
NULL
,
&
psz_arg
)
!=
2
)
{
{
msg_Err
(
p_access
,
"cannot get file size"
);
msg_Dbg
(
p_access
,
"cannot get file size"
);
net_Close
(
p_sys
->
fd_cmd
);
msg_Dbg
(
p_access
,
"will try to get directory contents"
);
goto
exit_error
;
if
(
ftp_SendCommand
(
p_this
,
p_sys
,
"CWD %s"
,
p_sys
->
url
.
psz_path
?:
""
)
<
0
||
ftp_ReadCommand
(
p_this
,
p_sys
,
NULL
,
&
psz_arg
)
!=
2
)
{
msg_Err
(
p_access
,
"file or directory doesn't exist"
);
net_Close
(
p_sys
->
fd_cmd
);
goto
exit_error
;
}
p_sys
->
directory
=
true
;
}
else
{
p_access
->
info
.
i_size
=
atoll
(
&
psz_arg
[
4
]
);
free
(
psz_arg
);
msg_Dbg
(
p_access
,
"file size: %"
PRId64
,
p_access
->
info
.
i_size
);
}
}
p_access
->
info
.
i_size
=
atoll
(
&
psz_arg
[
4
]
);
free
(
psz_arg
);
msg_Dbg
(
p_access
,
"file size: %"
PRId64
,
p_access
->
info
.
i_size
);
/* Start the 'stream' */
/* Start the 'stream' */
if
(
ftp_StartStream
(
p_this
,
p_sys
,
0
)
<
0
)
if
(
ftp_StartStream
(
p_this
,
p_sys
,
0
)
<
0
)
...
@@ -475,7 +487,6 @@ static int OutSeek( sout_access_out_t *p_access, off_t i_pos )
...
@@ -475,7 +487,6 @@ static int OutSeek( sout_access_out_t *p_access, off_t i_pos )
static
ssize_t
Read
(
access_t
*
p_access
,
uint8_t
*
p_buffer
,
size_t
i_len
)
static
ssize_t
Read
(
access_t
*
p_access
,
uint8_t
*
p_buffer
,
size_t
i_len
)
{
{
access_sys_t
*
p_sys
=
p_access
->
p_sys
;
access_sys_t
*
p_sys
=
p_access
->
p_sys
;
int
i_read
;
assert
(
p_sys
->
fd_data
!=
-
1
);
assert
(
p_sys
->
fd_data
!=
-
1
);
assert
(
!
p_sys
->
out
);
assert
(
!
p_sys
->
out
);
...
@@ -483,14 +494,35 @@ static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
...
@@ -483,14 +494,35 @@ static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
if
(
p_access
->
info
.
b_eof
)
if
(
p_access
->
info
.
b_eof
)
return
0
;
return
0
;
i_read
=
net_Read
(
p_access
,
p_sys
->
fd_data
,
NULL
,
p_buffer
,
i_len
,
if
(
p_sys
->
directory
)
false
);
{
if
(
i_read
==
0
)
char
*
psz_line
=
net_Gets
(
p_access
,
p_sys
->
fd_data
,
NULL
);
p_access
->
info
.
b_eof
=
true
;
if
(
!
psz_line
)
else
if
(
i_read
>
0
)
{
p_access
->
info
.
i_pos
+=
i_read
;
p_access
->
info
.
b_eof
=
true
;
return
0
;
return
i_read
;
}
else
{
snprintf
(
(
char
*
)
p_buffer
,
i_len
,
"ftp://%s:%d/%s/%s
\n
"
,
p_sys
->
url
.
psz_host
,
p_sys
->
url
.
i_port
,
p_sys
->
url
.
psz_path
,
psz_line
);
free
(
psz_line
);
msg_Err
(
p_access
,
"%s"
,
p_buffer
);
return
strlen
(
(
const
char
*
)
p_buffer
);
}
}
else
{
int
i_read
=
net_Read
(
p_access
,
p_sys
->
fd_data
,
NULL
,
p_buffer
,
i_len
,
false
);
if
(
i_read
==
0
)
p_access
->
info
.
b_eof
=
true
;
else
if
(
i_read
>
0
)
p_access
->
info
.
i_pos
+=
i_read
;
return
i_read
;
}
}
}
/*****************************************************************************
/*****************************************************************************
...
@@ -760,14 +792,26 @@ static int ftp_StartStream( vlc_object_t *p_access, access_sys_t *p_sys,
...
@@ -760,14 +792,26 @@ static int ftp_StartStream( vlc_object_t *p_access, access_sys_t *p_sys,
msg_Dbg
(
p_access
,
"connection with
\"
%s:%d
\"
successful"
,
msg_Dbg
(
p_access
,
"connection with
\"
%s:%d
\"
successful"
,
psz_ip
,
i_port
);
psz_ip
,
i_port
);
/* "1xx" message */
if
(
p_sys
->
directory
)
if
(
ftp_SendCommand
(
p_access
,
p_sys
,
"%s %s"
,
p_sys
->
out
?
"STOR"
:
"RETR"
,
p_sys
->
url
.
psz_path
?:
""
)
<
0
||
ftp_ReadCommand
(
p_access
,
p_sys
,
&
i_answer
,
NULL
)
>
2
)
{
{
msg_Err
(
p_access
,
"cannot retrieve file"
);
if
(
ftp_SendCommand
(
p_access
,
p_sys
,
"NLST"
)
<
0
||
ftp_ReadCommand
(
p_access
,
p_sys
,
NULL
,
&
psz_arg
)
>
2
)
{
msg_Err
(
p_access
,
"cannot list directory contents"
);
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
else
{
/* "1xx" message */
if
(
ftp_SendCommand
(
p_access
,
p_sys
,
"%s %s"
,
p_sys
->
out
?
"STOR"
:
"RETR"
,
p_sys
->
url
.
psz_path
?:
""
)
<
0
||
ftp_ReadCommand
(
p_access
,
p_sys
,
&
i_answer
,
NULL
)
>
2
)
{
msg_Err
(
p_access
,
"cannot retrieve file"
);
return
VLC_EGENERIC
;
}
}
}
shutdown
(
p_sys
->
fd_data
,
p_sys
->
out
?
SHUT_RD
:
SHUT_WR
);
shutdown
(
p_sys
->
fd_data
,
p_sys
->
out
?
SHUT_RD
:
SHUT_WR
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment