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
412b4007
Commit
412b4007
authored
May 16, 2020
by
houkime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
deduplicate qdb a bit
parent
c49f2c88
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
11 deletions
+28
-11
src/lib/rt/src/rt_qdb.c
src/lib/rt/src/rt_qdb.c
+28
-11
No files found.
src/lib/rt/src/rt_qdb.c
View file @
412b4007
...
...
@@ -100,6 +100,21 @@ static int copyBufferData(void* itp, qdb_sBuffer* bp, int offs, int size)
return
size
;
}
/* Set paths for ftok-used files according to TMPDIR */
static
void
initPaths
(
qdb_sLocal
*
root
)
{
char
*
tmpdir
=
getenv
(
"TMPDIR"
);
if
(
!
tmpdir
)
{
tmpdir
=
qdb_cDefaultTmpDir
;
}
sprintf
(
root
->
db_path
,
"%s/%s"
,
tmpdir
,
qdb_cFileNameDatabase
);
sprintf
(
root
->
db_lock_path
,
"%s/%s"
,
tmpdir
,
qdb_cFileNameDbLock
);
sprintf
(
root
->
pool_path
,
"%s/%s"
,
tmpdir
,
qdb_cFileNamePool
);
}
static
qdb_sInit
*
evaluateInit
(
qdb_sInit
*
ip
)
{
if
(
ip
==
NULL
)
...
...
@@ -563,17 +578,9 @@ qdb_sLocal* qdb_CreateDb(pwr_tStatus* status, qdb_sInit* ip)
qdb
->
my_pid
=
getpid
();
/* Define paths. */
char
*
tmpdir
=
getenv
(
"TMPDIR"
);
if
(
!
tmpdir
)
{
tmpdir
=
qdb_cDefaultTmpDir
;
}
sprintf
(
qdb
->
db_path
,
"%s/%s"
,
tmpdir
,
qdb_cFileNameDatabase
);
sprintf
(
qdb
->
db_lock_path
,
"%s/%s"
,
tmpdir
,
qdb_cFileNameDbLock
);
sprintf
(
qdb
->
pool_path
,
"%s/%s"
,
tmpdir
,
qdb_cFileNamePool
);
/* Init token files' paths. */
initPaths
(
qdb
);
/* Create lock section. */
...
...
@@ -772,6 +779,7 @@ void qdb_UnlinkDb()
qdb_sLocal
*
qdb_MapDb
(
pwr_tStatus
*
status
)
{
/* NOTE: this section seems very similar to CreateDb. Maybe it can be reorganized and deduplicated */
pwr_tBoolean
created
;
qdb_sLocal
*
lp
;
pwr_tNodeId
no_nid
=
pwr_cNNodeId
;
...
...
@@ -786,12 +794,21 @@ qdb_sLocal* qdb_MapDb(pwr_tStatus* status)
if
(
qdb
==
NULL
)
errh_Bugcheck
(
QDB__INSVIRMEM
,
"initiating local database"
);
char
*
tmpdir
=
getenv
(
"TMPDIR"
);
if
(
!
tmpdir
)
{
tmpdir
=
qdb_cDefaultTmpDir
;
}
qdb
->
my_pid
=
getpid
();
/* Init token files' paths */
initPaths
(
qdb
);
/* Map lock sections. */
sp
=
sect_Alloc
(
sts
,
&
created
,
&
qdb
->
lock
,
sizeof
(
sect_sMutex
),
qdb
->
db_lock_path
,
0
);
sts
,
&
created
,
&
qdb
->
lock
,
sizeof
(
sect_sMutex
),
qdb
->
db_lock_path
,
0
);
/* NOTE: this is bad, db_path will be null */
if
(
sp
==
NULL
)
errh_Bugcheck
(
*
sts
,
"mapping db lock"
);
if
(
created
)
...
...
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