bjd-code 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.env.example ADDED
File without changes
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="WEB_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$">
5
+ <excludeFolder url="file://$MODULE_DIR$/.tmp" />
6
+ <excludeFolder url="file://$MODULE_DIR$/temp" />
7
+ <excludeFolder url="file://$MODULE_DIR$/tmp" />
8
+ </content>
9
+ <orderEntry type="inheritedJdk" />
10
+ <orderEntry type="sourceFolder" forTests="false" />
11
+ </component>
12
+ </module>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="JavaScriptLibraryMappings">
4
+ <includedPredefinedLibrary name="Node.js Core" />
5
+ </component>
6
+ </project>
package/.idea/misc.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="JavaScriptSettings">
4
+ <option name="languageLevel" value="ES6" />
5
+ </component>
6
+ </project>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/bjd-code.iml" filepath="$PROJECT_DIR$/.idea/bjd-code.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
package/.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+ </component>
6
+ </project>
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # bjd-code (법정동 코드)
2
+
3
+ [국토교통부_전국 법정동_20201119 API](https://www.data.go.kr/tcs/dss/selectFileDataDetailView.do?publicDataPk=15063424) 를 이용합니다.
4
+
5
+ 1. worker threads를 이용하여
package/index.ts ADDED
@@ -0,0 +1,122 @@
1
+ import {Worker} from 'worker_threads'
2
+ import {getData} from "./helper";
3
+ //
4
+ import * as path from 'path';
5
+ const __dirname = path.resolve();
6
+ // const envInfo = require('./worker.js');
7
+
8
+ const workerPath = path.join(__dirname, './worker.js');
9
+ // let resultArr = new Array(envInfo.numThreads + 1);
10
+ // const perPage = 10000;
11
+ var nStart = new Date().getTime(); //시작시간 체크(단위 ms)
12
+
13
+ /**
14
+ currentCount: 10,
15
+ data: [
16
+ {
17
+ '과거법정동코드': '13131607',
18
+ '리명': '신리',
19
+ '법정동코드': '4175045027',
20
+ '삭제일자': '2001-03-21',
21
+ '생성일자': '1988-04-23',
22
+ '순위': '0',
23
+ '시군구명': '화성군',
24
+ '시도명': '경기도',
25
+ '읍면동명': '동탄면'
26
+ }]
27
+ matchCount: 46203,
28
+ page: 1,
29
+ perPage: 10,
30
+ totalCount: 46203
31
+ */
32
+
33
+ const data = await getData(1, 1);
34
+ console.log(data.totalCount);
35
+ const {totalCount} = data;
36
+
37
+ const perPage = 5000;
38
+ const threadSize = Math.floor(totalCount / perPage) + 1;
39
+ const totalData: any[] = [];
40
+ // for (let i = 1; i<= threadSize; i++) {
41
+ // totalData.push(...(await getData(i, perPage)).data);
42
+ // }
43
+ // console.log(totalData.length)
44
+
45
+
46
+ // if (envInfo.useThread) {
47
+
48
+ // if (isMainThread) {
49
+ // const worker = new Worker(__filename);
50
+ // worker.once('message', (message) => {
51
+ // console.log(message); // Prints 'Hello, world!'.
52
+ // });
53
+ // worker.postMessage('Hello, world!');
54
+ // } else {
55
+ // // When a message from the parent thread is received, send it back:
56
+ // parentPort.once('message', (message) => {
57
+ // parentPort.postMessage(message);
58
+ // });
59
+ // }
60
+ var mySet = new Set();
61
+ var myMap = new Map();
62
+
63
+ /*
64
+ 법정동 코드 (10자리) : 실제주소
65
+
66
+ 시도(2)+시군구(3)+읍면동(3)+리(2)
67
+
68
+ ex> 경기도(41) + 화성시(590) + 향남면(390) + 수직리(32)
69
+
70
+ 경기도(41) + 화성시(590) + 동탄면(420) + 석우리(24)
71
+ */
72
+ const d = async () => {
73
+ let count = 0;
74
+ for (let i = 1; i <= threadSize; i++) {
75
+ let myWorker = new Worker(workerPath);
76
+ myWorker.postMessage(i);
77
+ //INFO: 스레드로부터 데이터를 받음
78
+ myWorker.on('message', result => {
79
+ console.log(`${myWorker.threadId}`);
80
+ totalData.push(...result.data);
81
+ result.data.filter(res => res['삭제일자'] === '').forEach(res => {
82
+ mySet.add(res['시도명'])
83
+ myMap.set(res['법정동코드'].substr(0, 2), res['시도명'])
84
+ })
85
+ count++;
86
+
87
+ if (count === threadSize) {
88
+ var nEnd = new Date().getTime(); //종료시간 체크(단위 ms)
89
+
90
+ var nDiff = nEnd - nStart; //두 시간차 계산(단위 ms)
91
+ console.log(nDiff + "ms");
92
+
93
+ console.log(totalData)
94
+ console.log(mySet)
95
+ console.log(myMap)
96
+ }
97
+ });
98
+ }
99
+ }
100
+
101
+ await d();
102
+ console.log('dd')
103
+
104
+ // } else {
105
+ // console.time('main');
106
+ // for (let i = 0; i < envInfo.numThreads; i++) {
107
+ // resultArr[i] = doSomething();
108
+ // }
109
+ // console.timeEnd('main');
110
+ //
111
+ // for (let i = 0; i < envInfo.numThreads; i++) {
112
+ // console.log(`result : ${resultArr[i]}`);
113
+ // }
114
+ // }
115
+ //
116
+ // function doSomething() {
117
+ // let data = 0;
118
+ // for (let i = 0; i < envInfo.jobSize; i++) {
119
+ // data += i;
120
+ // }
121
+ // return data;
122
+ // }
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "bjd-code",
3
+ "version": "0.0.1",
4
+ "description": "법정동 코드 api",
5
+ "main": "index.ts",
6
+ "repository": "https://github.com/SimDaSong/bjd-code.git",
7
+ "author": "SimDaSong <song98987@korea.ac.kr>",
8
+ "license": "MIT",
9
+ "dependencies": {
10
+ "axios": "^0.24.0"
11
+ },
12
+ "type": "module",
13
+ "devDependencies": {
14
+ "@types/node": "^16.11.12",
15
+ "ts-node": "^10.4.0"
16
+ }
17
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,100 @@
1
+ {
2
+ "compilerOptions": {
3
+ /* Visit https://aka.ms/tsconfig.json to read more about this file */
4
+
5
+ /* Projects */
6
+ // "incremental": true, /* Enable incremental compilation */
7
+ // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
8
+ // "tsBuildInfoFile": "./", /* Specify the folder for .tsbuildinfo incremental compilation files. */
9
+ // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects */
10
+ // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
11
+ // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
12
+
13
+ /* Language and Environment */
14
+ "target": "es6", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
15
+ // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
16
+ // "jsx": "preserve", /* Specify what JSX code is generated. */
17
+ // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
18
+ // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
19
+ // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */
20
+ // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
21
+ // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.` */
22
+ // "reactNamespace": "", /* Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit. */
23
+ // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
24
+ // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
25
+
26
+ /* Modules */
27
+ "module": "commonjs", /* Specify what module code is generated. */
28
+ // "rootDir": "./", /* Specify the root folder within your source files. */
29
+ // "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
30
+ // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
31
+ // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
32
+ // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
33
+ // "typeRoots": [], /* Specify multiple folders that act like `./node_modules/@types`. */
34
+ // "types": [], /* Specify type package names to be included without being referenced in a source file. */
35
+ // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
36
+ // "resolveJsonModule": true, /* Enable importing .json files */
37
+ // "noResolve": true, /* Disallow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should add to a project. */
38
+
39
+ /* JavaScript Support */
40
+ // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */
41
+ // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
42
+ // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */
43
+
44
+ /* Emit */
45
+ // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
46
+ // "declarationMap": true, /* Create sourcemaps for d.ts files. */
47
+ // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
48
+ // "sourceMap": true, /* Create source map files for emitted JavaScript files. */
49
+ // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */
50
+ // "outDir": "./", /* Specify an output folder for all emitted files. */
51
+ // "removeComments": true, /* Disable emitting comments. */
52
+ // "noEmit": true, /* Disable emitting files from a compilation. */
53
+ // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
54
+ // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types */
55
+ // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
56
+ // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
57
+ // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
58
+ // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
59
+ // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
60
+ // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
61
+ // "newLine": "crlf", /* Set the newline character for emitting files. */
62
+ // "stripInternal": true, /* Disable emitting declarations that have `@internal` in their JSDoc comments. */
63
+ // "noEmitHelpers": true, /* Disable generating custom helper functions like `__extends` in compiled output. */
64
+ // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
65
+ // "preserveConstEnums": true, /* Disable erasing `const enum` declarations in generated code. */
66
+ // "declarationDir": "./", /* Specify the output directory for generated declaration files. */
67
+
68
+ /* Interop Constraints */
69
+ // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
70
+ // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
71
+ "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */
72
+ // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
73
+ "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
74
+
75
+ /* Type Checking */
76
+ "strict": true, /* Enable all strict type-checking options. */
77
+ // "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied `any` type.. */
78
+ // "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */
79
+ // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
80
+ // "strictBindCallApply": true, /* Check that the arguments for `bind`, `call`, and `apply` methods match the original function. */
81
+ // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
82
+ // "noImplicitThis": true, /* Enable error reporting when `this` is given the type `any`. */
83
+ // "useUnknownInCatchVariables": true, /* Type catch clause variables as 'unknown' instead of 'any'. */
84
+ // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
85
+ // "noUnusedLocals": true, /* Enable error reporting when a local variables aren't read. */
86
+ // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read */
87
+ // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
88
+ // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
89
+ // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
90
+ // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */
91
+ // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
92
+ // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type */
93
+ // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
94
+ // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
95
+
96
+ /* Completeness */
97
+ // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
98
+ "skipLibCheck": true /* Skip type checking all .d.ts files. */
99
+ }
100
+ }