Fix sign-compare
[platform/core/multimedia/libmedia-service.git] / plugin / media-ebook-plugin.cpp
1 /*
2  * libmedia-service
3  *
4  * Copyright (c) 2021 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #include "media-ebook-plugin-interface.h"
21 #include "media-ebook-plugin-epub.h"
22 #include "media-ebook-plugin-pdf.h"
23 #include "media-ebook-plugin-dbinserter.h"
24 #include "media-ebook-plugin-regmatch.h"
25
26 #include <memory>
27
28 #ifdef LOG_TAG
29 #undef LOG_TAG
30 #endif
31
32 #define LOG_TAG "MEDIA_SERVICE"
33
34 using namespace std;
35
36 extern "C" bool media_svc_pdf_is_keyword_included(const char *path, const char *keyword)
37 {
38         return unique_ptr<IFindable>{ make_unique<EBook::Pdf>(path, make_unique<RegMatch>(keyword)) }->find();
39 }
40
41 extern "C" bool media_svc_epub_is_keyword_included(const char *path, const char *keyword)
42 {
43         return unique_ptr<IFindable>{ make_unique<EBook::Epub>(path, make_unique<RegMatch>(keyword)) }->find();
44 }
45
46 extern "C" void media_svc_pdf_insert_to_db(void *handle, const char *path)
47 {
48         unique_ptr<IInsertable>{ make_unique<EBook::Pdf>(path, make_unique<DbInserter>(path, handle)) }->insert();
49 }
50
51 extern "C" void media_svc_epub_insert_to_db(void *handle, const char *path)
52 {
53         unique_ptr<IInsertable>{ make_unique<EBook::Epub>(path, make_unique<DbInserter>(path, handle)) }->insert();
54 }