/**
* @file cpedict_priv.h
* @brief Interface to Common Platform Enumeration (CPE) Dictionary.
*
* See more details at http://nvd.nist.gov/cpe.cfm
*/
/*
* Copyright 2009--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:
* Maros Barabas <mbarabas@redhat.com>
*/
#ifndef CPEDICT_PRIV_H_
#define CPEDICT_PRIV_H_
#include <libxml/xmlreader.h>
#include <libxml/xmlwriter.h>
#include <stdlib.h>
#include "cpe_name.h"
#include "cpe_ctx_priv.h"
#include "cpe_dict.h"
#include "../common/public/oscap.h"
#include "../common/util.h"
#include "../common/elements.h"
/**
* @cond INTERNAL
*/
/* @endcond */
/**
* Parse generator part of CPE dictionary XML file
* @param ctx CPE Parser's context
* @return new structure cpe_generator
*/
struct cpe_generator *cpe_generator_parse(struct cpe_parser_ctx *ctx);
/**
* New dictionary item from XML
* @param ctx CPE parser's context
* @return new dictionary item
* @retval NULL on failure
*/
struct cpe_item *cpe_item_parse(struct cpe_parser_ctx *ctx);
/**
* Parsing function to parse vendors of CPE dictionary
* @param reader xmlTextReaderPtr representing XML model
* @return new structure cpe_vendor
*/
struct cpe_vendor *cpe_vendor_parse(xmlTextReaderPtr reader);
/**
* Load new CPE dictionary from XML node
* @param ctx CPE parser context
* @return new dictionary
* @retval NULL on failure
*/
struct cpe_dict_model *cpe_dict_model_parse(struct cpe_parser_ctx *ctx);
/**
* Get a version info from xmlTextReader
* @param reader xmlTextReader
* @returns version string that shall be disposed by caller
*/
char *cpe_dict_detect_version_priv(xmlTextReader *reader);
/**
* Export function for CPE dictionary model
* @param dict CPE dictionary structure
* @param file filename to export
*/
void cpe_dict_model_export_xml(const struct cpe_dict_model *dict, const char *file);
/**
* Internal export function for CPE dictionary model
* @param dict CPE dictionary
* @param writer xmlTextWriterPtr representing XML model
*/
void cpe_dict_export(const struct cpe_dict_model *dict, xmlTextWriterPtr writer);
/**
* Exporting function for CPE generator - information of XML document
* @param generator CPE generator structure
* @param writer xmlTextWriterPtr representing XML model
*/
void cpe_generator_export(const struct cpe_generator *generator, xmlTextWriterPtr writer);
/**
* Exporting function for CPE item
* @param item CPE item structure
* @param writer xmlTextWriterPtr representing XML model
* @param base_version what is the base version of target CPE dict (1 for CPE 1.x, 2 for CPE 2.x, ...)
*/
void cpe_item_export(const struct cpe_item *item, xmlTextWriterPtr writer, int base_version);
/**
* Exporting function for CPE vendor
* @param vendor CPE vendor structure
* @param writer xmlTextWriterPtr representing XML model
*/
void cpe_vendor_export(const struct cpe_vendor *vendor, xmlTextWriterPtr writer);
/**
* Sets the origin file hint
* @see cpe_dict_model_get_origin_file
*/
bool cpe_dict_model_set_origin_file(struct cpe_dict_model* dict, const char* origin_file);
/**
* Gets the file the CPE dict model was loaded from
* This is necessary to figure out the full OVAL file path for applicability
* testing. We can't do applicability here in the CPE module because that
* would create awful interdependencies.
*/
const char* cpe_dict_model_get_origin_file(const struct cpe_dict_model* dict);
/* <cpe-list>
* */
struct cpe_dict_model { // the main node
struct oscap_list *items; // dictionary items
struct oscap_list *vendors;
int base_version;
struct cpe_generator *generator;
char* origin_file;
};
/**
* @cond INTERNAL
*/
/* @endcond */
#endif