33bc4425be
handling: * package attributes are now compatible with the low level attribute handling of other HPKG attributes (such that 'package dump' now shows package attributes, too) * dropped type names from hpkg format, the attributes were identified by IDs already and this simplifies the code considerably. Type names are now handled in BLowLevelPackageHandler only. * instead of rolling their own mechanism, high-level package attributes handling is now implemented via a corresonding set of AttributeHandler-subclasses * adjusted package writer to only write package attributes that are needed (empty ones are left out) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40466 a95241bf-73f2-0310-859d-f6bbb57e9c96
106 lines
1.9 KiB
C++
106 lines
1.9 KiB
C++
/*
|
|
* Copyright 2009,2011, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _PACKAGE__HPKG__PACKAGE_INFO_ATTRIBUTE_VALUE_H_
|
|
#define _PACKAGE__HPKG__PACKAGE_INFO_ATTRIBUTE_VALUE_H_
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
#include <package/PackageArchitecture.h>
|
|
#include <package/PackageInfoAttributes.h>
|
|
#include <package/PackageResolvableOperator.h>
|
|
#include <package/PackageResolvableType.h>
|
|
|
|
|
|
namespace BPackageKit {
|
|
|
|
namespace BHPKG {
|
|
|
|
|
|
struct BPackageVersionData {
|
|
const char* major;
|
|
const char* minor;
|
|
const char* micro;
|
|
uint8 release;
|
|
};
|
|
|
|
|
|
struct BPackageResolvableData {
|
|
BPackageResolvableType type;
|
|
const char* name;
|
|
bool haveVersion;
|
|
BPackageVersionData version;
|
|
};
|
|
|
|
|
|
struct BPackageResolvableExpressionData {
|
|
const char* name;
|
|
bool haveOpAndVersion;
|
|
BPackageResolvableOperator op;
|
|
BPackageVersionData version;
|
|
};
|
|
|
|
|
|
struct BPackageInfoAttributeValue {
|
|
union {
|
|
uint64 unsignedInt;
|
|
const char* string;
|
|
BPackageVersionData version;
|
|
BPackageResolvableData resolvable;
|
|
BPackageResolvableExpressionData resolvableExpression;
|
|
};
|
|
BPackageInfoAttributeID attributeID;
|
|
|
|
public:
|
|
BPackageInfoAttributeValue();
|
|
|
|
void SetTo(BPackageInfoAttributeID id,
|
|
uint8 value);
|
|
void SetTo(BPackageInfoAttributeID id,
|
|
const char* value);
|
|
|
|
void Clear();
|
|
};
|
|
|
|
|
|
inline
|
|
BPackageInfoAttributeValue::BPackageInfoAttributeValue()
|
|
{
|
|
Clear();
|
|
}
|
|
|
|
|
|
inline void
|
|
BPackageInfoAttributeValue::SetTo(BPackageInfoAttributeID id, uint8 value)
|
|
{
|
|
attributeID = id;
|
|
unsignedInt = value;
|
|
}
|
|
|
|
|
|
inline void
|
|
BPackageInfoAttributeValue::SetTo(BPackageInfoAttributeID id,
|
|
const char* value)
|
|
{
|
|
attributeID = id;
|
|
string = value;
|
|
}
|
|
|
|
|
|
inline void
|
|
BPackageInfoAttributeValue::Clear()
|
|
{
|
|
memset(this, 0, sizeof(BPackageInfoAttributeValue));
|
|
attributeID = B_PACKAGE_INFO_ENUM_COUNT;
|
|
}
|
|
|
|
|
|
} // namespace BHPKG
|
|
|
|
} // namespace BPackageKit
|
|
|
|
|
|
#endif // _PACKAGE__HPKG__PACKAGE_ATTRIBUTE_VALUE_H_
|