upload tizen1.0 source
[framework/web/wrt-plugins-common.git] / src / modules / tizen / Filesystem / MoveCommand.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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  * @author          Zbigniew Kostrzewa (z.kostrzewa@samsung.com)
18  */
19
20 #include "MoveCommand.h"
21 #include <sstream>
22
23 namespace {
24 const char* COMMAND_NAME = "/bin/mv";
25 const char* COMMAND_SWITCH_FORCE = "-f";
26 }
27
28 namespace WrtDeviceApis {
29 namespace Filesystem {
30
31 using namespace Api;
32
33 MoveCommand::MoveCommand(const IPathPtr& src,
34                          const IPathPtr& dest) :
35     m_src(src),
36     m_dest(dest),
37     m_force(false)
38 {
39 }
40
41 void MoveCommand::setForce(bool force)
42 {
43     m_force = force;
44 }
45
46 std::string MoveCommand::prepare()
47 {
48     std::ostringstream oss;
49     oss << COMMAND_NAME;
50
51     if (m_force) {
52         oss << " " << COMMAND_SWITCH_FORCE;
53     }
54
55     oss << " \"" << m_src->getFullPath().c_str() << "\"";
56     oss << " \"" << m_dest->getFullPath().c_str() << "\"";
57
58     return oss.str();
59 }
60
61 }
62 }