summaryrefslogtreecommitdiff
path: root/import_tools/del_repo/repo-add-dimensions.pl
blob: a5473d23f2a3d06a38013c5d3711f2b27a5c9650 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
#!/usr/bin/perl
# Bryan Bishop
# 2009-06-10
# kanzure@gmail.com http://heybryan.org/
#
# repo2gxml.pl
# this converts from the dot repo (.repo) XML file format found in repository.designengineeringlab.org to the GraphSynth 1.9 GXML format.
# 
# because of the faults with the repository data structure or data representation scheme, there is no way for us to recover the functional links, arcs or edges, so for this reason, the output of this program (the gxml) does not include any arcs connecting different components together.

# this has been modified to fit fenn's needs on 2009-06-10.

use XML::Simple;
use Data::Dumper;


print "\$#ARGV is: $#ARGV\n";
$numArgs = $#ARGV+1;
if ($numArgs <= 1) {
	print "\n\nproper usage (you passed $numArgs arguments)\n\n";
	print "./repo-add-dimensions.pl example.repo example.out.repo fennfile.fennpo\n\n";
	exit;
}

foreach $myArg (@ARGV) {
	print $myArg . "\n";
}

$xml = new XML::Simple(ForceArray => 1); #KeepRoot => 1); # poor attempt to get things working better. FIXME
$data = $xml->XMLin($ARGV[0], forcearray => 1); # set ARGV0 to something like: "/home/bryan/lab/summer2009/something.repo"
# used to be $data->{System} (and in one other place in this file)
# where's my repository?
foreach $system ((@{$data->>{System}})) { # take the <System> element from the XML file (it's in a hashref variable)
	foreach $artifact ((@{$system->{Artifact}})) {
		$name = $artifact->{ArtifactName};
		print "$name\n";
	}
}

# DEBUG
# the following will print the entire hashref. good for quick debugging.
# print "XML => " . Dumper($data);

# get the input information from fennfile.fenpo
$fennfile = $ARGV[2];
open(FENNFILE, "<$ARGV[2]");
@lines = <FENNFILE>;
close(FENNFILE);

$thehash = {};
foreach my $line (@lines) {
	@parts = split(/\;/, $line);
	$thehash{$parts[0]} = $parts[1];
}

# <Parameters ParameterDimension="length" ParameterUnits="inches" ParameterValue="16.9" />
# http://www.perlmonks.org/?node_id=253934

foreach $system ((@{$data->{System}})) { # take the <System> element from the XML file (it's in a hashref variable)
	foreach $artifact ((@{$system->{Artifact}})) {
		$name = $artifact->{ArtifactName};
		#print "currently at name: $name\n";
		if($thehash{$name}) {
			#print "it is in the hash.\n";
			$thevalues = $thehash{$name};
			print "dimensions: $thevalues\n";
			# Now please parse the dimensions.
			@dimensions = split(/ /, $thevalues);
			foreach my $dimension (@dimensions) {
				$type = substr($dimension,0,1);
				print "dimension of type $type\n";
				$dimvalue = substr($dimension,1);
				chomp($dimvalue);
				print "the value of this dimension is $dimvalue\n";
				$fullexpression = "height";
				if($type eq "H") { $fullexpression = "height"; }
				if($type eq "L") { $fullexpression = "length"; }
				if($type eq "T") { $fullexpression = "thickness"; }
				if($type eq "W") { $fullexpression = "width"; }
				if($type eq "D") { $fullexpression = "diameter"; }
				#push(, [{'ParameterUnits' = "supergrams", 'ParameterDimension' = 'supermass', 'ParameterValue' = '1444'}]);
push @{ $artifact->{Parameters} }, { ParameterDimension => $fullexpression, ParameterUnits => 'inches', ParameterValue => $dimvalue };
				print Dumper($artifact);
			}
		}
	}
}

open(OUTFILE, ">$ARGV[1]");
print OUTFILE XMLout($data);
close(OUTFILE);

# the file output is wrong. RepositorySystem needs to be sent out.
# so you could open up the file and replace <opt> and </opt> with RepositorySystem. but that's lame.

exit();






















