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
a17015d2
Commit
a17015d2
authored
Nov 21, 2019
by
Claes Sjöfors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wb_print_wbl temporarily reverted due to problems with the classcache
parent
85c8328f
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
796 additions
and
778 deletions
+796
-778
wb/lib/wb/src/wb_print_wbl.cpp
wb/lib/wb/src/wb_print_wbl.cpp
+707
-701
wb/lib/wb/src/wb_print_wbl.h
wb/lib/wb/src/wb_print_wbl.h
+89
-77
No files found.
wb/lib/wb/src/wb_print_wbl.cpp
View file @
a17015d2
This diff is collapsed.
Click to expand it.
wb/lib/wb/src/wb_print_wbl.h
View file @
a17015d2
/*
* Proview
R
Open Source Process Control.
* Copyright (C) 2005-201
9
SSAB EMEA AB.
* Proview Open Source Process Control.
* Copyright (C) 2005-201
7
SSAB EMEA AB.
*
* This file is part of Proview
R
.
* This file is part of Proview.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
...
...
@@ -15,24 +15,24 @@
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Proview
R
. If not, see <http://www.gnu.org/licenses/>
* along with Proview. If not, see <http://www.gnu.org/licenses/>
*
* Linking Proview
R
statically or dynamically with other modules is
* making a combined work based on Proview
R. Thus, the terms and
* Linking Proview statically or dynamically with other modules is
* making a combined work based on Proview
. Thus, the terms and
* conditions of the GNU General Public License cover the whole
* combination.
*
* In addition, as a special exception, the copyright holders of
* Proview
R
give you permission to, from the build function in the
* Proview
R Configurator, combine ProviewR
with modules generated by the
* Proview
R
PLC Editor to a PLC program, regardless of the license
* Proview give you permission to, from the build function in the
* Proview
Configurator, combine Proview
with modules generated by the
* Proview PLC Editor to a PLC program, regardless of the license
* terms of these modules. You may copy and distribute the resulting
* combined work under the terms of your choice, provided that every
* copy of the combined work is accompanied by a complete copy of
* the source code of Proview
R (the version used to produce the
* the source code of Proview
(the version used to produce the
* combined work), being distributed under the terms of the GNU
* General Public License plus this exception.
*/
*
*
/
/**
* @file wb_print_wbl.h
...
...
@@ -44,10 +44,11 @@
#ifndef wb_print_wbl_h
#define wb_print_wbl_h
#include <ostream>
#include <iostream>
#include "pwr_class.h"
#include "wb_ldh.h"
#include "co_tree.h"
using
namespace
std
;
class
wb_adef
;
class
wb_attribute
;
...
...
@@ -55,10 +56,11 @@ class wb_cdef;
class
wb_object
;
class
wb_volume
;
class
wb_print_wbl
{
class
wb_print_wbl
{
protected:
int
m_errCnt
;
int
m_lineCnt
;
bool
m_idxFlag
;
bool
m_noFoCodeFlag
;
bool
m_timeFlag
;
...
...
@@ -67,56 +69,66 @@ protected:
char
m_indBuf
[
256
];
bool
m_keepName
;
bool
m_isTemplateObject
;
std
::
ostream
&
m_os
;
tree_sTable
*
m_body_cache
;
std
::
ostream
&
indent
(
int
levelIncr
=
0
);
void
printBody
(
wb_volume
&
vol
,
pwr_tOid
oid
,
pwr_tOid
toid
,
pwr_tCid
cid
,
pwr_eBix
bix
);
bool
printValue
(
wb_volume
&
v
,
pwr_eType
type
,
unsigned
int
flags
,
void
*
val
,
int
varSize
,
char
**
svalp
);
void
printBuffer
(
wb_volume
&
vol
,
ldh_sParDef
*
par_bd
,
char
*
body
);
void
printClass
(
wb_volume
&
vol
,
ldh_sParDef
*
par_bd
,
char
*
body
,
char
*
tbody
,
char
*
par_path
);
void
printText
(
wb_volume
&
v
,
const
char
*
aname
,
const
char
*
text
,
int
varSize
);
pwr_tStatus
getBody
(
wb_volume
&
vol
,
pwr_tCid
cid
,
const
char
*
bname
,
int
tsize
,
ldh_sParDef
**
bdef
,
int
*
rows
,
char
**
tbody
);
void
bodyCacheFree
();
int
attrCmp
(
char
*
a1
,
char
*
a2
,
int
size
,
pwr_eType
type
);
bool
isFoCodeObject
(
wb_volume
&
v
,
wb_object
&
o
);
ostream
&
m_os
;
ostream
&
indent
(
int
levelIncr
=
0
);
void
printAttribute
(
wb_volume
&
v
,
wb_attribute
&
attr
,
wb_attribute
&
tattr
,
///< template attribute
wb_adef
&
adef
,
int
force
);
void
printBody
(
wb_volume
&
v
,
wb_object
&
o
,
wb_object
&
templ
,
wb_cdef
&
cdef
,
pwr_eBix
bix
);
void
printBuffer
(
wb_volume
&
v
,
wb_attribute
&
attr
,
wb_attribute
&
tattr
,
///< template attribute
wb_adef
&
adef
);
void
printClass
(
wb_volume
&
v
,
wb_attribute
&
attr
,
wb_attribute
&
tattr
,
///< template attribute
wb_adef
&
adef
);
void
printParameter
(
wb_volume
&
v
,
wb_attribute
&
attr
,
wb_attribute
&
tattr
,
///< template attribute
wb_adef
&
adef
);
void
printText
(
wb_volume
&
v
,
wb_adef
&
adef
,
const
char
*
text
,
int
varSize
);
bool
printValue
(
wb_volume
&
v
,
wb_adef
&
adef
,
void
*
val
,
int
varSize
,
char
**
svalp
);
bool
isFoCodeObject
(
wb_volume
&
v
,
wb_object
&
o
);
public:
wb_print_wbl
(
std
::
ostream
&
os
,
int
levelIndentation
=
2
);
wb_print_wbl
(
ostream
&
os
,
int
levelIndentation
=
2
);
~
wb_print_wbl
();
int
getErrCnt
()
const
{
return
m_errCnt
;
}
void
resetErrCnt
()
{
m_errCnt
=
0
;
}
void
keepName
()
{
m_keepName
=
true
;
}
void
noIndex
()
{
m_idxFlag
=
false
;
m_timeFlag
=
false
;
}
void
noFoCode
()
{
m_noFoCodeFlag
=
true
;
}
void
printHierarchy
(
wb_volume
&
v
,
wb_object
&
o
);
///< Prints a hierarchy
void
printObject
(
wb_volume
&
v
,
wb_object
&
o
,
bool
recursive
=
true
);
///< Prints an object
void
printVolume
(
wb_volume
&
v
,
bool
recursive
=
true
);
///< Prints the volume
int
getErrCnt
()
const
{
return
m_errCnt
;}
void
resetErrCnt
()
{
m_errCnt
=
0
;
}
void
keepName
()
{
m_keepName
=
true
;}
void
noIndex
()
{
m_idxFlag
=
false
;
m_timeFlag
=
false
;}
void
noFoCode
()
{
m_noFoCodeFlag
=
true
;}
void
printHierarchy
(
wb_volume
&
v
,
wb_object
&
o
);
//< Prints a hierarchy
void
printObject
(
wb_volume
&
v
,
wb_object
&
o
,
bool
recursive
=
true
);
//< Prints an object
void
printVolume
(
wb_volume
&
v
,
bool
recursive
=
true
);
//< Prints the volume
};
#endif
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