update for beta universally
[profile/ivi/wrt-plugins-tizen.git] / src / platform / 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
18 #include "MoveCommand.h"
19 #include <sstream>
20
21 namespace {
22 const char* COMMAND_NAME = "/bin/mv";
23 const char* COMMAND_SWITCH_FORCE = "-f";
24 }
25
26 namespace TizenApis {
27 namespace Platform {
28 namespace Filesystem {
29 MoveCommand::MoveCommand(const Api::Filesystem::IPathPtr& src,
30         const Api::Filesystem::IPathPtr& dest) :
31     m_src(src),
32     m_dest(dest),
33     m_force(false)
34 {
35 }
36
37 void MoveCommand::setForce(bool force)
38 {
39     m_force = force;
40 }
41
42 std::string MoveCommand::prepare()
43 {
44     std::ostringstream oss;
45     oss << COMMAND_NAME;
46
47     if (m_force) {
48         oss << " " << COMMAND_SWITCH_FORCE;
49     }
50
51     oss << " \"" << m_src->getFullPath().c_str() << "\"";
52     oss << " \"" << m_dest->getFullPath().c_str() << "\"";
53
54     return oss.str();
55 }
56 }
57 }
58 }