User underspecified - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T06:55:39Zhttp://stackoverflow.com/feeds/user/8146http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/69738/c-how-to-get-fprintf-results-as-a-stdstring-w-o-sprintf5C++: how to get fprintf results as a std::string w/o sprintfunderspecified2008-09-16T06:12:48Z2009-08-27T22:19:18Z
<p>I am working with an open-source UNIX tool that is implemented in C++, and I need to change some code to get it to do what I want. I would like to make the smallest possible change in hopes of getting my patch accepted upstream. Solutions that are implementable in standard C++ and do not create more external dependencies are preferred.</p>
<p>Here is my problem. I have a C++ class -- let's call it "A" -- that currently uses fprintf() to print its heavily formatted data structures to a file pointer. In its print function, it also recursively calls the identically defined print functions of several member classes ("B" is an example). There is another class C that has a member std::string "foo" that needs to be set to the print() results of an instance of A. Think of it as a to_str() member function for A.</p>
<p>In pseudocode:</p>
<pre><code>class A {
public:
...
void print(FILE* f);
B b;
...
};
...
void A::print(FILE *f)
{
std::string s = "stuff";
fprintf(f, "some %s", s);
b.print(f);
}
class C {
...
std::string foo;
bool set_foo(std::str);
...
}
...
A a = new A();
C c = new C();
...
// wish i knew how to write A's to_str()
c.set_foo(a.to_str());
</code></pre>
<p>I should mention that C is fairly stable, but A and B (and the rest of A's dependents) are in a state of flux, so the less code changes necessary the better. The current print(FILE* F) interface also needs to be preserved. I have considered several approaches to implementing A::to_str(), each with advantages and disadvantages:</p>
<ol>
<li><p>Change the calls to fprintf() to sprintf()</p>
<ul>
<li>I wouldn't have to rewrite any format strings</li>
<li>print() could be reimplemented as: fprint(f, this.to_str());</li>
<li>But I would need to manually allocate char[]s, merge a lot of c strings , and finally convert the character array to a std::string</li>
</ul></li>
<li><p>Try to catch the results of a.print() in a string stream</p>
<ul>
<li>I would have to convert all of the format strings to << output format. There are hundreds of fprintf()s to convert :-{</li>
<li>print() would have to be rewritten because there is no standard way that I know of to create an output stream from a UNIX file handle (though <a href="http://synflood.at/blog/index.php?/archives/456-One-word-of-warning-about-stdio_filebuf.html" rel="nofollow">this guy says it may be possible</a>).</li>
</ul></li>
<li><p>Use Boost's <a href="http://www.boost.org/doc/libs/1_36_0/libs/format/doc/format.html" rel="nofollow">string format library</a></p>
<ul>
<li>More external dependencies. Yuck.</li>
<li>Format's syntax is different enough from printf() to be annoying: </li>
</ul>
<p>printf(format_str, args) -> cout << boost::format(format_str) % arg1 % arg2 % etc</p></li>
<li><p>Use Qt's QString::printf()</p>
<ul>
<li>A different external dependency.</li>
<li>Looks like QString::printf() is <a href="http://www.potu.com/man/doc.trolltech.com/4.0/qstring.html" rel="nofollow">on its way out</a></li>
</ul></li>
</ol>
<p>So, have I exhausted all possible options? If so, which do you think is my best bet? If not, what have I overlooked?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/91211/beginning-web-development-on-plan-9/91446#914463Answer by underspecified for Beginning Web Development on Plan 9underspecified2008-09-18T10:20:02Z2008-09-18T10:20:02Z<p>Check out Kenji Arisawa's <a href="http://plan9.aichi-u.ac.jp/netlib/pegasus/" rel="nofollow">Pegasus</a> (<a href="http://lsub.org/iwp9/cready/pegasus-5.pdf" rel="nofollow">paper</a>) webserver for Plan 9.</p>
<p>Plan 9 may have a reputation for being C-only, but several langauges, including Scheme, Ruby, Python, and Perl have been ported. Check out the <a href="http://plan9.bell-labs.com/wiki/plan9/Contrib_index/index.html" rel="nofollow">Contrib Index</a> for the code.</p>
<p>Finally, start reading the Plan 9 <a href="http://plan9.bell-labs.com/wiki/plan9/Documentation/index.html" rel="nofollow">white papers</a> so that you can understand its philosophy. If you want to do net-related things, the file protocol <a href="http://plan9.bell-labs.com/sources/contrib/uriel/doc/charles/servers.pdf" rel="nofollow">9p</a> is essential.</p>
http://stackoverflow.com/questions/88984/your-favorite-natural-language-parser/91309#913093Answer by underspecified for Your favorite natural language parser?underspecified2008-09-18T09:54:59Z2008-09-18T09:54:59Z<p>The parser I use the most in my research is probably the HPSG parser <a href="http://wiki.delph-in.net/moin/PetTop" rel="nofollow">PET</a>. Going through your list:</p>
<ul>
<li><a href="http://journals.cambridge.org/action/displayAbstract;jsessionid=5AE8164FCE1A8E743A8C50E6382803F4.tomcat1?fromPage=online&aid=58599" rel="nofollow">PET – a platform for experimentation with efficient HPSG processing techniques</a>.</li>
<li>Implemented in C++ (with some functionality in Lisp).</li>
<li>Compatible grammars for English, Japanese, German, Greek, French, Korean, and more. See <a href="http://www.delph-in.net/index.php?page=3" rel="nofollow">here</a> for more information.</li>
<li>GPL licensed.</li>
<li>Head-driven Phrase Structure Grammar. Specifically, the <a href="http://www.delph-in.net" rel="nofollow">Delph-In</a>/<a href="http://www.delph-in.net/matrix/" rel="nofollow">Matrix</a> formalism.</li>
<li>Deep, but more support for integration with shallow parsing techniques is being added. Provides semantic analysis in <a href="http://www.essex.ac.uk/linguistics/clmt/papers/hpsg/newmrs.pdf" rel="nofollow">MRS</a> logical form.</li>
<li>Under active development. Packages are available for Ubuntu Linux at <a href="http://cl.naist.jp/~eric-n/ubuntu-nlp/" rel="nofollow">Ubuntu-NLP</a>. Users of other operating systems should see <a href="http://wiki.delph-in.net/moin/PetTop#head-c52b9c45218559183703fbec78ad626315b18172" rel="nofollow">here</a>.</li>
<li>Bottom-up unification-based chart parsing.</li>
<li>No dependencies on external tools. There is some integration with POS taggers in English and Japanese, however.</li>
</ul>
<p>See <a href="http://erg.emmtee.net/logon" rel="nofollow">here</a> for a demo of English parsing.</p>
http://stackoverflow.com/questions/90580/word-frequency-algorithm-for-natural-language-processing/90890#908907Answer by underspecified for Word frequency algorithm for natural language processingunderspecified2008-09-18T08:17:37Z2008-09-18T08:17:37Z<p>Welcome to the world of NLP ^_^</p>
<p>All you need is a little basic knowledge and some tools.</p>
<p>There are already tools that will tell you if a word in a sentence is a noun, adjective or verb. They are called <a href="http://en.wikipedia.org/wiki/Part-of-speech_tagging" rel="nofollow">part-of-speech taggers</a>. Typically, they take plaintext English as input, and output the word, its base form, and the part-of-speech. Here is the output of a popular UNIX part-of-speech tagger on the first sentence of your post:</p>
<pre><code>$ echo "Without getting a degree in information retrieval, I'd like to know if there exists any algorithms for counting the frequency that words occur in a given body of text." | tree-tagger-english
# Word POS surface form
Without IN without
getting VVG get
a DT a
degree NN degree
in IN in
information NN information
retrieval NN retrieval
, , ,
I PP I
'd MD will
like VV like
to TO to
know VV know
if IN if
there EX there
exists VVZ exist
any DT any
algorithms NNS algorithm
for IN for
counting VVG count
the DT the
frequency NN frequency
that IN/that that
words NNS word
occur VVP occur
in IN in
a DT a
given VVN give
body NN body
of IN of
text NN text
. SENT .
</code></pre>
<p>As you can see, it identified "algorithms" as being the plural form (NNS) of "algorithm" and "exists" as being a conjugation (VBZ) of "exist." It also identified "a" and "the" as "determiners (DT)" -- another word for article. As you can see, the POS tagger also tokenized the punctuation.</p>
<p>To do everything but the last point on your list, you just need to run the text through a POS tagger, filter out the categories that don't interest you (determiners, pronouns, etc.) and count the frequencies of the base forms of the words.</p>
<p>Here are some popular POS taggers:</p>
<p><a href="http://www.ims.uni-stuttgart.de/projekte/corplex/TreeTagger/" rel="nofollow">TreeTagger</a> (binary only: Linux, Solaris, OS-X)<br />
<a href="http://www-tsujii.is.s.u-tokyo.ac.jp/GENIA/tagger/" rel="nofollow">GENIA Tagger</a> (C++: compile your self)<br />
<a href="http://nlp.stanford.edu/software/tagger.shtml" rel="nofollow">Stanford POS Tagger</a> (Java) </p>
<p>To do the last thing on your list, you need more than just word-level information. An easy way to start is by counting <em>sequences</em> <em>of</em> <em>words</em> rather than just words themselves. These are called <a href="http://en.wikipedia.org/wiki/N-gram" rel="nofollow">n-grams</a>. A good place to start is <a href="http://people.sslmit.unibo.it/~baroni/compling04/UnixforPoets.pdf" rel="nofollow">UNIX for Poets</a>. If you are willing to invest in a book on NLP, I would recommend <a href="http://rads.stackoverflow.com/amzn/click/0262133601" rel="nofollow">Foundations of Statistical Natural Language Processing</a>.</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/70061#700612Answer by underspecified for What to Learn after C++?underspecified2008-09-16T07:25:53Z2008-09-16T07:25:53Z<p>Scheme.</p>
<p><a href="http://www.ccs.neu.edu/home/matthias/BTLS/" rel="nofollow">The Little Schemer</a> and <a href="http://mitpress.mit.edu/sicp/" rel="nofollow">Structure and Interpretation of Computer Program</a> will stretch your mind in strange and wonderful ways.</p>
<p><a href="http://www.drscheme.org/" rel="nofollow">DrScheme</a> is a good IDE for beginners. <a href="http://www.scheme.com/tspl3/" rel="nofollow">The Scheme Programming Language</a> makes a good, free reference.</p>
http://stackoverflow.com/questions/88984/your-favorite-natural-language-parser/115660#115660Comment by underspecified on Your favorite natural language parser?underspecified2008-09-23T15:33:34Z2008-09-23T15:33:34ZWhat kind of deep parsing does it support?http://stackoverflow.com/questions/90580/word-frequency-algorithm-for-natural-language-processing/90890#90890Comment by underspecified on Word frequency algorithm for natural language processingunderspecified2008-09-18T10:24:40Z2008-09-18T10:24:40ZThanks for the upvote :-) I will have to remember "Akademikerware" -- that describes 95% of NLP software IMO. I haven't checked out OpenNLP or LingPipe. I'm not actually a Java guy.http://stackoverflow.com/questions/69738/c-how-to-get-fprintf-results-as-a-stdstring-w-o-sprintf/69765#69765Comment by underspecified on C++: how to get fprintf results as a std::string w/o sprintfunderspecified2008-09-18T07:29:42Z2008-09-18T07:29:42ZI tried Loki's SafeFormat, but it turns out it's just swapping boost's 5s for ()s. On a positive note, my code did work once I adopted boost::format :-)http://stackoverflow.com/questions/69738/c-how-to-get-fprintf-results-as-a-stdstring-w-o-sprintf/70233#70233Comment by underspecified on C++: how to get fprintf results as a std::string w/o sprintfunderspecified2008-09-18T07:27:53Z2008-09-18T07:27:53ZI gave SafeFormat a try, but I think the statement that it "keeps the syntax of the printf(...)" is misleading. All it appears to do is trade boost's %s for ()s. :-( Ihttp://stackoverflow.com/questions/69738/c-how-to-get-fprintf-results-as-a-stdstring-w-o-sprintf/69765#69765Comment by underspecified on C++: how to get fprintf results as a std::string w/o sprintfunderspecified2008-09-16T08:39:22Z2008-09-16T08:39:22ZThanks for the clarification on boost::format's usage. It's tempting given that this project already depends on another boost library, but I don't think anything beats a printf that just works with std::string as Loki seems to do.http://stackoverflow.com/questions/69738/c-how-to-get-fprintf-results-as-a-stdstring-w-o-sprintf/69915#69915Comment by underspecified on C++: how to get fprintf results as a std::string w/o sprintfunderspecified2008-09-16T08:36:44Z2008-09-16T08:36:44ZI will take your reply as a combination of #1 and #2 :-) Does ofstream have a constructor that takes file handles? I was under the impression that they were incompatible ...http://stackoverflow.com/questions/69738/c-how-to-get-fprintf-results-as-a-stdstring-w-o-sprintf/69911#69911Comment by underspecified on C++: how to get fprintf results as a std::string w/o sprintfunderspecified2008-09-16T08:36:03Z2008-09-16T08:36:03ZNice work on format/vformat. Maybe stackoverflow needs some kind of code snippit sharing section :-)
http://stackoverflow.com/questions/69738/c-how-to-get-fprintf-results-as-a-stdstring-w-o-sprintf/69767#69767Comment by underspecified on C++: how to get fprintf results as a std::string w/o sprintfunderspecified2008-09-16T08:35:10Z2008-09-16T08:35:10ZThanks for letting me know about iomanip. It certainly looks useful, but I want to try to preserve the numerous existing format strings as much as possible.http://stackoverflow.com/questions/69738/c-how-to-get-fprintf-results-as-a-stdstring-w-o-sprintf/69762#69762Comment by underspecified on C++: how to get fprintf results as a std::string w/o sprintfunderspecified2008-09-16T08:34:16Z2008-09-16T08:34:16ZThis is about printing proper. C.foo is one piece of data that is eventually shown to the user (largely) as-is. If this were my code, I would lose the print(FILE*) nonsense which is far too restrictive.
http://stackoverflow.com/questions/69738/c-how-to-get-fprintf-results-as-a-stdstring-w-o-sprintf/70233#70233Comment by underspecified on C++: how to get fprintf results as a std::string w/o sprintfunderspecified2008-09-16T08:27:13Z2008-09-16T08:27:13ZAwesome! I think we have a new winner ^_^