# print out a list of what will one day become nodes in the gxml file.

open(FWRI, ">$ARGV[1]");

print FWRI "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<designGraph xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\n<name>$ARGV[0]</name>\n<globalLables />\n<globalVariables />\n<nodes>\n";

foreach $system ((@{$data->{System}})) { # take the <System> element from the XML file (it's in a hashref variable)
	foreach $artifact ((@{$system->{Artifact}})) { # now take the <Artifact> element from the XML file
		$quantity = $artifact->{ArtifactQty};
		# we're doing this so that we can output multiple nodes if there are indeed that many nodes of that type within the graph or the original product
		for($i = 0; $i < $quantity; $i++) {
			$color = $artifact->{Color}->[0]->{ColorName};; #[0];
			print "THE COLOR IS: $color\n";
			$colorname = $color;
			$newcolor = "HotPink";
			if($colorname eq "black") {$newcolor = "Black"; }
			if($colorname eq "blue ") { $newcolor = "Blue"; }
			if($colorname eq "bright blue") { $newcolor = "LightBlue"; }
			if($colorname eq "bright cyan") { $newcolor = "LightCyan"; }
			if($colorname eq "bright green") { $newcolor = "LightGreen"; }
			if($colorname eq "bright magenta") { $newcolor = ""; }
			if($colorname eq "bright red") { $newcolor = "Pink"; }
			if($colorname eq "brown") { $newcolor = "Brown"; }
			if($colorname eq "clear") { $newcolor = "Tan"; }
			if($colorname eq "cyan") { $newcolor = "Cyan"; }
			if($colorname eq "gray") { $newcolor = "Gray"; }
			if($colorname eq "green") { $newcolor = "Green"; }
			if($colorname eq "light gray") { $newcolor = "LightGray"; }
			if($colorname eq "magenta") { $newcolor = "Magenta"; }
			if($colorname eq "red") { $newcolor = "Red"; }
			if($colorname eq "white") { $newcolor = "White"; }
			if($colorname eq "yellow") {$newcolor = "Yellow"; }
			print "The new color is $newcolor.\n";

			print FWRI "<node>\n"; # print to the output file
			$name = $artifact->{ArtifactName}; # get the artifact name
			$name =~ s/ /\_/g;
			print "node name: $name\n"; # tell me what I'm doing
			print FWRI "<name>$name</name>\n"; # print to the output file
			print FWRI "<localLabels />\n<localVariables />\n<shapekey>largeCircleNode.$newcolor.30.30</shapekey>\n<screenX>0</screenX>\n<screenY>0</screenY>\n";
			$xmlout = XMLout($artifact);
			print "the xml is: $xmlout\n\n";
			print FWRI $xmlout; # is this cheating?
			print FWRI "</node>\n";
		}
	}
}

print FWRI "</nodes>\n<arcs />\n</designGraph>";

close(FWRI);


print "\n\n\nscript has naturally finished without error.\n\n";





## some old code placed here for reference
# foreach $system ((@{$data->{System}})) {
# 			foreach $artifact ((@{$system->{Artifact}})) {
# 				foreach $ArtifactFile ((@{$artifact->{ArtifactFile}})) {
# 					$ArtifactFileType = $ArtifactFile->{ArtifactFileType};
# 					$ArtifactFileExtension = $ArtifactFile->{ArtifactFileExtension};
# 					print $ArtifactFile->{text}, ", ", $ArtifactFileExtension, "\n";
# 					$name = $ArtifactFile->{text};
# 					#open(WRITER,">2008-10-13_newrepo/$file/index.txt");
# 					#print WRITER $ArtifactFile->{text}, ", ", $ArtifactFileExtension, "\n";
# 					# Let's test this a bit.
# 					#foreach $internals ((@{data->{roomba5-FILE}})) {
# 					#	print $internals->{text};
# 					#}
# 					#->{text}, "\n";
# 				}
# 				foreach $ArtifactImage ((@{$artifact->{ArtifactImage}})) {
# 					print $ArtifactImage->{text}, "\n";
# 					#print WRITER $ArtifactImage->{text}, "\n";
# 				}
# 			}
# 		}