Remove tizen profile code 12/302312/1 accepted/tizen/unified/20231206.151820
authorminje.ahn <minje.ahn@samsung.com>
Tue, 5 Dec 2023 08:15:00 +0000 (17:15 +0900)
committerminje.ahn <minje.ahn@samsung.com>
Tue, 5 Dec 2023 08:15:00 +0000 (17:15 +0900)
Change-Id: I5a9eac7f2cb9f854645c9bdf766a5b970a3f7c23
Signed-off-by: minje.ahn <minje.ahn@samsung.com>
lib/include/private.h [deleted file]
lib/media-util-noti.c
src/server/media-server-main.c

diff --git a/lib/include/private.h b/lib/include/private.h
deleted file mode 100755 (executable)
index 5bc01ac..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * Media Utility / Private Header
- *
- * Copyright (c) 2016 Samsung Electronics Co., Ltd. All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-#ifndef _MEDIA_SERVER_PRIVATE_H_
-#define _MEDIA_SERVER_PRIVATE_H_
-#include <stdlib.h>
-#include <system_info.h>
-
-typedef enum {
-       TIZEN_PROFILE_UNKNOWN = 0,
-       TIZEN_PROFILE_MOBILE = 0x1,
-       TIZEN_PROFILE_WEARABLE = 0x2,
-       TIZEN_PROFILE_TV = 0x4,
-       TIZEN_PROFILE_IVI = 0x8,
-       TIZEN_PROFILE_COMMON = 0x10,
-} tizen_profile_t;
-
-static tizen_profile_t profile = TIZEN_PROFILE_UNKNOWN;
-static char *profileName;
-static inline tizen_profile_t _get_tizen_profile()
-{
-       if (__builtin_expect(profile != TIZEN_PROFILE_UNKNOWN, 1))
-               return profile;
-
-       system_info_get_platform_string("http://tizen.org/feature/profile", &profileName);
-       switch (*profileName) {
-       case 'm':
-       case 'M':
-               profile = TIZEN_PROFILE_MOBILE;
-               break;
-       case 'w':
-       case 'W':
-               profile = TIZEN_PROFILE_WEARABLE;
-               break;
-       case 't':
-       case 'T':
-               profile = TIZEN_PROFILE_TV;
-               break;
-       case 'i':
-       case 'I':
-               profile = TIZEN_PROFILE_IVI;
-               break;
-       default: // common or unknown ==> ALL ARE COMMON.
-               profile = TIZEN_PROFILE_COMMON;
-       }
-       free(profileName);
-
-       return profile;
-}
-
-#endif /* _MEDIA_SERVER_PRIVATE_H_ */
index 486a8c8..e43d9d1 100755 (executable)
@@ -34,7 +34,6 @@
 #include "media-util-internal.h"
 #include "media-util-dbg.h"
 #include "media-util.h"
-#include "private.h"
 
 static GList *handle_list;
 static GMutex noti_mutex;
@@ -233,4 +232,3 @@ int media_db_update_unsubscribe(MediaNotiHandle handle)
 
        return MS_MEDIA_ERR_NONE;
 }
-
index 9dbe7fa..2394509 100644 (file)
@@ -39,8 +39,6 @@
 #include "media-server-dcm.h"
 #include "media-server-db-manage.h"
 
-#include "private.h"
-
 #define MS_VCONF_KEY_RESET_STATUS "db/media_server/reset_status"
 extern GMutex scanner_mutex;