Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
18925fcd
Commit
18925fcd
authored
13 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
readOnly -> version 1.01
parent
5d6bbd28
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Common/onelab.h
+10
-4
10 additions, 4 deletions
Common/onelab.h
with
10 additions
and
4 deletions
Common/onelab.h
+
10
−
4
View file @
18925fcd
...
@@ -57,6 +57,8 @@ namespace onelab{
...
@@ -57,6 +57,8 @@ namespace onelab{
bool
_changed
;
bool
_changed
;
// should the parameter be visible in the interface?
// should the parameter be visible in the interface?
bool
_visible
;
bool
_visible
;
// sould the paramete be "read-only" (not settable by the user)
bool
_readOnly
;
protected:
protected:
// optional additional attributes
// optional additional attributes
std
::
map
<
std
::
string
,
std
::
string
>
_attributes
;
std
::
map
<
std
::
string
,
std
::
string
>
_attributes
;
...
@@ -64,13 +66,13 @@ namespace onelab{
...
@@ -64,13 +66,13 @@ namespace onelab{
parameter
(
const
std
::
string
&
name
=
""
,
const
std
::
string
&
label
=
""
,
parameter
(
const
std
::
string
&
name
=
""
,
const
std
::
string
&
label
=
""
,
const
std
::
string
&
help
=
""
)
const
std
::
string
&
help
=
""
)
:
_name
(
name
),
_label
(
label
),
_help
(
help
),
_changed
(
true
),
:
_name
(
name
),
_label
(
label
),
_help
(
help
),
_changed
(
true
),
_visible
(
true
)
{}
_visible
(
true
)
,
_readOnly
(
false
)
{}
void
setName
(
const
std
::
string
&
name
){
_name
=
name
;
}
void
setName
(
const
std
::
string
&
name
){
_name
=
name
;
}
void
setLabel
(
const
std
::
string
&
label
){
_label
=
label
;
}
void
setLabel
(
const
std
::
string
&
label
){
_label
=
label
;
}
void
setShortHelp
(
const
std
::
string
&
label
){
_label
=
label
;
}
// deprecated
void
setHelp
(
const
std
::
string
&
help
){
_help
=
help
;
}
void
setHelp
(
const
std
::
string
&
help
){
_help
=
help
;
}
void
setChanged
(
bool
changed
){
_changed
=
changed
;
}
void
setChanged
(
bool
changed
){
_changed
=
changed
;
}
void
setVisible
(
bool
visible
){
_visible
=
visible
;
}
void
setVisible
(
bool
visible
){
_visible
=
visible
;
}
void
setReadOnly
(
bool
readOnly
){
_readOnly
=
readOnly
;
}
void
setAttribute
(
const
std
::
string
&
key
,
const
std
::
string
&
value
)
void
setAttribute
(
const
std
::
string
&
key
,
const
std
::
string
&
value
)
{
{
_attributes
[
key
]
=
value
;
_attributes
[
key
]
=
value
;
...
@@ -92,7 +94,6 @@ namespace onelab{
...
@@ -92,7 +94,6 @@ namespace onelab{
virtual
std
::
string
getType
()
const
=
0
;
virtual
std
::
string
getType
()
const
=
0
;
const
std
::
string
&
getName
()
const
{
return
_name
;
}
const
std
::
string
&
getName
()
const
{
return
_name
;
}
const
std
::
string
&
getLabel
()
const
{
return
_label
;
}
const
std
::
string
&
getLabel
()
const
{
return
_label
;
}
const
std
::
string
&
getShortHelp
()
const
{
return
_label
;
}
// deprecated
const
std
::
string
&
getHelp
()
const
{
return
_help
;
}
const
std
::
string
&
getHelp
()
const
{
return
_help
;
}
std
::
string
getShortName
()
const
std
::
string
getShortName
()
const
{
{
...
@@ -109,6 +110,7 @@ namespace onelab{
...
@@ -109,6 +110,7 @@ namespace onelab{
}
}
bool
getChanged
()
const
{
return
_changed
;
}
bool
getChanged
()
const
{
return
_changed
;
}
bool
getVisible
()
const
{
return
_visible
;
}
bool
getVisible
()
const
{
return
_visible
;
}
bool
getReadOnly
()
const
{
return
_readOnly
;
}
std
::
string
getAttribute
(
const
std
::
string
&
key
)
const
std
::
string
getAttribute
(
const
std
::
string
&
key
)
const
{
{
std
::
map
<
std
::
string
,
std
::
string
>::
const_iterator
it
=
_attributes
.
find
(
key
);
std
::
map
<
std
::
string
,
std
::
string
>::
const_iterator
it
=
_attributes
.
find
(
key
);
...
@@ -122,7 +124,7 @@ namespace onelab{
...
@@ -122,7 +124,7 @@ namespace onelab{
const
std
::
set
<
std
::
string
>
&
getClients
()
const
{
return
_clients
;
}
const
std
::
set
<
std
::
string
>
&
getClients
()
const
{
return
_clients
;
}
static
char
charSep
()
{
return
'\0'
;
}
static
char
charSep
()
{
return
'\0'
;
}
static
double
maxNumber
()
{
return
1e200
;
}
static
double
maxNumber
()
{
return
1e200
;
}
static
std
::
string
version
()
{
return
"1.0"
;
}
static
std
::
string
version
()
{
return
"1.0
1
"
;
}
static
std
::
string
getNextToken
(
const
std
::
string
&
msg
,
static
std
::
string
getNextToken
(
const
std
::
string
&
msg
,
std
::
string
::
size_type
&
first
,
std
::
string
::
size_type
&
first
,
char
separator
=
charSep
())
char
separator
=
charSep
())
...
@@ -157,6 +159,7 @@ namespace onelab{
...
@@ -157,6 +159,7 @@ namespace onelab{
<<
sanitize
(
getLabel
())
<<
charSep
()
<<
sanitize
(
getLabel
())
<<
charSep
()
<<
sanitize
(
getHelp
())
<<
charSep
()
<<
sanitize
(
getHelp
())
<<
charSep
()
<<
(
getVisible
()
?
1
:
0
)
<<
charSep
()
<<
(
getVisible
()
?
1
:
0
)
<<
charSep
()
<<
(
getReadOnly
()
?
1
:
0
)
<<
charSep
()
<<
_attributes
.
size
()
<<
charSep
();
<<
_attributes
.
size
()
<<
charSep
();
for
(
std
::
map
<
std
::
string
,
std
::
string
>::
const_iterator
it
=
_attributes
.
begin
();
for
(
std
::
map
<
std
::
string
,
std
::
string
>::
const_iterator
it
=
_attributes
.
begin
();
it
!=
_attributes
.
end
();
it
++
)
it
!=
_attributes
.
end
();
it
++
)
...
@@ -177,6 +180,7 @@ namespace onelab{
...
@@ -177,6 +180,7 @@ namespace onelab{
setLabel
(
getNextToken
(
msg
,
pos
));
setLabel
(
getNextToken
(
msg
,
pos
));
setHelp
(
getNextToken
(
msg
,
pos
));
setHelp
(
getNextToken
(
msg
,
pos
));
setVisible
(
atoi
(
getNextToken
(
msg
,
pos
).
c_str
()));
setVisible
(
atoi
(
getNextToken
(
msg
,
pos
).
c_str
()));
setReadOnly
(
atoi
(
getNextToken
(
msg
,
pos
).
c_str
()));
int
numAttributes
=
atoi
(
getNextToken
(
msg
,
pos
).
c_str
());
int
numAttributes
=
atoi
(
getNextToken
(
msg
,
pos
).
c_str
());
for
(
int
i
=
0
;
i
<
numAttributes
;
i
++
){
for
(
int
i
=
0
;
i
<
numAttributes
;
i
++
){
std
::
string
key
(
getNextToken
(
msg
,
pos
));
std
::
string
key
(
getNextToken
(
msg
,
pos
));
...
@@ -236,6 +240,7 @@ namespace onelab{
...
@@ -236,6 +240,7 @@ namespace onelab{
setLabel
(
p
.
getLabel
());
setLabel
(
p
.
getLabel
());
setHelp
(
p
.
getHelp
());
setHelp
(
p
.
getHelp
());
setVisible
(
p
.
getVisible
());
setVisible
(
p
.
getVisible
());
setReadOnly
(
p
.
getReadOnly
());
setAttributes
(
p
.
getAttributes
());
setAttributes
(
p
.
getAttributes
());
if
(
p
.
getValue
()
!=
getValue
()){
if
(
p
.
getValue
()
!=
getValue
()){
setValue
(
p
.
getValue
());
setValue
(
p
.
getValue
());
...
@@ -298,6 +303,7 @@ namespace onelab{
...
@@ -298,6 +303,7 @@ namespace onelab{
setLabel
(
p
.
getLabel
());
setLabel
(
p
.
getLabel
());
setHelp
(
p
.
getHelp
());
setHelp
(
p
.
getHelp
());
setVisible
(
p
.
getVisible
());
setVisible
(
p
.
getVisible
());
setReadOnly
(
p
.
getReadOnly
());
setAttributes
(
p
.
getAttributes
());
setAttributes
(
p
.
getAttributes
());
if
(
p
.
getValue
()
!=
getValue
()){
if
(
p
.
getValue
()
!=
getValue
()){
setValue
(
p
.
getValue
());
setValue
(
p
.
getValue
());
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment