0d68f6afb3
* fleshed out RepositoryWriterImpl * renamed BRepositoryHeader to BRepositoryInfo (in accordance with BPackageInfo) * adjusted BRepositoryInfo to be able to parse itself from a driver_settings file * added package_repo binary (only 'create' works as of yet) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40405 a95241bf-73f2-0310-859d-f6bbb57e9c96
62 lines
1.4 KiB
C++
62 lines
1.4 KiB
C++
/*
|
|
* Copyright 2009,2011, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _PACKAGE__HPKG__PACKAGE_CONTENT_HANDLER_H_
|
|
#define _PACKAGE__HPKG__PACKAGE_CONTENT_HANDLER_H_
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
namespace BPackageKit {
|
|
|
|
namespace BHPKG {
|
|
|
|
|
|
class BPackageAttributeValue;
|
|
class BPackageEntry;
|
|
class BPackageEntryAttribute;
|
|
class BPackageInfoAttributeValue;
|
|
|
|
|
|
class BLowLevelPackageContentHandler {
|
|
public:
|
|
virtual ~BLowLevelPackageContentHandler();
|
|
|
|
virtual status_t HandleAttribute(const char* attributeName,
|
|
const BPackageAttributeValue& value,
|
|
void* parentToken, void*& _token) = 0;
|
|
virtual status_t HandleAttributeDone(const char* attributeName,
|
|
const BPackageAttributeValue& value,
|
|
void* token) = 0;
|
|
|
|
virtual void HandleErrorOccurred() = 0;
|
|
};
|
|
|
|
|
|
class BPackageContentHandler {
|
|
public:
|
|
virtual ~BPackageContentHandler();
|
|
|
|
virtual status_t HandleEntry(BPackageEntry* entry) = 0;
|
|
virtual status_t HandleEntryAttribute(BPackageEntry* entry,
|
|
BPackageEntryAttribute* attribute) = 0;
|
|
virtual status_t HandleEntryDone(BPackageEntry* entry) = 0;
|
|
|
|
virtual status_t HandlePackageAttribute(
|
|
const BPackageInfoAttributeValue& value
|
|
) = 0;
|
|
virtual status_t HandlePackageAttributesDone() = 0;
|
|
|
|
virtual void HandleErrorOccurred() = 0;
|
|
};
|
|
|
|
|
|
} // namespace BHPKG
|
|
|
|
} // namespace BPackageKit
|
|
|
|
|
|
#endif // _PACKAGE__HPKG__PACKAGE_CONTENT_HANDLER_H_
|