You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-11-03 17:13:17 +03:00 
			
		
		
		
	* feat(cpimport): MCOL-4882 add a parameter to skip header rows * chore(cpimport): MCOL-4882 Use boost::program_options to arguments parsing * feat(cpimport.bin): MCOL-4882 Add missing changes * add test * fix clang * add missing cmdline argument * fix bug * Fix double lines skipping * Fix incorrect --silent (-N) parsing * fix default --max-errors processing * fix overwriting default username * move initialization to members declaration
		
			
				
	
	
		
			64 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/* Copyright (C) 2014 InfiniDB, Inc.
 | 
						|
 | 
						|
   This program is free software; you can redistribute it and/or
 | 
						|
   modify it under the terms of the GNU General Public License
 | 
						|
   as published by the Free Software Foundation; version 2 of
 | 
						|
   the License.
 | 
						|
 | 
						|
   This program 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 General Public License for more details.
 | 
						|
 | 
						|
   You should have received a copy of the GNU General Public License
 | 
						|
   along with this program; if not, write to the Free Software
 | 
						|
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 | 
						|
   MA 02110-1301, USA. */
 | 
						|
 | 
						|
/*******************************************************************************
 | 
						|
 * $Id$
 | 
						|
 *
 | 
						|
 *******************************************************************************/
 | 
						|
 | 
						|
/*
 | 
						|
 * we_xmlgetter.h
 | 
						|
 *
 | 
						|
 *  Created on: Feb 7, 2012
 | 
						|
 *      Author: bpaul
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <libxml/parser.h>
 | 
						|
 | 
						|
namespace WriteEngine
 | 
						|
{
 | 
						|
class WEXmlgetter
 | 
						|
{
 | 
						|
 public:
 | 
						|
  explicit WEXmlgetter(const std::string& ConfigName);
 | 
						|
  ~WEXmlgetter();
 | 
						|
 | 
						|
 public:
 | 
						|
  //..Public methods
 | 
						|
  std::string getValue(const std::vector<std::string>& sections) const;
 | 
						|
  std::string getAttribute(const std::vector<std::string>& sections, const std::string& Tag) const;
 | 
						|
  void getConfig(const std::string& section, const std::string& name, std::vector<std::string>& values) const;
 | 
						|
  void getAttributeListForAllChildren(const std::vector<std::string>& sections,
 | 
						|
                                      const std::string& attributeTag,
 | 
						|
                                      std::vector<std::string>& attributeValues) const;
 | 
						|
 | 
						|
 private:
 | 
						|
  //..Private methods
 | 
						|
  static const xmlNode* getNode(const xmlNode* pParent, const std::string& section);
 | 
						|
  static bool getNodeAttribute(const xmlNode* pNode, const char* pTag, std::string& strVal);
 | 
						|
  static bool getNodeContent(const xmlNode* pNode, std::string& strVal);
 | 
						|
 | 
						|
  //..Private data members
 | 
						|
  std::string fConfigName;  // xml filename
 | 
						|
  xmlDocPtr fDoc;           // xml document pointer
 | 
						|
  xmlNode* fpRoot;          // root element
 | 
						|
};
 | 
						|
 | 
						|
} /* namespace WriteEngine */
 |