Blob Blame History Raw
/*
 * Copyright 2013--2014 Red Hat Inc., Durham, North Carolina.
 * All Rights Reserved.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 *
 * Authors:
 *	Šimon Lukašík
 */

#pragma once
#ifndef _OSCAP_CPE_CTX_PRIV_H
#define _OSCAP_CPE_CTX_PRIV_H

#include "common/util.h"


/**
 * Internal structure to hold information useful for CPE parser
 */
struct cpe_parser_ctx;

/**
 * Construct cpe_parser_ctx from existing xmlTextReader
 * @param reader existing XML reader
 * @param parser's context
 */
struct cpe_parser_ctx *cpe_parser_ctx_from_reader(xmlTextReaderPtr reader);

/**
 * Destructor for cpe_parser_ctx
 * @param parser's context to dispose
 */
void cpe_parser_ctx_free(struct cpe_parser_ctx *ctx);

/**
 * Get the xmlTextReader property from the context
 * @returns the XML text reader
 */
xmlTextReaderPtr cpe_parser_ctx_get_reader(const struct cpe_parser_ctx *ctx);

/**
 * Compare version of the parsed documnet with a reference version.
 * @memberof cpe_parser_ctx
 * @param ctx CPE parser context
 * @param version reference version to compare with
 * @returns true when the parser's version is greater than reference version.
 */
bool cpe_parser_ctx_version_gt(struct cpe_parser_ctx *ctx, const char *version);

/**
 * Sets the schema_version property of the context
 * @param schema_version new version to set
 * @returns true on success
 */
OSCAP_SETTER_HEADER(cpe_parser_ctx, const char *, schema_version);


#endif