summaryrefslogtreecommitdiffstats
path: root/services/audiopolicy/engineconfigurable/src/Element.h
diff options
context:
space:
mode:
authorEric Laurent <elaurent@google.com>2015-04-25 05:18:59 +0000
committerEric Laurent <elaurent@google.com>2015-04-25 05:18:59 +0000
commit6fc6a64fa3b0a9e4577eb763590f531c0a50a27b (patch)
tree2c51b5f8ffe7015ffdc3fdaf19bd36982546bf89 /services/audiopolicy/engineconfigurable/src/Element.h
parent65c3781db3443531deacecfbda5c7e7e82868a34 (diff)
downloadframeworks_av-6fc6a64fa3b0a9e4577eb763590f531c0a50a27b.zip
frameworks_av-6fc6a64fa3b0a9e4577eb763590f531c0a50a27b.tar.gz
frameworks_av-6fc6a64fa3b0a9e4577eb763590f531c0a50a27b.tar.bz2
Revert "Add a configurable version of the policy engine based on PFW"
This reverts commit 65c3781db3443531deacecfbda5c7e7e82868a34. Change-Id: Ib61cd70f97c4c4f4b503fb845643627d6896f4f9
Diffstat (limited to 'services/audiopolicy/engineconfigurable/src/Element.h')
-rwxr-xr-xservices/audiopolicy/engineconfigurable/src/Element.h99
1 files changed, 0 insertions, 99 deletions
diff --git a/services/audiopolicy/engineconfigurable/src/Element.h b/services/audiopolicy/engineconfigurable/src/Element.h
deleted file mode 100755
index 52e77e5..0000000
--- a/services/audiopolicy/engineconfigurable/src/Element.h
+++ /dev/null
@@ -1,99 +0,0 @@
-/*
- * Copyright (C) 2015 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#pragma once
-
-#include <stdint.h>
-#include <string>
-#include <utils/Errors.h>
-#include <system/audio.h>
-#include <utils/Log.h>
-
-namespace android
-{
-namespace audio_policy
-{
-
-template <typename Key>
-class Element
-{
-public:
- Element(const std::string &name)
- : mName(name)
- {}
- ~Element() {}
-
- /**
- * Returns identifier of this policy element
- *
- * @returns string representing the name of this policy element
- */
- const std::string &getName() const { return mName; }
-
- /**
- * Set the unique identifier for this policy element.
- *
- * @tparam Key type of the unique identifier.
- * @param[in] identifier to be set.
- *
- * @return NO_ERROR if the identifier is valid and set correctly, error code otherwise.
- */
- status_t setIdentifier(Key identifier)
- {
- mIdentifier = identifier;
- return NO_ERROR;
- }
-
- /**
- * @return the unique identifier of this policy element.
- */
- const Key &getIdentifier() const { return mIdentifier; }
-
- /**
- * A Policy element may implement getter/setter function for a given property.
- * Property may be routing_strategy, audio_stream_type_t, audio_usage_t, audio_source_t
- * or a string.
- *
- * @tparam Property for which this policy element has setter / getter.
- * @return the property kept track by this policy base element.
- */
- template <typename Property>
- Property get() const;
-
- /**
- * A Policy element may implement getter/setter function for a given property.
- * Property may be routing_strategy, audio_stream_type_t, audio_usage_t, audio_source_t
- * or a string.
- *
- * @tparam Property for which this policy element has setter / getter.
- *
- * @param[in] property value to be assigned for this policy base element.
- *
- * @return the property kept track by this policy base element.
- */
- template <typename Property>
- status_t set(Property property);
-
-private:
- /* Copy facilities are put private to disable copy. */
- Element(const Element &object);
- Element &operator=(const Element &object);
-
- std::string mName; /**< Unique literal Identifier of a policy base element*/
- Key mIdentifier; /**< Unique numerical Identifier of a policy base element*/
-};
-} // namespace audio_policy
-} // namespace android