Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
ab8c36c0
Commit
ab8c36c0
authored
Sep 15, 2013
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #38 from albert-github/feature/code_debug
Usage of the -d opion corrected
parents
aab5e984
b0572abe
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
10 deletions
+30
-10
debug.cpp
src/debug.cpp
+3
-1
debug.h
src/debug.h
+1
-1
doxygen.cpp
src/doxygen.cpp
+26
-8
No files found.
src/debug.cpp
View file @
ab8c36c0
...
@@ -97,9 +97,11 @@ static int labelToEnumValue(const char *l)
...
@@ -97,9 +97,11 @@ static int labelToEnumValue(const char *l)
if
(
event
)
return
*
event
;
else
return
0
;
if
(
event
)
return
*
event
;
else
return
0
;
}
}
void
Debug
::
setFlag
(
const
char
*
lab
)
int
Debug
::
setFlag
(
const
char
*
lab
)
{
{
int
retVal
=
labelToEnumValue
(
lab
);
curMask
=
(
DebugMask
)(
curMask
|
labelToEnumValue
(
lab
));
curMask
=
(
DebugMask
)(
curMask
|
labelToEnumValue
(
lab
));
return
retVal
;
}
}
void
Debug
::
clearFlag
(
const
char
*
lab
)
void
Debug
::
clearFlag
(
const
char
*
lab
)
...
...
src/debug.h
View file @
ab8c36c0
...
@@ -39,7 +39,7 @@ class Debug
...
@@ -39,7 +39,7 @@ class Debug
FilterOutput
=
0x00001000
FilterOutput
=
0x00001000
};
};
static
void
print
(
DebugMask
mask
,
int
prio
,
const
char
*
fmt
,...);
static
void
print
(
DebugMask
mask
,
int
prio
,
const
char
*
fmt
,...);
static
void
setFlag
(
const
char
*
label
);
static
int
setFlag
(
const
char
*
label
);
static
void
clearFlag
(
const
char
*
label
);
static
void
clearFlag
(
const
char
*
label
);
static
bool
isFlagSet
(
DebugMask
mask
);
static
bool
isFlagSet
(
DebugMask
mask
);
static
void
setPriority
(
int
p
);
static
void
setPriority
(
int
p
);
...
...
src/doxygen.cpp
View file @
ab8c36c0
...
@@ -9784,7 +9784,6 @@ static void usage(const char *name)
...
@@ -9784,7 +9784,6 @@ static void usage(const char *name)
msg
(
" RTF: %s -e rtf extensionsFile
\n\n
"
,
name
);
msg
(
" RTF: %s -e rtf extensionsFile
\n\n
"
,
name
);
msg
(
"If -s is specified the comments of the configuration items in the config file will be omitted.
\n
"
);
msg
(
"If -s is specified the comments of the configuration items in the config file will be omitted.
\n
"
);
msg
(
"If configName is omitted `Doxyfile' will be used as a default.
\n\n
"
);
msg
(
"If configName is omitted `Doxyfile' will be used as a default.
\n\n
"
);
exit
(
1
);
}
}
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
...
@@ -9977,6 +9976,7 @@ void readConfiguration(int argc, char **argv)
...
@@ -9977,6 +9976,7 @@ void readConfiguration(int argc, char **argv)
bool
shortList
=
FALSE
;
bool
shortList
=
FALSE
;
bool
updateConfig
=
FALSE
;
bool
updateConfig
=
FALSE
;
bool
genLayout
=
FALSE
;
bool
genLayout
=
FALSE
;
int
retVal
;
while
(
optind
<
argc
&&
argv
[
optind
][
0
]
==
'-'
&&
while
(
optind
<
argc
&&
argv
[
optind
][
0
]
==
'-'
&&
(
isalpha
(
argv
[
optind
][
1
])
||
argv
[
optind
][
1
]
==
'?'
||
(
isalpha
(
argv
[
optind
][
1
])
||
argv
[
optind
][
1
]
==
'?'
||
argv
[
optind
][
1
]
==
'-'
)
argv
[
optind
][
1
]
==
'-'
)
...
@@ -10000,7 +10000,19 @@ void readConfiguration(int argc, char **argv)
...
@@ -10000,7 +10000,19 @@ void readConfiguration(int argc, char **argv)
break
;
break
;
case
'd'
:
case
'd'
:
debugLabel
=
getArg
(
argc
,
argv
,
optind
);
debugLabel
=
getArg
(
argc
,
argv
,
optind
);
Debug
::
setFlag
(
debugLabel
);
if
(
!
debugLabel
)
{
err
(
"option
\"
-d
\"
is missing debug specifier.
\n
"
);
cleanUpDoxygen
();
exit
(
1
);
}
retVal
=
Debug
::
setFlag
(
debugLabel
);
if
(
!
retVal
)
{
err
(
"option
\"
-d
\"
has unknown debug specifier:
\"
%s
\"
.
\n
"
,
debugLabel
);
cleanUpDoxygen
();
exit
(
1
);
}
break
;
break
;
case
's'
:
case
's'
:
shortList
=
TRUE
;
shortList
=
TRUE
;
...
@@ -10012,7 +10024,7 @@ void readConfiguration(int argc, char **argv)
...
@@ -10012,7 +10024,7 @@ void readConfiguration(int argc, char **argv)
formatName
=
getArg
(
argc
,
argv
,
optind
);
formatName
=
getArg
(
argc
,
argv
,
optind
);
if
(
!
formatName
)
if
(
!
formatName
)
{
{
err
(
"option
-e
is missing format specifier rtf.
\n
"
);
err
(
"option
\"
-e
\"
is missing format specifier rtf.
\n
"
);
cleanUpDoxygen
();
cleanUpDoxygen
();
exit
(
1
);
exit
(
1
);
}
}
...
@@ -10030,7 +10042,7 @@ void readConfiguration(int argc, char **argv)
...
@@ -10030,7 +10042,7 @@ void readConfiguration(int argc, char **argv)
RTFGenerator
::
writeExtensionsFile
(
f
);
RTFGenerator
::
writeExtensionsFile
(
f
);
}
}
cleanUpDoxygen
();
cleanUpDoxygen
();
exit
(
1
);
exit
(
0
);
}
}
err
(
"option
\"
-e
\"
has invalid format specifier.
\n
"
);
err
(
"option
\"
-e
\"
has invalid format specifier.
\n
"
);
cleanUpDoxygen
();
cleanUpDoxygen
();
...
@@ -10040,7 +10052,7 @@ void readConfiguration(int argc, char **argv)
...
@@ -10040,7 +10052,7 @@ void readConfiguration(int argc, char **argv)
formatName
=
getArg
(
argc
,
argv
,
optind
);
formatName
=
getArg
(
argc
,
argv
,
optind
);
if
(
!
formatName
)
if
(
!
formatName
)
{
{
err
(
"option
-w
is missing format specifier rtf, html or latex
\n
"
);
err
(
"option
\"
-w
\"
is missing format specifier rtf, html or latex
\n
"
);
cleanUpDoxygen
();
cleanUpDoxygen
();
exit
(
1
);
exit
(
1
);
}
}
...
@@ -10165,7 +10177,7 @@ void readConfiguration(int argc, char **argv)
...
@@ -10165,7 +10177,7 @@ void readConfiguration(int argc, char **argv)
}
}
else
else
{
{
err
(
"Illegal format specifier
%s: should be one of rtf, html, latex, or bst
\n
"
,
formatName
);
err
(
"Illegal format specifier
\"
%s
\"
: should be one of rtf, html or latex
\n
"
,
formatName
);
cleanUpDoxygen
();
cleanUpDoxygen
();
exit
(
1
);
exit
(
1
);
}
}
...
@@ -10182,6 +10194,7 @@ void readConfiguration(int argc, char **argv)
...
@@ -10182,6 +10194,7 @@ void readConfiguration(int argc, char **argv)
if
(
qstrcmp
(
&
argv
[
optind
][
2
],
"help"
)
==
0
)
if
(
qstrcmp
(
&
argv
[
optind
][
2
],
"help"
)
==
0
)
{
{
usage
(
argv
[
0
]);
usage
(
argv
[
0
]);
exit
(
0
);
}
}
else
if
(
qstrcmp
(
&
argv
[
optind
][
2
],
"version"
)
==
0
)
else
if
(
qstrcmp
(
&
argv
[
optind
][
2
],
"version"
)
==
0
)
{
{
...
@@ -10191,8 +10204,9 @@ void readConfiguration(int argc, char **argv)
...
@@ -10191,8 +10204,9 @@ void readConfiguration(int argc, char **argv)
}
}
else
else
{
{
err
(
"Unknown option
-%s
\n
"
,
&
argv
[
optind
][
1
]);
err
(
"Unknown option
\"
-%s
\"
\n
"
,
&
argv
[
optind
][
1
]);
usage
(
argv
[
0
]);
usage
(
argv
[
0
]);
exit
(
1
);
}
}
break
;
break
;
case
'b'
:
case
'b'
:
...
@@ -10202,10 +10216,12 @@ void readConfiguration(int argc, char **argv)
...
@@ -10202,10 +10216,12 @@ void readConfiguration(int argc, char **argv)
case
'h'
:
case
'h'
:
case
'?'
:
case
'?'
:
usage
(
argv
[
0
]);
usage
(
argv
[
0
]);
exit
(
0
);
break
;
break
;
default:
default:
err
(
"Unknown option
-%c
\n
"
,
argv
[
optind
][
1
]);
err
(
"Unknown option
\"
-%c
\"
\n
"
,
argv
[
optind
][
1
]);
usage
(
argv
[
0
]);
usage
(
argv
[
0
]);
exit
(
1
);
}
}
optind
++
;
optind
++
;
}
}
...
@@ -10244,6 +10260,7 @@ void readConfiguration(int argc, char **argv)
...
@@ -10244,6 +10260,7 @@ void readConfiguration(int argc, char **argv)
{
{
err
(
"Doxyfile not found and no input file specified!
\n
"
);
err
(
"Doxyfile not found and no input file specified!
\n
"
);
usage
(
argv
[
0
]);
usage
(
argv
[
0
]);
exit
(
1
);
}
}
}
}
else
else
...
@@ -10257,6 +10274,7 @@ void readConfiguration(int argc, char **argv)
...
@@ -10257,6 +10274,7 @@ void readConfiguration(int argc, char **argv)
{
{
err
(
"configuration file %s not found!
\n
"
,
argv
[
optind
]);
err
(
"configuration file %s not found!
\n
"
,
argv
[
optind
]);
usage
(
argv
[
0
]);
usage
(
argv
[
0
]);
exit
(
1
);
}
}
}
}
...
...
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