upload tizen1.0 source
[framework/web/wrt-plugins-common.git] / src / modules / tizen / Filesystem / RemoveCommand.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 "RemoveCommand.h"
21 #include <sstream>
22
23 namespace {
24 const char* COMMAND_NAME = "/bin/rm";
25 const char* COMMAND_SWITCH_RECURSIVE = "-r";
26 const char* COMMAND_SWITCH_FORCE = "-f";
27 }
28
29 namespace WrtDeviceApis {
30 namespace Filesystem {
31
32 using namespace Api;
33
34 RemoveCommand::RemoveCommand(const IPathPtr& path) :
35     m_path(path),
36     m_recursive(false),
37     m_force(false)
38 {
39 }
40
41 void RemoveCommand::setRecursive(bool recursive)
42 {
43     m_recursive = recursive;
44 }
45
46 void RemoveCommand::setForce(bool force)
47 {
48     m_force = force;
49 }
50
51 std::string RemoveCommand::prepare()
52 {
53     std::ostringstream oss;
54     oss << COMMAND_NAME;
55
56     if (m_recursive) {
57         oss << " " << COMMAND_SWITCH_RECURSIVE;
58     }
59
60     if (m_force) {
61         oss << " " << COMMAND_SWITCH_FORCE;
62     }
63
64     oss << " \"" << m_path->getFullPath().c_str() << "\"";
65
66     return oss.str();
67 }
68
69 } // Filesystem
70 } // WrtDeviceApis