Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
8cca5e8e
Commit
8cca5e8e
authored
Aug 31, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
video_filter_rss: parse the rss-urls string only one time and store the result.
parent
39f2d991
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
88 additions
and
39 deletions
+88
-39
modules/video_filter/rss.c
modules/video_filter/rss.c
+88
-39
No files found.
modules/video_filter/rss.c
View file @
8cca5e8e
...
@@ -59,6 +59,7 @@ static subpicture_t *Filter( filter_t *, mtime_t );
...
@@ -59,6 +59,7 @@ static subpicture_t *Filter( filter_t *, mtime_t );
static
int
FetchRSS
(
filter_t
*
);
static
int
FetchRSS
(
filter_t
*
);
static
void
FreeRSS
(
filter_t
*
);
static
void
FreeRSS
(
filter_t
*
);
static
int
ParseUrls
(
filter_t
*
,
char
*
);
static
const
int
pi_color_values
[]
=
{
static
const
int
pi_color_values
[]
=
{
0xf0000000
,
0x00000000
,
0x00808080
,
0x00C0C0C0
,
0xf0000000
,
0x00000000
,
0x00808080
,
0x00C0C0C0
,
...
@@ -83,8 +84,9 @@ struct rss_item_t
...
@@ -83,8 +84,9 @@ struct rss_item_t
char
*
psz_link
;
char
*
psz_link
;
};
};
struct
rss_feed_t
typedef
struct
rss_feed_t
{
{
char
*
psz_url
;
char
*
psz_title
;
char
*
psz_title
;
char
*
psz_description
;
char
*
psz_description
;
char
*
psz_link
;
char
*
psz_link
;
...
@@ -93,7 +95,7 @@ struct rss_feed_t
...
@@ -93,7 +95,7 @@ struct rss_feed_t
int
i_items
;
int
i_items
;
struct
rss_item_t
*
p_items
;
struct
rss_item_t
*
p_items
;
};
}
rss_feed_t
;
struct
filter_sys_t
struct
filter_sys_t
{
{
...
@@ -111,7 +113,6 @@ struct filter_sys_t
...
@@ -111,7 +113,6 @@ struct filter_sys_t
mtime_t
last_date
;
mtime_t
last_date
;
char
*
psz_urls
;
int
i_feeds
;
int
i_feeds
;
struct
rss_feed_t
*
p_feeds
;
struct
rss_feed_t
*
p_feeds
;
...
@@ -237,6 +238,7 @@ static int CreateFilter( vlc_object_t *p_this )
...
@@ -237,6 +238,7 @@ static int CreateFilter( vlc_object_t *p_this )
filter_sys_t
*
p_sys
;
filter_sys_t
*
p_sys
;
int
i_feed
;
int
i_feed
;
int
i_ret
=
VLC_ENOMEM
;
int
i_ret
=
VLC_ENOMEM
;
char
*
psz_urls
;
/* Allocate structure */
/* Allocate structure */
p_sys
=
p_filter
->
p_sys
=
malloc
(
sizeof
(
filter_sys_t
)
);
p_sys
=
p_filter
->
p_sys
=
malloc
(
sizeof
(
filter_sys_t
)
);
...
@@ -246,7 +248,7 @@ static int CreateFilter( vlc_object_t *p_this )
...
@@ -246,7 +248,7 @@ static int CreateFilter( vlc_object_t *p_this )
config_ChainParse
(
p_filter
,
CFG_PREFIX
,
ppsz_filter_options
,
config_ChainParse
(
p_filter
,
CFG_PREFIX
,
ppsz_filter_options
,
p_filter
->
p_cfg
);
p_filter
->
p_cfg
);
p
_sys
->
p
sz_urls
=
var_CreateGetString
(
p_filter
,
CFG_PREFIX
"urls"
);
psz_urls
=
var_CreateGetString
(
p_filter
,
CFG_PREFIX
"urls"
);
p_sys
->
i_title
=
var_CreateGetInteger
(
p_filter
,
CFG_PREFIX
"title"
);
p_sys
->
i_title
=
var_CreateGetInteger
(
p_filter
,
CFG_PREFIX
"title"
);
p_sys
->
i_cur_feed
=
0
;
p_sys
->
i_cur_feed
=
0
;
p_sys
->
i_cur_item
=
p_sys
->
i_title
==
scroll_title
?
-
1
:
0
;
p_sys
->
i_cur_item
=
p_sys
->
i_title
==
scroll_title
?
-
1
:
0
;
...
@@ -279,6 +281,10 @@ static int CreateFilter( vlc_object_t *p_this )
...
@@ -279,6 +281,10 @@ static int CreateFilter( vlc_object_t *p_this )
msg_Warn
(
p_filter
,
"rss-size wasn't specified. Feed images will thus be displayed without being resized"
);
msg_Warn
(
p_filter
,
"rss-size wasn't specified. Feed images will thus be displayed without being resized"
);
}
}
/* Parse the urls */
ParseUrls
(
p_filter
,
psz_urls
);
free
(
psz_urls
);
if
(
FetchRSS
(
p_filter
)
)
if
(
FetchRSS
(
p_filter
)
)
{
{
msg_Err
(
p_filter
,
"failed while fetching RSS ... too bad"
);
msg_Err
(
p_filter
,
"failed while fetching RSS ... too bad"
);
...
@@ -312,7 +318,6 @@ static int CreateFilter( vlc_object_t *p_this )
...
@@ -312,7 +318,6 @@ static int CreateFilter( vlc_object_t *p_this )
error:
error:
free
(
p_sys
->
psz_marquee
);
free
(
p_sys
->
psz_marquee
);
free
(
p_sys
->
psz_urls
);
free
(
p_sys
);
free
(
p_sys
);
return
i_ret
;
return
i_ret
;
}
}
...
@@ -326,7 +331,6 @@ static void DestroyFilter( vlc_object_t *p_this )
...
@@ -326,7 +331,6 @@ static void DestroyFilter( vlc_object_t *p_this )
text_style_Delete
(
p_sys
->
p_style
);
text_style_Delete
(
p_sys
->
p_style
);
free
(
p_sys
->
psz_marquee
);
free
(
p_sys
->
psz_marquee
);
free
(
p_sys
->
psz_urls
);
FreeRSS
(
p_filter
);
FreeRSS
(
p_filter
);
free
(
p_sys
);
free
(
p_sys
);
}
}
...
@@ -611,6 +615,61 @@ static char *removeWhiteChars( const char *psz_src )
...
@@ -611,6 +615,61 @@ static char *removeWhiteChars( const char *psz_src )
return
psz_clean2
;
return
psz_clean2
;
}
}
/****************************************************************************
* Parse url list, psz_urls must be non empty
***************************************************************************/
static
int
ParseUrls
(
filter_t
*
p_filter
,
char
*
psz_urls
)
{
filter_sys_t
*
p_sys
=
p_filter
->
p_sys
;
char
*
psz_urls2
=
psz_urls
;
p_sys
->
i_feeds
=
1
;
/* Count the number of feeds */
while
(
*
psz_urls
)
{
if
(
*
psz_urls
==
'|'
)
p_sys
->
i_feeds
++
;
psz_urls
++
;
}
/* Allocate the structure */
p_sys
->
p_feeds
=
malloc
(
p_sys
->
i_feeds
*
sizeof
(
rss_feed_t
)
);
if
(
!
p_sys
->
p_feeds
)
return
VLC_ENOMEM
;
/* Loop on all urls and fill in the struct */
psz_urls
=
psz_urls2
;
for
(
int
i
=
0
;
i
<
p_sys
->
i_feeds
;
i
++
)
{
rss_feed_t
*
p_feed
=
p_sys
->
p_feeds
+
i
;
char
*
psz_end
;
if
(
i
<
p_sys
->
i_feeds
-
1
)
{
psz_end
=
strchr
(
psz_urls
,
'|'
);
*
psz_end
=
'\0'
;
}
else
psz_end
=
psz_urls
;
p_feed
->
i_items
=
0
;
p_feed
->
p_items
=
NULL
;
p_feed
->
psz_title
=
NULL
;
p_feed
->
psz_link
=
NULL
;
p_feed
->
psz_description
=
NULL
;
p_feed
->
psz_image
=
NULL
;
p_feed
->
p_pic
=
NULL
;
p_feed
->
psz_url
=
strdup
(
psz_urls
);
psz_urls
=
psz_end
+
1
;
}
return
VLC_SUCCESS
;
}
/****************************************************************************
/****************************************************************************
* FetchRSS (or Atom) feeds
* FetchRSS (or Atom) feeds
***************************************************************************/
***************************************************************************/
...
@@ -624,24 +683,11 @@ static int FetchRSS( filter_t *p_filter)
...
@@ -624,24 +683,11 @@ static int FetchRSS( filter_t *p_filter)
char
*
psz_eltname
=
NULL
;
char
*
psz_eltname
=
NULL
;
char
*
psz_eltvalue
=
NULL
;
char
*
psz_eltvalue
=
NULL
;
char
*
psz_feed
=
NULL
;
char
*
psz_buffer
=
NULL
;
char
*
psz_buffer_2
=
NULL
;
int
i_feed
;
int
i_feed
;
int
i_item
;
int
i_item
;
bool
b_is_item
;
bool
b_is_item
;
bool
b_is_image
;
bool
b_is_image
;
int
i_int
;
FreeRSS
(
p_filter
);
p_sys
->
i_feeds
=
1
;
i_int
=
0
;
while
(
p_sys
->
psz_urls
[
i_int
]
!=
0
)
if
(
p_sys
->
psz_urls
[
i_int
++
]
==
'|'
)
p_sys
->
i_feeds
++
;
p_sys
->
p_feeds
=
(
struct
rss_feed_t
*
)
malloc
(
p_sys
->
i_feeds
*
sizeof
(
struct
rss_feed_t
)
);
p_xml
=
xml_Create
(
p_filter
);
p_xml
=
xml_Create
(
p_filter
);
if
(
!
p_xml
)
if
(
!
p_xml
)
...
@@ -650,32 +696,35 @@ static int FetchRSS( filter_t *p_filter)
...
@@ -650,32 +696,35 @@ static int FetchRSS( filter_t *p_filter)
return
1
;
return
1
;
}
}
psz_buffer
=
strdup
(
p_sys
->
psz_urls
);
psz_buffer_2
=
psz_buffer
;
/* keep track so we can free it */
for
(
i_feed
=
0
;
i_feed
<
p_sys
->
i_feeds
;
i_feed
++
)
for
(
i_feed
=
0
;
i_feed
<
p_sys
->
i_feeds
;
i_feed
++
)
{
{
struct
rss_feed_t
*
p_feed
=
p_sys
->
p_feeds
+
i_feed
;
struct
rss_feed_t
*
p_feed
=
p_sys
->
p_feeds
+
i_feed
;
if
(
psz_buffer
==
NULL
)
break
;
FREENULL
(
p_feed
->
psz_title
);
if
(
psz_buffer
[
0
]
==
0
)
psz_buffer
++
;
FREENULL
(
p_feed
->
psz_description
);
psz_feed
=
psz_buffer
;
FREENULL
(
p_feed
->
psz_link
);
psz_buffer
=
strchr
(
psz_buffer
,
'|'
);
FREENULL
(
p_feed
->
psz_image
);
if
(
psz_buffer
!=
NULL
)
psz_buffer
[
0
]
=
0
;
if
(
p_feed
->
p_pic
)
{
p_feed
->
psz_title
=
NULL
;
picture_Release
(
p_feed
->
p_pic
);
p_feed
->
psz_description
=
NULL
;
p_feed
->
psz_link
=
NULL
;
p_feed
->
psz_image
=
NULL
;
p_feed
->
p_pic
=
NULL
;
p_feed
->
p_pic
=
NULL
;
}
for
(
int
i
=
0
;
i
<
p_feed
->
i_items
;
i
++
)
{
struct
rss_item_t
*
p_item
=
p_feed
->
p_items
+
i
;
free
(
p_item
->
psz_title
);
free
(
p_item
->
psz_link
);
free
(
p_item
->
psz_description
);
}
p_feed
->
i_items
=
0
;
p_feed
->
i_items
=
0
;
p_feed
->
p_items
=
NULL
;
FREENULL
(
p_feed
->
p_items
)
;
msg_Dbg
(
p_filter
,
"opening %s RSS/Atom feed ..."
,
p
sz_feed
);
msg_Dbg
(
p_filter
,
"opening %s RSS/Atom feed ..."
,
p
_feed
->
psz_url
);
p_stream
=
stream_UrlNew
(
p_filter
,
p
sz_feed
);
p_stream
=
stream_UrlNew
(
p_filter
,
p
_feed
->
psz_url
);
if
(
!
p_stream
)
if
(
!
p_stream
)
{
{
msg_Err
(
p_filter
,
"Failed to open %s for reading"
,
p
sz_feed
);
msg_Err
(
p_filter
,
"Failed to open %s for reading"
,
p
_feed
->
psz_url
);
xml_Delete
(
p_xml
);
xml_Delete
(
p_xml
);
return
1
;
return
1
;
}
}
...
@@ -683,7 +732,7 @@ static int FetchRSS( filter_t *p_filter)
...
@@ -683,7 +732,7 @@ static int FetchRSS( filter_t *p_filter)
p_xml_reader
=
xml_ReaderCreate
(
p_xml
,
p_stream
);
p_xml_reader
=
xml_ReaderCreate
(
p_xml
,
p_stream
);
if
(
!
p_xml_reader
)
if
(
!
p_xml_reader
)
{
{
msg_Err
(
p_filter
,
"Failed to open %s for parsing"
,
p
sz_feed
);
msg_Err
(
p_filter
,
"Failed to open %s for parsing"
,
p
_feed
->
psz_url
);
xml_Delete
(
p_xml
);
xml_Delete
(
p_xml
);
return
1
;
return
1
;
}
}
...
@@ -911,9 +960,8 @@ static int FetchRSS( filter_t *p_filter)
...
@@ -911,9 +960,8 @@ static int FetchRSS( filter_t *p_filter)
if
(
p_xml_reader
&&
p_xml
)
xml_ReaderDelete
(
p_xml
,
p_xml_reader
);
if
(
p_xml_reader
&&
p_xml
)
xml_ReaderDelete
(
p_xml
,
p_xml_reader
);
if
(
p_stream
)
stream_Delete
(
p_stream
);
if
(
p_stream
)
stream_Delete
(
p_stream
);
msg_Dbg
(
p_filter
,
"done with %s RSS/Atom feed"
,
p
sz_feed
);
msg_Dbg
(
p_filter
,
"done with %s RSS/Atom feed"
,
p
_feed
->
psz_url
);
}
}
free
(
psz_buffer_2
);
if
(
p_xml
)
xml_Delete
(
p_xml
);
if
(
p_xml
)
xml_Delete
(
p_xml
);
return
0
;
return
0
;
...
@@ -949,6 +997,7 @@ static void FreeRSS( filter_t *p_filter)
...
@@ -949,6 +997,7 @@ static void FreeRSS( filter_t *p_filter)
free
(
p_feed
->
psz_image
);
free
(
p_feed
->
psz_image
);
if
(
p_feed
->
p_pic
!=
NULL
)
if
(
p_feed
->
p_pic
!=
NULL
)
picture_Release
(
p_feed
->
p_pic
);
picture_Release
(
p_feed
->
p_pic
);
free
(
p_feed
->
psz_url
);
}
}
free
(
p_sys
->
p_feeds
);
free
(
p_sys
->
p_feeds
);
p_sys
->
i_feeds
=
0
;
p_sys
->
i_feeds
=
0
;
...
...
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