1 // 2 // Copyright (C) 2011 The Android Open Source Project 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 #ifndef SHILL_EPHEMERAL_PROFILE_H_ 18 #define SHILL_EPHEMERAL_PROFILE_H_ 19 20 #include <string> 21 #include <vector> 22 23 #include "shill/event_dispatcher.h" 24 #include "shill/profile.h" 25 #include "shill/property_store.h" 26 #include "shill/refptr_types.h" 27 28 namespace shill { 29 30 class ControlInterface; 31 class Manager; 32 class StoreInterface; 33 34 // An in-memory profile that is not persisted to disk, but allows the 35 // promotion of entries contained herein to the currently active profile. 36 class EphemeralProfile : public Profile { 37 public: 38 EphemeralProfile(ControlInterface* control_interface, 39 Metrics* metrics, 40 Manager* manager); 41 ~EphemeralProfile() override; 42 43 std::string GetFriendlyName() override; 44 bool AdoptService(const ServiceRefPtr& service) override; 45 bool AbandonService(const ServiceRefPtr& service) override; 46 47 // Should not be called. 48 bool Save() override; 49 50 private: 51 static const char kFriendlyName[]; 52 53 DISALLOW_COPY_AND_ASSIGN(EphemeralProfile); 54 }; 55 56 } // namespace shill 57 58 #endif // SHILL_EPHEMERAL_PROFILE_H_ 59