aboutsummaryrefslogtreecommitdiffstats
path: root/examples/historical/clients/flatify.pl
diff options
context:
space:
mode:
authorJoachim Tingvold <joachim@tingvold.com>2016-03-25 15:23:08 +0100
committerJoachim Tingvold <joachim@tingvold.com>2016-03-25 15:23:08 +0100
commit519bae0f07f38bd82257c61a924085f64ad360cc (patch)
treed249ad5957cc3698db40df972c5a60d37679abea /examples/historical/clients/flatify.pl
parent14dbbc1451b4d5ea99e1937020e4fc79fe7ba1a7 (diff)
Moved old, unused files.
Diffstat (limited to 'examples/historical/clients/flatify.pl')
-rwxr-xr-xexamples/historical/clients/flatify.pl21
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/historical/clients/flatify.pl b/examples/historical/clients/flatify.pl
new file mode 100755
index 0000000..f2aa18a
--- /dev/null
+++ b/examples/historical/clients/flatify.pl
@@ -0,0 +1,21 @@
+#! /usr/bin/perl
+
+# Make the given switch into a D-Link placement-wise.
+
+use strict;
+use warnings;
+use lib '../include';
+use nms;
+
+my $dbh = nms::db_connect();
+my $q = $dbh->prepare('SELECT switch,placement FROM switches NATURAL JOIN placements WHERE sysname LIKE ?');
+$q->execute('%'.$ARGV[0].'%');
+
+while (my $ref = $q->fetchrow_hashref) {
+ $ref->{'placement'} =~ /\((\d+),(\d+)\),\((\d+),(\d+)\)/ or die;
+ my ($x1,$y1,$x2,$y2) = ($1, $2, $3, $4);
+ my $placement = sprintf "(%d,%d),(%d,%d)", $x2 - 100, $y2 - 16, $x2, $y2;
+ $dbh->do("UPDATE placements SET placement=? WHERE switch=?",
+ undef, $placement, $ref->{'switch'});
+ last; # Take only one.
+}