Fix svace issue - uninitialized class member
[platform/core/uifw/dali-adaptor.git] / platform-abstractions / tizen / resource-loader / network / http-utils.cpp
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include "http-utils.h"
20
21 // EXTERNAL INCLUDES
22 #include <cstring>
23
24 namespace Dali
25 {
26
27 namespace TizenPlatform
28 {
29
30 namespace
31 {
32 const unsigned int MIN_HTTP_URL_LENGTH = 12; // assume we have a least http://xx/yy
33 const char HTTP_URL[] = "http://";
34 const char HTTPS_URL[] = "https://";
35 }
36
37 bool Network::IsHttpUrl( const std::string& path )
38 {
39  if( path.size() <= MIN_HTTP_URL_LENGTH )
40  {
41    return false;
42  }
43
44  if( ( strncasecmp( path.c_str(), HTTP_URL,  sizeof(HTTP_URL)  -1 ) == 0 )  ||
45      ( strncasecmp( path.c_str(), HTTPS_URL, sizeof(HTTPS_URL) -1 ) == 0 ) )
46  {
47    return true;
48  }
49
50  return false;
51 }
52
53 } // TizenPlatform
54
55 } // Dali