summaryrefslogtreecommitdiff
path: root/java/linux/title2data.cpp
blob: 6382f2aeb543bfdfd2377b9d1fbccf731a9f0c34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
///////////////////////////////////////////////////////////////////////////////
//  Filename: $RCSfile: title2data.cpp,v $
//  Purpose:  Externl program example.
//  Language: Java
//  Compiler: GCC
//  Authors:  Joerg K. Wegner
//  Version:  $Revision: 1.1.1.1 $
//            $Date: 2004/12/06 15:32:05 $
//            $Author: wegner $
//
//  Copyright (c) Dept. Computer Architecture, University of Tuebingen, Germany
//
//  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.
///////////////////////////////////////////////////////////////////////////////

#include <iostream>
#include <fstream>
#include <stdio.h>

using namespace std;

int main(int argc,char **argv)
{
	char *buffer = new char[10000];
	char *title = new char[1000];
	int i,n;
	char ch;
	int line=1;
	int end;
	char *attribute = "MOL_TITLE";

	if(argc>1)attribute=argv[1];
	for(;;)
	{
	   end=0;
	   for( i = 0; ((ch = getchar()) != EOF) && (ch != '\n'); i++ )
	   {
		  buffer[i] = (char)ch;
		  if(i<4)
		  {
		  	end|=(end<<1);
			if(ch=='$')end|=1;
		  }
	   }
	   
	   if(end!=15)
	   {
	     buffer[i] = '\0';
	     //printf( "line %i:%s\n",line, buffer );
	     printf( "%s\n", buffer );
	   }
	   if(line==1)
	   {
	   	for( n = 0; n<=i; n++ )
		{
			title[n]=buffer[n];
	   	}
	   }

	   if(ch==EOF || end==15)
	   {
 		break;
	   }

	   line++;
	}
	
	//write simple data entry
	printf( ">  <%s>\n",attribute);
	printf( "%s\n", title );
	printf( "\n$$$$" );
}