1 // Copyright 2015 The Android Open Source Project 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 #ifndef WEBSERVER_LIBWEBSERV_REQUEST_IMPL_H_ 16 #define WEBSERVER_LIBWEBSERV_REQUEST_IMPL_H_ 17 18 #include <string> 19 20 #include <base/files/file.h> 21 #include <base/macros.h> 22 #include <brillo/streams/stream.h> 23 #include <libwebserv/request.h> 24 25 namespace libwebserv { 26 27 class DBusProtocolHandler; 28 29 // Implementation of the Request interface. 30 class RequestImpl final : public Request { 31 public: 32 // Overrides from Request. 33 brillo::StreamPtr GetDataStream() override; 34 35 private: 36 friend class DBusServer; 37 38 LIBWEBSERV_PRIVATE RequestImpl(DBusProtocolHandler* handler, 39 const std::string& url, 40 const std::string& method); 41 DBusProtocolHandler* handler_{nullptr}; 42 base::File raw_data_fd_; 43 bool last_posted_data_was_file_{false}; 44 45 DISALLOW_COPY_AND_ASSIGN(RequestImpl); 46 }; 47 48 } // namespace libwebserv 49 50 #endif // WEBSERVER_LIBWEBSERV_REQUEST_IMPL_H_ 51