Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
924e1dc7
Commit
924e1dc7
authored
Mar 16, 2016
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade procedure update
parent
cf044ba9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
312 additions
and
80 deletions
+312
-80
src/doc/man/en_us/upgrade54.odt
src/doc/man/en_us/upgrade54.odt
+0
-0
src/doc/man/en_us/upgrade54.pdf
src/doc/man/en_us/upgrade54.pdf
+0
-0
src/exp/com/src/os_linux/upgrade.sh
src/exp/com/src/os_linux/upgrade.sh
+103
-32
src/exp/com/src/os_linux/upgrade_pb.pwr_com
src/exp/com/src/os_linux/upgrade_pb.pwr_com
+209
-48
No files found.
src/doc/man/en_us/upgrade54.odt
View file @
924e1dc7
No preview for this file type
src/doc/man/en_us/upgrade54.pdf
View file @
924e1dc7
No preview for this file type
src/exp/com/src/os_linux/upgrade.sh
View file @
924e1dc7
...
...
@@ -140,7 +140,7 @@ reload_classvolumes()
return
fi
if
wb_cmd create snapshot/file
=
\"
$file
\"
/out
=
\"
$pwrp_load
/
$volumelow
.dbs
\"
if
wb_cmd
-q
create snapshot/file
=
\"
$file
\"
/out
=
\"
$pwrp_load
/
$volumelow
.dbs
\"
then
reload_status
=
$reload__success
else
...
...
@@ -289,12 +289,48 @@ reload_cnvobjects()
reload_continue
"Pass convert objects in loaded database"
for
cdb
in
$databases
;
do
wb_cmd
-v
$cdb
@
$pwr_exe
/upgrade_pb.pwr_com
echo
"-- Convert volume
$cdb
"
wb_cmd
-q
-v
$cdb
@
$pwr_exe
/upgrade_pb.pwr_com
done
reload_status
=
$reload__success
}
reload_updateclasses
()
{
reload_checkpass
"updateclasses"
$start_pass
if
[
$pass_status
-ne
$pass__execute
]
;
then
reload_status
=
$reload__success
return
fi
reload_continue
"Pass update classes"
for
cdb
in
$databases
;
do
echo
"-- Update classes in volume
$cdb
"
wb_cmd
-q
-v
$cdb
update classes
done
reload_status
=
$reload__success
}
reload_savedirectory
()
{
reload_checkpass
"savedirectory"
$start_pass
if
[
$pass_status
-ne
$pass__execute
]
;
then
reload_status
=
$reload__success
return
fi
reload_continue
"Pass save directory volume"
wb_cmd
-q
-v
directory save
reload_status
=
$reload__success
}
reload_compile
()
{
reload_checkpass
"compile"
$start_pass
...
...
@@ -305,14 +341,8 @@ reload_compile()
reload_continue
"Pass compile plcprograms"
list
=
`
eval ls
-1d
$pwrp_db
/
*
.db
`
for
file
in
$list
;
do
file
=
${
file
##/*/
}
file
=
${
file
%%.*
}
if
[
$file
!=
"directory"
]
&&
[
$file
!=
"rt_eventlog"
]
;
then
wb_cmd
-v
$file
compile /all
fi
for
cdb
in
$databases
;
do
wb_cmd
-q
-v
$cdb
compile /all
done
# wb_cmd compile /all
...
...
@@ -345,18 +375,8 @@ reload_createload()
reload_continue
"Pass create loadfiles"
# Remove all old loadfiles
echo
"-- Removing old loadfiles"
rm
$pwrp_load
/ld_vol
*
.dat
list
=
`
eval ls
-1d
$pwrp_db
/
*
.db
`
for
file
in
$list
;
do
file
=
${
file
##/*/
}
file
=
${
file
%%.*
}
if
[
$file
!=
"directory"
]
&&
[
$file
!=
"rt_eventlog"
]
;
then
wb_cmd
-v
$file
create load/volume
=
$file
fi
for
cdb
in
$databases
;
do
wb_cmd
-q
-v
$cdb
create load/volume
=
$cdb
done
# wb_cmd create load/all
...
...
@@ -378,7 +398,56 @@ reload_createboot()
reload_continue
"Pass create bootfiles"
echo
"-- Creating bootfiles for all nodes"
wb_cmd create boot/all
wb_cmd
-q
create boot/all
reload_status
=
$reload__success
}
reload_buildnodes
()
{
reload_checkpass
"buildnodes"
$start_pass
if
[
$pass_status
-ne
$pass__execute
]
;
then
reload_status
=
$reload__success
return
fi
reload_continue
"Pass build nodes"
echo
"-- Build all nodes"
volumes
=
`
eval cat
$pwrp_db
/pwrp_cnf_bootlist.dat |
awk
'{ print $1 }'
`
for
volume
in
$volumes
;
do
vclass
=
`
eval grep
\"
^
$volume
\"
$pwrp_db
/pwrp_cnf_volumelist.dat |
awk
'{ print $3 }'
`
if
[
"
$vclass
"
==
"RootVolume"
]
;
then
nodes
=
`
eval grep
\"
^
$volume
\"
$pwrp_db
/pwrp_cnf_bootlist.dat |
awk
'{ print $3 }'
`
for
node
in
$nodes
;
do
echo
--
Building node
$node
wb_cmd
-q
-v
$volume
build node /name
=
$node
done
fi
done
reload_status
=
$reload__success
}
reload_createpackage
()
{
reload_checkpass
"createpackage"
$start_pass
if
[
$pass_status
-ne
$pass__execute
]
;
then
reload_status
=
$reload__success
return
fi
reload_continue
"Pass create packages"
echo
"-- Creating distribution packages for all nodes"
nodes
=
`
eval grep
"^node "
$pwrp_db
/pwrp_cnf_distribute.dat |
awk
'{ print $2 }'
`
for
node
in
$nodes
;
do
wb_cmd
-q
distribute /node
=
$node
/package
done
reload_status
=
$reload__success
}
...
...
@@ -488,7 +557,7 @@ reload_directorystructure()
reload_exit
()
{
source
pwrp_env.sh setdb
#
source pwrp_env.sh setdb
exit
$reload_status
}
...
...
@@ -559,17 +628,19 @@ usage()
{
cat
<<
EOF
upgrade.sh Upgrade from V5.
2.0 to V5.3.1
upgrade.sh Upgrade from V5.
3.1 to V5.4.0
Pass
savedirectory Save directory volume.
classvolumes Create loadfiles for classvolumes.
renamedb Rename old databa
ses.
loaddb Load dumpfile
s.
updateclasses Update clas
ses.
cnvobjects Create OpPlaceWeb object
s.
compile Compile all plcprograms in the database
createload Create new loadfiles.
createboot Create bootfiles for all nodes in the project.
buildnodes Build all nodes in the project.
createpackage Create distribution packages for all nodes in the project.
EOF
}
...
...
@@ -602,19 +673,19 @@ databases=""
for
db
in
$tmp
;
do
db
=
${
db
##/*/
}
db
=
"
${
db
%.*
}
"
if
[
"
$db
"
!=
"rt_eventlog"
]
;
then
if
[
"
$db
"
!=
"rt_eventlog"
]
&&
[
"
${
db
:0:6
}
"
!=
"pwrp__"
]
;
then
databases
=
"
$databases
$db
"
fi
done
passes
=
"
classvolumes renamedb loaddb compile createload createboot
"
passes
=
"
savedirectory classvolumes updateclasses cnvobjects compile createload buildnodes createpackage
"
#echo "Pass: $passes"
echo
""
echo
-n
"Enter start pass [
classvolumes
] > "
echo
-n
"Enter start pass [
savedirectory
] > "
read
start_pass
if
[
-z
$start_pass
]
;
then
start_pass
=
"
classvolumes
"
start_pass
=
"
savedirectory
"
fi
for
cpass
in
$passes
;
do
...
...
src/exp/com/src/os_linux/upgrade_pb.pwr_com
View file @
924e1dc7
!** Invisible: Script for
moving DSup to DSupComp objects during upgrading from V5.0 to V5.1.0
!** Invisible: Script for
to create OpPlaceWeb from WebHandler objects during upgrading from V5.3 to V5.4
!
# Proview Open Source Process Control.
# Copyright (C) 2005-2016 SSAB EMEA AB.
...
...
@@ -35,73 +35,234 @@
# General Public License plus this exception.
!
!
! Script
for set Attribute in DSupComp objects during upgrading from V5.0 to V5.1.0
,
! Script
to create OpPlaceWeb objects during upgrading from V5.3 to V5.4
,
!
! Find all
DSupComp objects and set Attribute to parent attribute
.
! Find all
WebHandler objects and create an OpPlaceWeb
.
!
main()
string name;
string oname;
string o
p
name;
string aname;
string attr;
string aopname;
string attrstr;
int attrint;
string child;
string prevchild;
string class;
string nchild;
string nclass;
int idx;
int idx0 = 0;
int sts;
int len;
name = GetClassListAttrRef("DSupComp");
verify(0);
name = GetClassListAttrRef("WebHandler");
while ( name != "")
idx = strrchr( name, ".");
idx -= 1;
oname = extract( 1, idx, name);
len = strlen( oname);
idx = len - 7;
if ( len > 0)
attr = extract( idx, len, oname);
if ( attr == ".LimitHH")
idx -= 1;
oname = extract( 1, idx, oname);
endif
if ( attr == ".LimitLL")
idx -= 1;
oname = extract( 1, idx, oname);
endif
idx = strrchr( name, "-") - 1;
opname = extract( 1, idx, name);
opname = opname + "-OpWeb";
printf( "--\n");
printf( "-- Creating OpPlaceWeb object %s\n", opname);
printf( "--\n");
sts = CreateObject( "OpWeb", "OpPlaceWeb", name, 3);
if ( EVEN(sts))
printf( "** Unable to create object %s, sts %d\n", opname, sts);
quit
endif
len = strlen( oname);
idx = len - 6;
if ( len > 0)
attr = extract( idx, len, oname);
aname = name + ".FileName";
aopname = opname + ".FileName";
attrstr = GetAttribute( aname, sts);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aname);
endif
sts = SetAttribute( aopname, attrstr);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
if ( attr == ".LimitH")
idx -= 1;
oname = extract( 1, idx, oname);
endif
if ( attr == ".LimitL")
idx -= 1;
oname = extract( 1, idx, oname);
endif
aname = name + ".Title";
aopname = opname + ".Title";
attrstr = GetAttribute( aname, sts);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aname);
endif
sts = SetAttribute( aopname, attrstr);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
aname = name + ".Attribute";
if ( oname == "")
printf( "** Not set %s\n", aname);
else
sts = SetAttribute( aname, oname);
if ( !(sts & 1))
printf( "** Unable to set %s sts %d\n", aname, sts);
else
printf( "-- Set %s = %s\n", aname, oname);
endif
aname = name + ".Text";
aopname = opname + ".Text";
attrstr = GetAttribute( aname, sts);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aname);
endif
sts = SetAttribute( aopname, attrstr);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
name = GetNextAttrRef("DSupComp", name);
endwhile
aname = name + ".EnableLanguage";
aopname = opname + ".EnableLanguage";
attrint = GetAttribute( aname, sts);
sts = SetAttribute( aopname, attrint);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
aname = name + ".EnableLogin";
aopname = opname + ".EnableLogin";
attrint = GetAttribute( aname, sts);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aname);
endif
sts = SetAttribute( aopname, attrint);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
aname = name + ".EnableAlarmList";
aopname = opname + ".EnableAlarmList";
attrint = GetAttribute( aname, sts);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aname);
endif
sts = SetAttribute( aopname, attrint);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
aname = name + ".EnableEventLog";
aopname = opname + ".EnableEventLog";
attrint = GetAttribute( aname, sts);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aname);
endif
sts = SetAttribute( aopname, attrint);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
aname = name + ".DisableHelp";
aopname = opname + ".DisableHelp";
attrint = GetAttribute( aname, sts);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aname);
endif
sts = SetAttribute( aopname, attrint);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
aname = name + ".DisableProview";
aopname = opname + ".DisableProview";
attrint = GetAttribute( aname, sts);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aname);
endif
sts = SetAttribute( aopname, attrint);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
aname = name + ".Language";
aopname = opname + ".Language";
attrint = GetAttribute( aname, sts);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aname);
endif
sts = SetAttribute( aopname, attrint);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
aname = name + ".StyleSheet";
aopname = opname + ".StyleSheet";
attrstr = GetAttribute( aname, sts);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aname);
endif
sts = SetAttribute( aopname, attrstr);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
aname = name + ".StartURL";
aopname = opname + ".StartURL";
attrstr = GetAttribute( aname, sts);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aname);
endif
sts = SetAttribute( aopname, attrstr);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
aname = name + ".LoadArchives";
aopname = opname + ".LoadArchives";
attrstr = GetAttribute( aname, sts);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aname);
endif
sts = SetAttribute( aopname, attrstr);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
aname = name + ".PwrHost";
aopname = opname + ".PwrHost";
attrstr = GetAttribute( aname, sts);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aname);
endif
sts = SetAttribute( aopname, attrstr);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
aname = name + ".AppletSignature";
aopname = opname + ".AppletSignature";
attrstr = GetAttribute( aname, sts);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aname);
endif
sts = SetAttribute( aopname, attrstr);
if ( EVEN(sts))
printf( "Attribute error: %s\n", aopname);
endif
# Move WebGraph, WebLink, AppGraph and AppLink objects
child = GetChild( name);
prevchild = "";
while ( child != "")
class = GetObjectClass( child);
if ( class == "WebGraph" || class == "WebLink" || class == "AppGraph" || class == "AppLink")
MoveObject( child, opname, 2);
child = prevchild;
endif
if ( class == "$NodeHier")
nchild = GetChild( child);
if ( nchild != "")
nclass = GetObjectClass( nchild);
if ( nclass == "WebGraph" || nclass == "WebLink" || nclass == "AppGraph" || nclass == "AppLink")
MoveObject( child, opname, 2);
child = prevchild;
endif
endif
endif
prevchild = child;
if ( child == "")
child = GetChild( name);
else
child = GetNextSibling( child);
endif
endwhile
name = GetNextAttrRef( "WebHandler", name);
endwhile
save
endmain
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment