Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
Ygopro Cn Database Generator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
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
神之吹息
Ygopro Cn Database Generator
Commits
3159b2b6
Commit
3159b2b6
authored
Oct 08, 2020
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
finish
parent
8ac28b2b
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22001 additions
and
4 deletions
+22001
-4
run.ts
run.ts
+14
-0
src/base.ts
src/base.ts
+3
-0
src/dbreader.ts
src/dbreader.ts
+84
-1
test/data/cards.sql
test/data/cards.sql
+21899
-0
test/fetch.ts
test/fetch.ts
+1
-3
No files found.
run.ts
0 → 100644
View file @
3159b2b6
import
{
DBReader
}
from
"
./src/dbreader
"
;
import
{
CNFetcher
}
from
"
./src/fetcher
"
;
import
_
from
"
underscore
"
;
async
function
main
()
{
const
fetcher
=
new
CNFetcher
({
name
:
"
Fetcher
"
,
level
:
"
debug
"
});
await
fetcher
.
init
();
const
dbreader
=
new
DBReader
({
name
:
"
Database
"
,
level
:
"
debug
"
});
await
dbreader
.
init
();
const
strings
=
await
fetcher
.
fetch
();
await
dbreader
.
run
(
strings
);
process
.
exit
();
}
main
();
src/base.ts
View file @
3159b2b6
...
...
@@ -15,4 +15,7 @@ export default abstract class Base {
this
.
log
.
debug
(
"
Reading config...
"
);
await
this
.
loadConfig
();
}
async
finalize
()
{
// for override
}
}
src/dbreader.ts
View file @
3159b2b6
...
...
@@ -3,6 +3,25 @@ import sqlite3 from "sqlite3";
import
_
from
"
underscore
"
;
import
Base
from
"
./base
"
;
import
{
promises
as
fs
}
from
"
fs
"
;
import
SQL
from
"
sql-template-strings
"
;
const
textsFields
=
[
"
id
"
,
"
name
"
,
"
desc
"
]
for
(
let
i
=
1
;
i
<=
16
;
++
i
)
{
textsFields
.
push
(
`str
${
i
}
`
);
}
const
datasFields
=
[
"
id
"
,
"
ot
"
,
"
alias
"
,
"
setcode
"
,
"
type
"
,
"
atk
"
,
"
def
"
,
"
level
"
,
"
race
"
,
"
attribute
"
,
"
category
"
];
class
SQLQuery
{
sql
:
string
;
values
:
any
[];
constructor
(
sql
:
string
,
values
:
any
[])
{
this
.
sql
=
sql
;
this
.
values
=
values
;
}
async
perform
(
db
:
Database
)
{
await
db
.
run
(
this
.
sql
,
this
.
values
);
}
}
export
class
DBReader
extends
Base
{
jpdb
:
Database
;
...
...
@@ -20,13 +39,36 @@ export class DBReader extends Base {
this
.
cndb
=
await
this
.
openDatabase
(
this
.
config
.
cnDatabasePath
);
this
.
jpdb
=
await
this
.
openDatabase
(
this
.
config
.
jpDatabasePath
);
}
async
finalize
()
{
await
this
.
cndb
.
close
();
await
this
.
jpdb
.
close
();
if
(
this
.
outputdb
)
{
await
this
.
outputdb
.
close
();
}
}
private
async
openOutputDatabase
()
{
const
fullPath
=
`
${
this
.
config
.
outputPath
}
/cards.cdb`
;
try
{
await
fs
.
access
(
this
.
config
.
outputPath
);
}
catch
(
e
)
{
this
.
log
.
debug
(
`Creating directory
${
this
.
config
.
outputPath
}
...`
);
await
fs
.
mkdir
(
this
.
config
.
outputPath
,
{
recursive
:
true
});
}
this
.
outputdb
=
await
this
.
openDatabase
(
this
.
config
.
outputPath
);
try
{
await
fs
.
unlink
(
fullPath
);
}
catch
(
e
)
{
}
this
.
log
.
debug
(
`Creating database
${
fullPath
}
...`
);
this
.
outputdb
=
await
this
.
openDatabase
(
fullPath
);
const
initSQLs
=
[
"
PRAGMA foreign_keys=OFF;
"
,
"
BEGIN TRANSACTION;
"
,
"
CREATE TABLE texts(id integer primary key,name text,desc text,str1 text,str2 text,str3 text,str4 text,str5 text,str6 text,str7 text,str8 text,str9 text,str10 text,str11 text,str12 text,str13 text,str14 text,str15 text,str16 text);
"
,
"
CREATE TABLE datas(id integer primary key,ot integer,alias integer,setcode integer,type integer,atk integer,def integer,level integer,race integer,attribute integer,category integer);
"
,
"
COMMIT;
"
];
for
(
let
sql
of
initSQLs
)
{
await
this
.
outputdb
.
run
(
sql
);
}
}
async
getCodeFromJapaneseName
(
name
:
string
):
Promise
<
number
[]
>
{
this
.
log
.
debug
(
`Reading JP database for code of name
${
name
}
.`
);
...
...
@@ -45,4 +87,45 @@ export class DBReader extends Base {
const
codes
=
_
.
flatten
(
await
Promise
.
all
(
names
.
map
(
s
=>
this
.
getCodeFromJapaneseName
(
s
))),
true
);
return
_
.
uniq
(
codes
);
}
private
getDatasArray
(
datas
:
any
):
any
[]
{
const
ret
=
[];
for
(
let
field
of
datasFields
)
{
ret
.
push
(
datas
[
field
]);
}
return
ret
;
}
private
getTextsArray
(
texts
:
any
):
any
[]
{
const
ret
=
[];
for
(
let
field
of
textsFields
)
{
ret
.
push
(
texts
[
field
]);
}
return
ret
;
}
async
getQueriesFromCode
(
code
:
number
):
Promise
<
SQLQuery
[]
>
{
this
.
log
.
debug
(
`Reading card
${
code
}
.`
);
const
datas
=
await
this
.
cndb
.
get
(
"
select * from datas where id = ?
"
,
[
code
]);
const
texts
=
await
this
.
cndb
.
get
(
"
select * from texts where id = ?
"
,
[
code
]);
const
datasArray
=
this
.
getDatasArray
(
datas
);
const
textsArray
=
this
.
getTextsArray
(
texts
);
return
[
new
SQLQuery
(
`INSERT INTO texts VALUES(
${
_
.
range
(
textsArray
.
length
).
map
(
m
=>
"
?
"
)}
);`
,
textsArray
),
new
SQLQuery
(
`INSERT INTO datas VALUES(
${
_
.
range
(
datasArray
.
length
).
map
(
m
=>
"
?
"
)}
);`
,
datasArray
)
]
}
async
getAllQueries
(
codes
:
number
[]):
Promise
<
SQLQuery
[]
>
{
const
queries
=
_
.
flatten
(
await
Promise
.
all
(
codes
.
map
(
s
=>
this
.
getQueriesFromCode
(
s
))),
true
);
return
queries
;
}
async
run
(
strings
:
string
[])
{
const
codes
=
await
this
.
getAllCodesFromJapaneseNames
(
strings
);
const
queries
=
await
this
.
getAllQueries
(
codes
);
await
this
.
openOutputDatabase
();
await
this
.
outputdb
.
run
(
"
BEGIN TRANSACTION;
"
);
for
(
let
query
of
queries
)
{
this
.
log
.
debug
(
`Writing database:
${
query
.
sql
}
${
query
.
values
.
join
(
"
,
"
)}
`
);
await
query
.
perform
(
this
.
outputdb
);
}
await
this
.
outputdb
.
run
(
"
COMMIT;
"
);
this
.
log
.
debug
(
`Database created.`
);
}
}
test/data/cards.sql
0 → 100644
View file @
3159b2b6
This diff is collapsed.
Click to expand it.
test/fetch.ts
View file @
3159b2b6
...
...
@@ -8,9 +8,7 @@ async function main() {
const
dbreader
=
new
DBReader
({
name
:
"
Test database
"
,
level
:
"
debug
"
});
await
dbreader
.
init
();
const
strings
=
await
fetcher
.
fetch
();
console
.
log
(
strings
);
const
codes
=
_
.
flatten
(
await
Promise
.
all
(
strings
.
map
(
s
=>
dbreader
.
getCodeFromJapaneseName
(
s
))),
true
);
console
.
log
(
codes
);
await
dbreader
.
run
(
strings
);
process
.
exit
();
}
main
();
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