Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Frida
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
Frida
Commits
80490b61
Commit
80490b61
authored
9 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
fl: now looking for y08 _and_ yda.
parent
508c18bc
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
pub/lib/file_in.cpp
+23
-27
23 additions, 27 deletions
pub/lib/file_in.cpp
pub/trivia/file_ops.cpp
+21
-15
21 additions, 15 deletions
pub/trivia/file_ops.cpp
pub/trivia/file_ops.hpp
+1
-1
1 addition, 1 deletion
pub/trivia/file_ops.hpp
with
45 additions
and
43 deletions
pub/lib/file_in.cpp
+
23
−
27
View file @
80490b61
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
using
namespace
std
;
using
namespace
std
;
namespace
NFileIn
{
namespace
NFileIn
{
void
Load_08
(
ifstream
&
F_in
,
string
f
long
);
void
Load_08
(
ifstream
&
F_in
,
string
f
nam
);
}
}
...
@@ -41,43 +41,39 @@ namespace NFileIn {
...
@@ -41,43 +41,39 @@ namespace NFileIn {
void
NFileIn
::
load
(
void
)
void
NFileIn
::
load
(
void
)
{
{
string
fnames
=
sask
(
"Load file(s)"
);
string
pattern
=
sask
(
"Load file(s)"
);
vector
<
string
>
vflong
=
triv
::
glob_file_list
(
fnames
,
"y08"
);
vector
<
string
>
fNames
=
triv
::
glob_file_list
(
pattern
,
"yda y08"
);
for
(
int
i
=
0
;
i
<
vflong
.
size
();
++
i
)
{
for
(
string
fnam
:
fNames
)
{
FILE
*
F_in
=
fopen
(
vflong
[
i
].
c_str
(),
"r"
);
if
(
!
F_in
)
throw
"cannot open file "
+
vflong
[
i
];
try
{
try
{
cout
<<
".. loading file "
<<
vflong
[
i
]
<<
"
\n
"
;
string
fdir
,
fshort
,
fext
;
string
fdir
,
fshort
,
fext
;
triv
::
fname_divide
(
vflong
[
i
],
&
fdir
,
&
fshort
,
&
fext
);
triv
::
fname_divide
(
fnam
,
&
fdir
,
&
fshort
,
&
fext
);
if
(
!
(
fext
==
"y08"
||
fext
==
"yda"
)
)
if
(
fext
==
"y08"
)
{
throw
"unknown extension "
+
fext
;
ifstream
FS
(
vflong
[
i
].
c_str
(),
ios_base
::
in
);
ifstream
FS
(
fnam
.
c_str
(),
ios_base
::
in
);
if
(
FS
.
fail
()
)
if
(
FS
.
fail
()
)
throw
S
(
"cannot open file"
);
throw
string
(
"cannot open file"
);
Load_08
(
FS
,
vflong
[
i
]
);
cout
<<
".. loading file "
<<
fnam
<<
"
\n
"
;
FS
.
close
();
if
(
fext
==
"y08"
)
}
else
Load_08
(
FS
,
fshort
);
throw
"unknown file extension ["
+
fext
+
"]"
;
else
if
(
fext
==
"yda"
)
fclose
(
F_in
);
cout
<<
"TODO
\n
"
;
else
throw
"BUG: unforeseen extension "
+
fext
;
FS
.
close
();
}
}
catch
(
string
&
ex
)
{
catch
(
string
&
ex
)
{
throw
"Cannot load "
+
vflong
[
i
]
+
": "
+
ex
;
throw
"Cannot load "
+
fnam
+
": "
+
ex
;
}
}
catch
(
std
::
exception
&
ex
)
{
catch
(
std
::
exception
&
ex
)
{
throw
"Cannot load "
+
vflong
[
i
]
+
": "
+
ex
.
what
();
throw
"Cannot load "
+
fnam
+
": "
+
ex
.
what
();
}
}
}
}
}
}
//! Load a YAML file in y08 format.
//! Load a YAML file in y08 format.
void
NFileIn
::
Load_08
(
ifstream
&
FS
,
string
f
long
)
void
NFileIn
::
Load_08
(
ifstream
&
FS
,
string
f
nam
)
{
{
string
fdir
,
fshort
,
fext
;
triv
::
fname_divide
(
flong
,
&
fdir
,
&
fshort
,
&
fext
);
const
YAML
::
Node
doc
=
YAML
::
Load
(
FS
);
const
YAML
::
Node
doc
=
YAML
::
Load
(
FS
);
if
(
doc
.
Type
()
!=
YAML
::
NodeType
::
Map
)
if
(
doc
.
Type
()
!=
YAML
::
NodeType
::
Map
)
throw
S
(
"document root is not of MAP type"
);
throw
S
(
"document root is not of MAP type"
);
...
@@ -112,7 +108,7 @@ void NFileIn::Load_08(ifstream& FS,string flong)
...
@@ -112,7 +108,7 @@ void NFileIn::Load_08(ifstream& FS,string flong)
fc
=
POlc
(
new
COlc
);
fc
=
POlc
(
new
COlc
);
fout
=
fc
;
fout
=
fc
;
}
else
}
else
throw
"
File "
+
flong
+
"
has invalid type "
+
type
;
throw
"
Meta section
has invalid type "
+
type
;
// read history
// read history
if
(
!
doc
[
"History"
])
if
(
!
doc
[
"History"
])
...
@@ -237,7 +233,7 @@ void NFileIn::Load_08(ifstream& FS,string flong)
...
@@ -237,7 +233,7 @@ void NFileIn::Load_08(ifstream& FS,string flong)
}
}
}
}
fout
->
name
=
f
short
;
fout
->
name
=
f
nam
;
fout
->
as_on_disk
=
true
;
fout
->
as_on_disk
=
true
;
NOlm
::
mem_store
(
fout
);
NOlm
::
mem_store
(
fout
);
}
}
This diff is collapsed.
Click to expand it.
pub/trivia/file_ops.cpp
+
21
−
15
View file @
80490b61
...
@@ -146,26 +146,32 @@ string triv::next_tmp_file( const string& path_format )
...
@@ -146,26 +146,32 @@ string triv::next_tmp_file( const string& path_format )
}
}
//! Returns a list of file names obtained by shell-like expansion of pattern
with optional extension
//! Returns a list of file names obtained by shell-like expansion of pattern
s.
vector
<
string
>
triv
::
glob_file_list
(
const
string
&
pattern
,
const
string
&
extension
)
//! Pattern is a blank-separated list of subpatterns.
//! Extensions is a blank-separated list of strings to be appended to subpatterns that have
//! no extension.
vector
<
string
>
triv
::
glob_file_list
(
const
string
&
patterns
,
const
string
&
extensions
)
{
{
string
extended_pattern
=
""
;
string
extended_pattern
s
=
""
;
vector
<
string
>
words
;
vector
<
string
>
vPattern
;
split
(
pattern
,
words
);
split
(
pattern
s
,
vPattern
);
if
(
!
words
.
size
()
)
if
(
!
vPattern
.
size
()
)
throw
string
(
"empty file list"
);
throw
string
(
"empty file list"
);
for
(
size_t
i
=
0
;
;
)
{
vector
<
string
>
vExtension
;
split
(
extensions
,
vExtension
);
for
(
string
pat
:
vPattern
)
{
string
fmain
,
fext
;
string
fmain
,
fext
;
fname_divide
(
words
[
i
]
,
nullptr
,
&
fmain
,
&
fext
);
fname_divide
(
pat
,
nullptr
,
&
fmain
,
&
fext
);
extended_pattern
+=
words
[
i
];
if
(
fext
==
""
&&
extensions
!=
""
)
{
if
(
fext
==
""
&&
e
xtension
!=
""
)
for
(
string
ext
:
vE
xtension
)
extended_pattern
+=
"."
+
ext
ension
;
extended_pattern
s
+=
pat
+
"."
+
ext
+
" "
;
if
(
++
i
>=
words
.
size
()
)
}
else
{
break
;
extended_patterns
+=
pat
+
" "
;
extended_pattern
+=
" "
;
}
}
}
return
triv
::
wordexp_multi
(
extended_pattern
);
return
triv
::
wordexp_multi
(
extended_pattern
s
);
}
}
...
...
This diff is collapsed.
Click to expand it.
pub/trivia/file_ops.hpp
+
1
−
1
View file @
80490b61
...
@@ -16,7 +16,7 @@ namespace triv {
...
@@ -16,7 +16,7 @@ namespace triv {
void
fname_divide
(
const
std
::
string
&
fname
,
std
::
string
*
fdir
,
void
fname_divide
(
const
std
::
string
&
fname
,
std
::
string
*
fdir
,
std
::
string
*
fshort
,
std
::
string
*
fext
);
std
::
string
*
fshort
,
std
::
string
*
fext
);
std
::
vector
<
std
::
string
>
glob_file_list
(
std
::
vector
<
std
::
string
>
glob_file_list
(
const
std
::
string
&
pattern
,
const
std
::
string
&
extension
);
const
std
::
string
&
pattern
s
,
const
std
::
string
&
extension
s
);
std
::
string
wordexp_unique
(
const
std
::
string
&
s
);
std
::
string
wordexp_unique
(
const
std
::
string
&
s
);
std
::
vector
<
std
::
string
>
wordexp_multi
(
const
std
::
string
&
s
);
std
::
vector
<
std
::
string
>
wordexp_multi
(
const
std
::
string
&
s
);
std
::
string
next_tmp_file
(
const
std
::
string
&
path_format
);
std
::
string
next_tmp_file
(
const
std
::
string
&
path_format
);
...
...
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