RAII applied. Memory leak fixed.
[framework/osp/vision.git] / src / FUixVisionQrCodeGenerator.cpp
1 //
2 // Open Service Platform
3 // Copyright (c) 2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 #include <FUixVisionQrCodeGenerator.h>
19 #include "FUixVision_QrCodeGeneratorImpl.h"
20 #include <FText.h>
21 #include <FBaseSysLog.h>
22
23 namespace Tizen { namespace Uix { namespace Vision
24 {
25
26 QrCodeGenerator::QrCodeGenerator(void)
27     : __pQrCodeGeneratorImpl(0)
28 {
29 }
30
31 QrCodeGenerator::~QrCodeGenerator(void)
32 {
33     if (__pQrCodeGeneratorImpl != null)
34     {
35         delete __pQrCodeGeneratorImpl;
36         __pQrCodeGeneratorImpl = null;
37     }
38 }
39
40 result
41 QrCodeGenerator::Construct(void)
42 {
43     SysAssertf(__pQrCodeGeneratorImpl == null, "Already constructed! ",
44             "Calling Construct() twice or more on a same instance is not allowed for this class.");
45
46     std::unique_ptr<_QrCodeGeneratorImpl> pQrCodeGeneratorImpl(new (std::nothrow) _QrCodeGeneratorImpl());
47     SysTryReturn(NID_UIX, pQrCodeGeneratorImpl != null, E_OUT_OF_MEMORY, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
48     __pQrCodeGeneratorImpl = pQrCodeGeneratorImpl.release();
49
50     return E_SUCCESS;
51 }
52
53 Tizen::Base::ByteBuffer*
54 QrCodeGenerator::EncodeToBufferN(const Tizen::Base::String& message, QrCodeMode mode, QrCodeErrorCorrectionLevel error_level, bool compatibility, int& width, int& height)
55 {
56     SysAssertf(__pQrCodeGeneratorImpl != null, "Not yet constructed! Consruct() should be called before use.");
57
58     SysTryReturnResult(NID_UIX, !message.IsEmpty(), null,
59             "message must not be empty. [E_INVALID_ARG]");
60
61     Tizen::Text::Utf8Encoding utf8;
62     __pQrCodeGeneratorImpl->Encode((char*) utf8.GetBytesN(message)->GetPointer(), mode, error_level, compatibility);
63     __pQrCodeGeneratorImpl->GetSize(width, height);
64
65     Tizen::Base::ByteBuffer* buffer = new Tizen::Base::ByteBuffer;
66     buffer->Construct(width * height);
67
68     if (__pQrCodeGeneratorImpl->SaveToBuffer((unsigned char*) buffer->GetPointer()))
69     {
70         return buffer;
71     }
72     else
73     {
74         delete buffer;
75         return null;
76     }
77
78 }
79
80 result
81 QrCodeGenerator::EncodeToFile(const Tizen::Base::String& message, QrCodeMode mode, QrCodeErrorCorrectionLevel errorCorrectionLevel, bool compatibility, const Tizen::Base::String& imageFilePath, Tizen::Media::ImageFormat imageFormat, int& width, int& height)
82 {
83     SysAssertf(__pQrCodeGeneratorImpl != null, "Not yet constructed! Consruct() should be called before use.");
84
85      SysTryReturnResult(NID_UIX, !message.IsEmpty(), E_INVALID_ARG,
86              "message must not be empty. [E_INVALID_ARG]");
87
88      SysTryReturnResult(NID_UIX, !imageFilePath.IsEmpty(), E_INVALID_ARG,
89              "image path must not be empty. [E_INVALID_ARG]");
90
91      Tizen::Text::Utf8Encoding utf8;
92      if (!__pQrCodeGeneratorImpl->Encode((char*) utf8.GetBytesN(message)->GetPointer(), mode, errorCorrectionLevel, compatibility))
93      {
94          return E_FAILURE;
95      }
96
97      return __pQrCodeGeneratorImpl->SaveToFile(imageFilePath, imageFormat) ? E_SUCCESS : E_FAILURE;
98 }
99
100 Tizen::Base::Collection::IListT<Tizen::Media::ImageFormat>*
101 QrCodeGenerator::GetSupportedImageFileFormatsListN(void)
102 {
103     Tizen::Base::Collection::ArrayListT<Tizen::Media::ImageFormat>* formatList = new Tizen::Base::Collection::ArrayListT<Tizen::Media::ImageFormat>;
104     formatList->Add(Tizen::Media::IMG_FORMAT_BMP);
105     formatList->Add(Tizen::Media::IMG_FORMAT_JPG);
106     formatList->Add(Tizen::Media::IMG_FORMAT_PNG);
107     return formatList;
108 }
109
110 } } } //Tizen::Uix::Vision