Sha256: 02f845b2b6c7a249ab5171c097cce92aa607d48a02a734c189ec22c1ee89260b

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

Contents

#ifndef BANDIT_SPECS_ARGV_HELPER_H
#define BANDIT_SPECS_ARGV_HELPER_H

#include <string.h>

namespace bandit { namespace specs { namespace util {

  //
  // main() is supposed to receive its arguments as a non const 'char* argv[]'.
  // This is a pain to create for each test. It's a whole lot easier to create
  // a 'const char* argv[]' construct.
  //
  // This class helps copy from 'const char**' to 'char**' and handle cleanup
  // automatically.
  //
  struct argv_helper
  {
    argv_helper(int argc_a, const char* argv_a[])
      : argc_(argc_a) 
    {
      non_const_argv_ = new char*[argc_];
      for(int i=0; i < argc_; i++)
      {
		std::string s(argv_a[i]);
        non_const_argv_[i] = new char[s.size() + 1];
        for(size_t c=0;c<s.size();c++)
		{
			non_const_argv_[i][c] = s[c];
		}
		non_const_argv_[i][s.size()] = 0;
      }
    }



    ~argv_helper()
    {
      for(int i=0; i < argc_; i++)
      {
        delete[] non_const_argv_[i];
      }

      delete[] non_const_argv_;
    }

    char** argv()
    {
      return non_const_argv_;
    }

    int argc()
    {
      return argc_;
    }

    private:
    int argc_;
    char** non_const_argv_;
  };

}}}
#endif

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tree-sitter-0.1.0 ext/tree-sitter/tree-sitter/externals/bandit/specs/util/argv_helper.h
tree-sitter-0.0.1 ext/tree-sitter/tree-sitter/externals/bandit/specs/util/argv_helper.h