summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/application_manager/src/commands/mobile/put_file_request.cc
blob: 12d7c386ac6c09fe523d42f0082da3cffcff491f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/*

 Copyright (c) 2013, Ford Motor Company
 All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:

 Redistributions of source code must retain the above copyright notice, this
 list of conditions and the following disclaimer.

 Redistributions in binary form must reproduce the above copyright notice,
 this list of conditions and the following
 disclaimer in the documentation and/or other materials provided with the
 distribution.

 Neither the name of the Ford Motor Company nor the names of its contributors
 may be used to endorse or promote products derived from this software
 without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGE.
 */

#include "application_manager/commands/mobile/put_file_request.h"
#include "application_manager/application_manager_impl.h"
#include "application_manager/application_impl.h"
#include "config_profile/profile.h"
#include "utils/file_system.h"

namespace application_manager {

namespace commands {

PutFileRequest::PutFileRequest(const MessageSharedPtr& message)
    : CommandRequestImpl(message) {
}

PutFileRequest::~PutFileRequest() {
}

void PutFileRequest::Run() {
  LOG4CXX_INFO(logger_, "PutFileRequest::Run");

  ApplicationSharedPtr application = ApplicationManagerImpl::instance()->application(
      connection_key());

  if (!application) {
    LOG4CXX_ERROR(logger_, "Application is not registered");
    SendResponse(false, mobile_apis::Result::APPLICATION_NOT_REGISTERED);
    return;
  }

  if (mobile_api::HMILevel::HMI_NONE == application->hmi_level() &&
      profile::Profile::instance()->put_file_in_none() <=
      application->put_file_in_none_count()) {
      // If application is in the HMI_NONE level the quantity of allowed
      // PutFile request is limited by the configuration profile
      LOG4CXX_ERROR(logger_,
                    "Too many requests from the app with HMILevel HMI_NONE ");
      SendResponse(false, mobile_apis::Result::REJECTED);
      return;
  }

  if (!(*message_)[strings::params].keyExists(strings::binary_data)) {
    LOG4CXX_ERROR(logger_, "Binary data empty");
    SendResponse(false, mobile_apis::Result::INVALID_DATA);
    return;
  }

  if (!(*message_)[strings::msg_params].keyExists(strings::sync_file_name)) {
    LOG4CXX_ERROR(logger_, "No file name");
    SendResponse(false, mobile_apis::Result::INVALID_DATA);
    return;
  }

  if (!(*message_)[strings::msg_params].keyExists(strings::file_type)) {
    LOG4CXX_ERROR(logger_, "No file type");
    SendResponse(false, mobile_apis::Result::INVALID_DATA);
    return;
  }
  const std::string& sync_file_name =
      (*message_)[strings::msg_params][strings::sync_file_name].asString();
  const mobile_apis::FileType::eType& file_type =
      static_cast<mobile_apis::FileType::eType>(
      (*message_)[strings::msg_params][strings::file_type].asInt());
  const std::vector<uint8_t> binary_data =
      (*message_)[strings::params][strings::binary_data].asBinary();

  uint32_t offset = 0;
  bool is_persistent_file = false;
  bool is_system_file = false;
  uint32_t length = binary_data.size();
  bool is_download_compleate = true;
  bool offset_exist = (*message_)[strings::msg_params].keyExists(strings::offset);

  if (offset_exist) {
    offset = (*message_)[strings::msg_params][strings::offset].asInt();
  }
  if ((*message_)[strings::msg_params].keyExists(strings::length)) {
      length =
            (*message_)[strings::msg_params][strings::length].asInt();
  }
  if ((*message_)[strings::msg_params].
      keyExists(strings::persistent_file)) {
    is_persistent_file =
        (*message_)[strings::msg_params][strings::persistent_file].asBool();
  }
  if ((*message_)[strings::msg_params].
      keyExists(strings::system_file)) {
    is_system_file =
        (*message_)[strings::msg_params][strings::system_file].asBool();
  }

  if (is_system_file & (file_type != mobile_apis::FileType::BINARY)) {
    LOG4CXX_INFO(logger_, "File is System but not binary");
    SendResponse(false, mobile_apis::Result::INVALID_DATA);
  }
  std::string relative_file_path =
      file_system::CreateDirectory(application->name());
  relative_file_path += "/";
  relative_file_path += sync_file_name;

  mobile_apis::Result::eType save_result =
      ApplicationManagerImpl::instance()->SaveBinary(
          application->name(),
          binary_data,
          relative_file_path,
          offset);

  switch (save_result) {
    case mobile_apis::Result::SUCCESS: {
      AppFile file(sync_file_name, is_persistent_file, is_download_compleate, file_type);
      if (offset == 0) {
        LOG4CXX_INFO(logger_, "New file downloading");
        if (!application->AddFile(file)) {
          LOG4CXX_INFO(logger_, "Couldn't add file to application (File already Exist in application and was rewrited on fs) ");
          // It can be first part of new big file, so we need tu update information about it's downloading status and percictency
          if (!application->UpdateFile(file)) {
            LOG4CXX_INFO(logger_, "Couldn't update file");
            // If it is impossible to update file, application doesn't know about existing this file
            SendResponse(false, mobile_apis::Result::INVALID_DATA);
            return;
          }
        } else {
          /* if file added - increment it's count ( may be application->AddFile have to incapsulate it? )
           * Any way now this method evals not only in "none"*/
          application->increment_put_file_in_none_count();
        }
      }
//      For future implementation ( when length will contains file size)
//      if (offset + binary_data.size() == length) {
//        LOG4CXX_INFO(logger_, "File is Fully downloaded");
//        if (!application->UpdateFile(file)) {
//          // If it is impossible to update file, application doesn't know about existing this file
//          SendResponse(false, mobile_apis::Result::INVALID_DATA);
//          return;
//        }
//      } else {
//        //TODO: Maybe need to save in AppFile information about downloading progress
//      }
      SendResponse(true, save_result);
      break;
    }
    default:
      if (mobile_apis::Result::OUT_OF_MEMORY == save_result) {
        if (file_system::FileExists(relative_file_path)) {
          DCHECK(file_system::DeleteFile(relative_file_path));
        }
      }
      LOG4CXX_INFO(logger_, "Save in unsuccesfull result = " << save_result);
      SendResponse(false, save_result);
      break;
  }
}

}  // namespace commands

}  // namespace application_manager