Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.os.linux.development.apps > #168

reading a temp file in C++

From Ruben Safir <ruben@mrbrklyn.com>
Newsgroups comp.os.linux.development.apps
Subject reading a temp file in C++
Date 2011-06-28 08:33 +0000
Organization PANIX Public Access Internet and UNIX, NYC
Message-ID <iuc3l7$nam$1@reader1.panix.com> (permalink)

Show all headers | View raw


any clue why this isn't retrieving the contents of the temp file


Question Deck::create_question(WINDOW* menu_win, std::ostream &os ,std::istream &in ){
      
      char default_editor[20000] = "vi ";
      char * editor;
      char tmp[4096];
      char path[] = "/tmp/fileXXXXXX";
      int fd;
      fd = mkstemp(path);
      editor = getenv("EDITOR");
      if (editor == NULL){
	 editor  = default_editor;
      }

      strcat(editor, path);
      char quest_prompt[] = "Edit Your Question";
....
      std::string input_q, input_a;
      while( ( c=wgetch(quest_win) ) ){
	 if ( (c == 10) ){
	    def_prog_mode();
	    endwin();
	    system(editor);
	    reset_prog_mode();
	     __gnu_cxx::stdio_filebuf< char>  tmpfile_buf(fd, std::ios::binary|std::ios::app);
	     std::istream is(&tmpfile_buf);
	     is.seekg(0, std::ios::beg);
	     while(is){
		is.read( tmp, 4096);
		std::cerr << "What did we read" << tmp << std::endl;
		input_q = tmp;
	     }
	     tmpfile_buf.close();
	     break;
	 }
      }
      remove(path);

Back to comp.os.linux.development.apps | Previous | NextNext in thread | Find similar


Thread

reading a temp file in C++ Ruben Safir <ruben@mrbrklyn.com> - 2011-06-28 08:33 +0000
  Re: reading a temp file in C++ Richard Kettlewell <rjk@greenend.org.uk> - 2011-06-28 09:46 +0100
  Re: reading a temp file in C++ James Waldby <not@valid.invalid> - 2011-06-28 15:58 +0000
    Re: reading a temp file in C++ jt@toerring.de (Jens Thoms Toerring) - 2011-06-28 21:17 +0000
      Re: reading a temp file in C++ ruben safir <ruben@mrbrklyn.com> - 2011-06-30 03:06 +0000

csiph-web