RESOLVED FIXED 58016
[EFL] Memory cache API
https://bugs.webkit.org/show_bug.cgi?id=58016
Summary [EFL] Memory cache API
Grzegorz Czajkowski
Reported 2011-04-07 00:28:32 PDT
Functions are added to public API. They allow: 1) to disable/enable memory cache, 2) to check status of memory cache.
Attachments
patch (2.72 KB, patch)
2011-04-07 00:33 PDT, Grzegorz Czajkowski
no flags
patch (3.33 KB, patch)
2011-04-07 03:29 PDT, Grzegorz Czajkowski
no flags
reverse logic (3.32 KB, patch)
2011-04-12 02:40 PDT, Grzegorz Czajkowski
tonikitoo: review+
updated patch regarding to Lucas' suggestions (deleted)
2011-04-13 23:48 PDT, Grzegorz Czajkowski
no flags
updated changelog (3.01 KB, patch)
2011-04-14 00:20 PDT, Grzegorz Czajkowski
no flags
Grzegorz Czajkowski
Comment 1 2011-04-07 00:33:11 PDT
Grzegorz Czajkowski
Comment 2 2011-04-07 03:29:42 PDT
Created attachment 88604 [details] patch ewk_setting_cache_capacity_set is added
Gyuyoung Kim
Comment 3 2011-04-07 23:16:16 PDT
Comment on attachment 88604 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=88604&action=review > Source/WebKit/efl/ewk/ewk_settings.cpp:352 > +Eina_Bool ewk_settings_cache_disable_set(Eina_Bool set) I am not sure, but, it seems to me it is clear to use ewk_settings_cache_enable_set() instead of ewk_settings_cache_disable_set()
Grzegorz Czajkowski
Comment 4 2011-04-12 02:40:21 PDT
Created attachment 89181 [details] reverse logic
Antonio Gomes
Comment 5 2011-04-12 08:38:15 PDT
Comment on attachment 89181 [details] reverse logic Please set cq+ when it passes any API review you guys have.
Lucas De Marchi
Comment 6 2011-04-12 12:43:06 PDT
Comment on attachment 89181 [details] reverse logic View in context: https://bugs.webkit.org/attachment.cgi?id=89181&action=review > Source/WebKit/efl/ewk/ewk_settings.cpp:349 > + * @param @c EINA_TRUE to enable cache of WebCore , @c EINA_FALSE to disable @param set... > Source/WebKit/efl/ewk/ewk_settings.cpp:355 > + EINA_SAFETY_ON_NULL_RETURN_VAL(cache, EINA_FALSE); don't bother checking by NULL here. If it was NULL, it would not get to this point. > Source/WebKit/efl/ewk/ewk_settings.cpp:375 > + WebCore::MemoryCache* cache = WebCore::memoryCache(); > + EINA_SAFETY_ON_NULL_RETURN_VAL(cache, EINA_FALSE); same here
Grzegorz Czajkowski
Comment 7 2011-04-12 23:56:13 PDT
Comment on attachment 89181 [details] reverse logic View in context: https://bugs.webkit.org/attachment.cgi?id=89181&action=review >> Source/WebKit/efl/ewk/ewk_settings.cpp:355 >> + EINA_SAFETY_ON_NULL_RETURN_VAL(cache, EINA_FALSE); > > don't bother checking by NULL here. If it was NULL, it would not get to this point. Could explain why we don't need to check NULL here, please? Method memoryCache() is a singleton. It returns a pointer to the instance of WebCore's cache. We can't trust what a pointer this method will return.
Lucas De Marchi
Comment 8 2011-04-13 05:52:42 PDT
(In reply to comment #7) > (From update of attachment 89181 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=89181&action=review > > >> Source/WebKit/efl/ewk/ewk_settings.cpp:355 > >> + EINA_SAFETY_ON_NULL_RETURN_VAL(cache, EINA_FALSE); > > > > don't bother checking by NULL here. If it was NULL, it would not get to this point. > > Could explain why we don't need to check NULL here, please? > Method memoryCache() is a singleton. It returns a pointer to the instance of WebCore's cache. > We can't trust what a pointer this method will return. I'm saying that the only reason this pointer could be NULL is if there was an out-of-memory condition. In that scenario, WebCore would failed to load before this function could ever be called. But I'm really nitpicking here and this is not so important.
Grzegorz Czajkowski
Comment 9 2011-04-13 06:24:33 PDT
(In reply to comment #8) > (In reply to comment #7) > > (From update of attachment 89181 [details] [details]) > > View in context: https://bugs.webkit.org/attachment.cgi?id=89181&action=review > > > > >> Source/WebKit/efl/ewk/ewk_settings.cpp:355 > > >> + EINA_SAFETY_ON_NULL_RETURN_VAL(cache, EINA_FALSE); > > > > > > don't bother checking by NULL here. If it was NULL, it would not get to this point. > > > > Could explain why we don't need to check NULL here, please? > > Method memoryCache() is a singleton. It returns a pointer to the instance of WebCore's cache. > > We can't trust what a pointer this method will return. > > I'm saying that the only reason this pointer could be NULL is if there was an out-of-memory condition. In that scenario, WebCore would failed to load before this function could ever be called. > Yes, I agree with you. But there is possibility to get the cache for instance in ewk function and to set the pointer on NULL, right? I know it's stupid but we can't exclude that case. > But I'm really nitpicking here and this is not so important. It's ok :)
Lucas De Marchi
Comment 10 2011-04-13 06:58:08 PDT
(In reply to comment #9) > > I'm saying that the only reason this pointer could be NULL is if there was an out-of-memory condition. In that scenario, WebCore would failed to load before this function could ever be called. > > > Yes, I agree with you. But there is possibility to get the cache for instance in ewk function and to set the pointer on NULL, right? I know it's stupid but we can't exclude that case. Wooww... how would that function do that? We are returning a pointer not a pointer to pointer... Even if the stupid ewk function called delete on that pointer, subsequent calls to MemoryCache::memoryCache() would not return NULL.
Grzegorz Czajkowski
Comment 11 2011-04-13 07:16:43 PDT
(In reply to comment #10) > (In reply to comment #9) > > > I'm saying that the only reason this pointer could be NULL is if there was an out-of-memory condition. In that scenario, WebCore would failed to load before this function could ever be called. > > > > > Yes, I agree with you. But there is possibility to get the cache for instance in ewk function and to set the pointer on NULL, right? I know it's stupid but we can't exclude that case. > > Wooww... how would that function do that? We are returning a pointer not a pointer to pointer... Even if the stupid ewk function called delete on that pointer, subsequent calls to MemoryCache::memoryCache() would not return NULL. Ok, I won't say anything about pointers from now ;) I will remove checking NULL.
Grzegorz Czajkowski
Comment 12 2011-04-13 23:48:51 PDT
Created attachment 89539 [details] updated patch regarding to Lucas' suggestions Removed checking NULL in: - ewk_settings_cache_enable_get - ewk_settings_cache_enable_set - ewk_settings_cache_capacity_set Removed returned Eina_Bool value because it's useless in: - ewk_settings_cache_enable_set - ewk_settings_cache_capacity_set Added "set" to doxygen documentation
Gyuyoung Kim
Comment 13 2011-04-13 23:56:55 PDT
I think Antonio already review this patch. If you add Antonio Gomes to reviewer field, demarchi can decide if cq is + or -. Anyway, looks good to me.
Grzegorz Czajkowski
Comment 14 2011-04-14 00:20:39 PDT
Created attachment 89543 [details] updated changelog Adder Antonio Gomes to a reviewer list in ChangeLog
Gyuyoung Kim
Comment 15 2011-04-14 00:22:49 PDT
(In reply to comment #13) > I think Antonio already review this patch. If you add Antonio Gomes to reviewer field, demarchi can decide if cq is + or -. Anyway, looks good to me. However, your patch is changed considerably. You should request review again.(In reply to comment #13) > I think Antonio already review this patch. If you add Antonio Gomes to reviewer field, demarchi can decide if cq is + or -. Anyway, looks good to me. However, if your patch is changed considerably, you MUST request review again. :-)
WebKit Commit Bot
Comment 16 2011-04-14 19:09:30 PDT
The commit-queue encountered the following flaky tests while processing attachment 89543 [details]: http/tests/xmlhttprequest/basic-auth.html bug 51613 (author: ap@webkit.org) The commit-queue is continuing to process your patch.
WebKit Commit Bot
Comment 17 2011-04-14 19:12:20 PDT
Comment on attachment 89543 [details] updated changelog Clearing flags on attachment: 89543 Committed r83931: <http://trac.webkit.org/changeset/83931>
WebKit Commit Bot
Comment 18 2011-04-14 19:12:26 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.