LayerManagerCommands: log screen/layer/surface IDs in decimal and hex
[profile/ivi/layer-management.git] / LayerManagerCommands / src / GetOptimizationModeCommand.cpp
1 /***************************************************************************
2 *
3 * Copyright 2010,2011 BMW Car IT GmbH
4 * Copyright (c) 2012, NVIDIA CORPORATION.  All rights reserved.
5 *
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 *        http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 *
19 ****************************************************************************/
20 #include "GetOptimizationModeCommand.h"
21 #include "ICommandExecutor.h"
22 #include "Scene.h"
23 #include "Log.h"
24
25
26 ExecutionResult GetOptimizationModeCommand::execute(ICommandExecutor* executor)
27 {
28     RendererList& m_rendererList = *(executor->getRendererList());
29     RendererListConstIterator iter = m_rendererList.begin();
30     RendererListConstIterator iterEnd = m_rendererList.end();
31
32     for (; iter != iterEnd; ++iter)
33     {
34         IRenderer* renderer = *iter;
35
36         if (renderer)
37         {
38             return renderer->getOptimizationMode(m_id, m_pReturnMode) ? ExecutionSuccess : ExecutionFailed;
39         }
40     }
41
42     return ExecutionFailed;
43 }
44
45 const std::string GetOptimizationModeCommand::getString()
46 {
47     std::stringstream description;
48     description << "GetOptimizationModeCommand("
49                 << "id=" << (int)m_id << "(0x" << std::hex << (int)m_id << ")" << std::dec
50                 << ", pReturnMode=" << (int)(*m_pReturnMode)
51                 << ")";
52     return description.str();
53 }