Merge "Trace use scope macro instead of begin-end" into devel/master
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / application-devel.cpp
1 /*
2  * Copyright (c) 2022 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 // INTERNAL INCLUDES
19 #include <dali/devel-api/adaptor-framework/application-devel.h>
20 #include <dali/integration-api/adaptor-framework/scene-holder.h>
21 #include <dali/internal/adaptor/common/adaptor-impl.h>
22 #include <dali/internal/adaptor/common/application-impl.h>
23 #include <dali/internal/network/common/network-service-impl.h>
24
25 namespace Dali
26 {
27 namespace DevelApplication
28 {
29 Application New(int* argc, char** argv[], const std::string& stylesheet, Application::WINDOW_MODE windowMode, PositionSize positionSize, WindowType type)
30 {
31   Internal::Adaptor::ApplicationPtr internal = Internal::Adaptor::Application::GetPreInitializedApplication();
32   if(internal)
33   {
34     // Set Defaut Window type
35     internal->SetDefaultWindowType(type);
36
37     // pre-initialized application
38     internal->SetCommandLineOptions(argc, argv);
39     if(argc && (*argc > 0))
40     {
41       internal->GetWindow().SetClass((*argv)[0], "");
42     }
43     internal->SetStyleSheet(stylesheet);
44
45     internal->GetWindow().SetTransparency((windowMode == Application::OPAQUE ? false : true));
46
47     //Store only the value before adaptor is created
48     internal->StoreWindowPositionSize(positionSize);
49   }
50   else
51   {
52     internal = Internal::Adaptor::Application::New(argc, argv, stylesheet, windowMode, positionSize, Internal::Adaptor::Framework::NORMAL, type, false);
53   }
54   return Application(internal.Get());
55 }
56
57 bool AddIdleWithReturnValue(Application application, CallbackBase* callback)
58 {
59   return Internal::Adaptor::GetImplementation(application).AddIdle(callback, true);
60 }
61
62 std::string GetDataPath()
63 {
64   return Internal::Adaptor::Application::GetDataPath();
65 }
66
67 Application DownCast(Dali::RefObject* refObject)
68 {
69   return Application(dynamic_cast<Dali::Internal::Adaptor::Application*>(refObject));
70 }
71
72 CustomCommandReceivedSignalType& CustomCommandReceivedSignal(Application application)
73 {
74   DALI_ASSERT_ALWAYS(Adaptor::IsAvailable() && "Adaptor is not available")
75
76   Internal::Adaptor::NetworkServicePtr networkService = Internal::Adaptor::NetworkService::Get();
77
78   DALI_ASSERT_ALWAYS(networkService && "Network Service Unavailable");
79
80   return networkService->CustomCommandReceivedSignal();
81 }
82
83 int32_t GetRenderThreadId(Application application)
84 {
85   return Internal::Adaptor::GetImplementation(application).GetRenderThreadId();
86 }
87
88 } // namespace DevelApplication
89
90 } // namespace Dali
91
92 extern "C" void ApplicationPreInitialize(int* argc, char** argv[])
93 {
94   Dali::Internal::Adaptor::Application::PreInitialize(argc, argv);
95 }