Files
Li, Xun d10cabebb5 Linux 2.5 Open Source Gold Release
Added new APIs in sgx_uae_service.h and sgx_ukey_exchange.h to support ECDSA quote based remote attestation.
  The set of legacy APIs supports EPID only and the set of new APIs supports ECDSA quotes.
Enhanced Edger8r with structure deep-copy feature.
Fixed bugs.

Signed-off-by: Li, Xun <xun.li@intel.com>
2019-04-02 13:26:58 +08:00

343 lines
9.7 KiB
C++

/*=============================================================================
Library: CppMicroServices
Copyright (c) The CppMicroServices developers. See the COPYRIGHT
file at the top-level directory of this distribution and at
https://github.com/CppMicroServices/CppMicroServices/COPYRIGHT .
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.
=============================================================================*/
#ifndef CPPMICROSERVICES_BUNDLERESOURCE_H
#define CPPMICROSERVICES_BUNDLERESOURCE_H
#include "cppmicroservices/FrameworkExport.h"
#include <cstdint>
#include <memory>
#include <ostream>
#include <vector>
namespace cppmicroservices {
class BundleResourcePrivate;
struct BundleArchive;
/**
\defgroup gr_bundleresource BundleResource
\brief Groups BundleResource class related symbols.
*/
/**
* \ingroup MicroServices
* \ingroup gr_bundleresource
*
* Represents a resource (text file, image, etc.) embedded in a CppMicroServices bundle.
*
* A \c %BundleResource object provides information about a resource (external file) which
* was embedded into this bundle's shared library. \c %BundleResource objects can be obtained
* be calling Bundle#GetResource or Bundle#FindResources.
*
* Example code for retreiving a resource object and reading its contents:
* \snippet uServices-resources/main.cpp 1
*
* %BundleResource objects have value semantics and copies are very inexpensive.
*
* \rststar
* .. seealso::
*
* | :any:`BundleResourceStream`
* | :any:`concept-resources`
* \endrststar
*/
class US_Framework_EXPORT BundleResource
{
public:
/**
* Creates in invalid %BundleResource object.
*
* @see IsValid()
*/
BundleResource();
/**
* Copy constructor.
* @param resource The object to be copied.
*/
BundleResource(const BundleResource& resource);
~BundleResource();
/**
* Assignment operator.
*
* @param resource The %BundleResource object which is assigned to this instance.
* @return A reference to this %BundleResource instance.
*/
BundleResource& operator=(const BundleResource& resource);
/**
* A less then operator using the full resource path as returned by
* GetResourcePath() to define the ordering.
*
* @param resource The object to which this %BundleResource object is compared to.
* @return \c true if this %BundleResource object is less then \c resource,
* \c false otherwise.
*/
bool operator<(const BundleResource& resource) const;
/**
* Equality operator for %BundleResource objects.
*
* @param resource The object for testing equality.
* @return \c true if this %BundleResource object is equal to \c resource, i.e.
* they are coming from the same bundle (shared or static) and have an equal
* resource path, \c false otherwise.
*/
bool operator==(const BundleResource& resource) const;
/**
* Inequality operator for %BundleResource objects.
*
* @param resource The object for testing inequality.
* @return The result of <code>!(*this == resource)</code>.
*/
bool operator!=(const BundleResource& resource) const;
/**
* Tests this %BundleResource object for validity.
*
* Invalid %BundleResource objects are created by the default constructor or
* can be returned by the Bundle class if the resource path is not found.
*
* @return \c true if this %BundleReource object is valid and can safely be used,
* \c false otherwise.
*/
bool IsValid() const;
/**
* Boolean conversion operator using IsValid().
*/
explicit operator bool() const;
/**
* Returns the name of the resource, excluding the path.
*
* Example:
* \code
* BundleResource resource = bundle->GetResource("/data/archive.tar.gz");
* std::string name = resource.GetName(); // name = "archive.tar.gz"
* \endcode
*
* @return The resource name.
* @see GetPath(), GetResourcePath()
*/
std::string GetName() const;
/**
* Returns the resource's path, without the file name.
*
* Example:
* \code
* BundleResource resource = bundle->GetResource("/data/archive.tar.gz");
* std::string path = resource.GetPath(); // path = "/data/"
* \endcode
*
* The path with always begin and end with a forward slash.
*
* @return The resource path without the name.
* @see GetResourcePath(), GetName() and IsDir()
*/
std::string GetPath() const;
/**
* Returns the resource path including the file name.
*
* @return The resource path including the file name.
* @see GetPath(), GetName() and IsDir()
*/
std::string GetResourcePath() const;
/**
* Returns the base name of the resource without the path.
*
* Example:
* \code
* BundleResource resource = bundle->GetResource("/data/archive.tar.gz");
* std::string base = resource.GetBaseName(); // base = "archive"
* \endcode
*
* @return The resource base name.
* @see GetName(), GetSuffix(), GetCompleteSuffix() and GetCompleteBaseName()
*/
std::string GetBaseName() const;
/**
* Returns the complete base name of the resource without the path.
*
* Example:
* \code
* BundleResource resource = bundle->GetResource("/data/archive.tar.gz");
* std::string base = resource.GetCompleteBaseName(); // base = "archive.tar"
* \endcode
*
* @return The resource's complete base name.
* @see GetName(), GetSuffix(), GetCompleteSuffix(), and GetBaseName()
*/
std::string GetCompleteBaseName() const;
/**
* Returns the suffix of the resource.
*
* The suffix consists of all characters in the resource name after (but not
* including) the last '.'.
*
* Example:
* \code
* BundleResource resource = bundle->GetResource("/data/archive.tar.gz");
* std::string suffix = resource.GetSuffix(); // suffix = "gz"
* \endcode
*
* @return The resource name suffix.
* @see GetName(), GetCompleteSuffix(), GetBaseName() and GetCompleteBaseName()
*/
std::string GetSuffix() const;
/**
* Returns the complete suffix of the resource.
*
* The suffix consists of all characters in the resource name after (but not
* including) the first '.'.
*
* Example:
* \code
* BundleResource resource = bundle->GetResource("/data/archive.tar.gz");
* std::string suffix = resource.GetCompleteSuffix(); // suffix = "tar.gz"
* \endcode
*
* @return The resource name suffix.
* @see GetName(), GetSuffix(), GetBaseName(), and GetCompleteBaseName()
*/
std::string GetCompleteSuffix() const;
/**
* Returns \c true if this %BundleResource object points to a directory and thus
* may have child resources.
*
* @return \c true if this object points to a directory, \c false otherwise.
*/
bool IsDir() const;
/**
* Returns \c true if this %BundleResource object points to a file resource.
*
* @return \c true if this object points to an embedded file, \c false otherwise.
*/
bool IsFile() const;
/**
* Returns a list of resource names which are children of this object.
*
* The returned names are relative to the path of this %BundleResource object
* and may contain file as well as directory entries.
*
* @return A list of child resource names.
*/
std::vector<std::string> GetChildren() const;
/**
* Returns a list of resource objects which are children of this object.
*
* The returned BundleResource objects may contain files as well as
* directory resources.
*
* @return A list of child resource objects.
*/
std::vector<BundleResource> GetChildResources() const;
/**
* Returns the (uncompressed) size of the resource data for this %BundleResource object.
*
* @return The uncompressed resource data size.
*/
int GetSize() const;
/**
* Returns the compressed size of the resource data for this %BundleResource object.
*
* @return The compressed resource data size.
*/
int GetCompressedSize() const;
/**
* Returns the last modified time of this resource in seconds from the epoch.
*
* @return Last modified time of this resource.
*/
time_t GetLastModified() const;
/**
* Returns the CRC-32 checksum of this resource.
*
* @return CRC-32 checksum of this resource.
*/
uint32_t GetCrc32() const;
private:
BundleResource(const std::string& file,
const std::shared_ptr<const BundleArchive>& archive);
BundleResource(int index,
const std::shared_ptr<const BundleArchive>& archive);
friend struct BundleArchive;
friend class BundleResourceContainer;
friend class BundleResourceStream;
friend struct ::std::hash<BundleResource>;
std::size_t Hash() const;
std::unique_ptr<void, void (*)(void*)> GetData() const;
BundleResourcePrivate* d;
};
/**
* \ingroup MicroServices
* \ingroup gr_bundleresource
*
* Streams the \c resource path into the stream \c os.
*/
US_Framework_EXPORT std::ostream& operator<<(std::ostream& os,
const BundleResource& resource);
}
/**
* \ingroup MicroServices
* \ingroup gr_bundleresource
*
* \struct std::hash<cppmicroservices::BundleResource> BundleResource.h <cppmicroservices/BundleResource.h>
*
* Hash functor specialization for \link cppmicroservices#BundleResource BundleResource\endlink objects.
*/
US_HASH_FUNCTION_BEGIN(cppmicroservices::BundleResource)
return arg.Hash();
US_HASH_FUNCTION_END
#endif // CPPMICROSERVICES_BUNDLERESOURCE_H