GuiTextProc

What is GUITextProc?
GUITextProc is a slightly crazy text processor I have been working on every so often for the last few months. It is a plugin-capable text processor. You feed a text file in, and another, processed file is saved out.

What’s it useful for?
The original reason for writing it was that most text editors load the whole file into memory, which when you work with files that are sometimes 300Mb or more is a problem. What if you could cut the file down, by only including the lines you are interested in?

What else can it do?
It can also split a large file into smaller files. e.g every 10000 lines it can create a new file.

You mentioned it is plugin based, how does that help?
Right now there is one plugin: a regex matcher. Any lines that match (or, depending on configuration, don’t match) are included. You can chain plugins together, so for instance, if you wanted to include only lines that had the word “hat” in but not “scarf” you might first match all lines that do not have “scarf” in them, then match all those that have “hat” in.

Can I make my own plugins?
Right now, no, though I’m looking into releasing some sort of “plugin toolkit” for it. Also python extensions are a real possibility.

Are there any other plugins?
Right now, no. The regex plugin has been so useful that I have not needed any others.

Does it do anything else fun?
It does have the ability to read some particularly useless text formats, such as EBCDIC, GSM (almost – it doesn’t handle quite nulls properly), Atari ST ASCII, various old mac text codecs…
It’s fully unicode, so can deal with some pretty “interesting” text formats.

What’s it built with?
It’s based on the Qt framework. Right now it will only run on Microsoft Windows because that’s what I use most of the time, however at some point a Linux port would be a possibility.

Is it open source?
No, the program itself is not open source, however some of the components are. It uses a stock build of libpcre (BSD licensed) and also the Qt Framework (LGPL licenced) – Under the terms of the LGPL license, I must supply the source code I used to anyone who asks. If you want it, give me a shout though to be honest you’re probably better off going to the Qt website and getting it yourself.

How much does it cost?
Nothing! At least for now (and probably always) it is free. It’s only a small app, and I’m releasing it in the hope someone finds it useful.

Why does it need network access?
For update checking. When you open it up, it connects to this site to check what’s available. It sends nothing to my server except an HTTP request. If you’re interested what it downloads, it’s just this text file: http://cullen-online.com/guitextprocver.json

Can I share it?
Yes! please do. I was originally going to put a no distribution clause in the license, but since I have the auto update checker ensuring everyone gets the latest version if they want it, I’m less concerned.

What does it look like?
this:

GUITextProc Screenshot
Coming soon… Maybe?

 

Where can I get it?
 Here:
32-bit Windows: GUITextProc-10036.msi
HotFix: GUITextProc-Patch-10036-MultiPlugin.msp

64-bit Windows:  GUITextProc_x64-10036.msi
HotFix: GUITextProc_x64-Patch-10036-MultiPlugin.msp

The HotFix resoves an issue when multiple instances of the same plugin are loaded and the UI does not update correctly.

Problems?
Email crashes AT cullen-online.com if you have any problems, and I’ll do my best to help.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.