Skip to content

Commit 2020901

Browse files
committedOct 8, 2018
Refactor old examples and add links to new
1 parent 5a198ed commit 2020901

24 files changed

+159
-120
lines changed
 

‎.eslintignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules/
2+
applications/example/
3+
tests/
4+
schemas/
5+
config/

‎.eslintrc.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ env:
44
extends: 'eslint:recommended'
55
globals:
66
api: false
7+
fs: false
78
rules:
89
indent:
910
- error

‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016 How.Programming.Works contributors
3+
Copyright (c) 2016-2018 How.Programming.Works contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

‎README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## IoC - Inversion of Control (old examples)
2+
3+
See new examples in following repos:
4+
- [DI / Dependency Injection](https://github.com/HowProgrammingWorks/DependencyInjection)
5+
- Component [sandboxing](https://github.com/HowProgrammingWorks/Sandboxes)

‎dependencyInjection/ru/README.md ‎dependencyInjection/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
## Задания
2727

2828
1. Все зависимости у нас смешаны в `api.`, например, `api.util` и
29-
'api.component1'
29+
'api.component1'
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
var application = {};
1+
'use strict';
2+
3+
const application = {};
24
module.exports = application;
35

4-
application.main = function() {
6+
application.main = () => {
57
console.log('Application entry point');
68
};
File renamed without changes.

‎dependencyInjection/component1.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
'use strict';
2+
3+
const moduleName = {};
4+
module.exports = moduleName;
5+
6+
const privateProperty = 'Privat variable value in Module1';
7+
8+
const privateFunction = () => {
9+
console.log('Output from private function of Module1');
10+
};
11+
12+
privateFunction(privateProperty);
13+
14+
moduleName.publicProperty = 'Public property value in Module1';
15+
16+
moduleName.publicFunction = () => {
17+
console.log('Output from public function of Module1');
18+
};
File renamed without changes.

‎dependencyInjection/component2.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
'use strict';
2+
3+
const moduleName = {};
4+
module.exports = moduleName;
5+
6+
const privateProperty = 'Privat variable value in Module2';
7+
8+
const privateFunction = s => {
9+
console.log('Output from private function of Module2');
10+
console.log(s);
11+
};
12+
13+
privateFunction(privateProperty);
14+
15+
moduleName.publicProperty = 'Public property value in Module2';
16+
17+
moduleName.publicFunction = () => {
18+
console.log('Output from public function of Module2');
19+
};
File renamed without changes.
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
'use strict';
2+
13
// Типы библиотек
2-
var libraries = {
4+
const libraries = {
35
console: 'global',
46
setTimeout: 'global',
57
setInterval: 'global',
@@ -13,19 +15,16 @@ var libraries = {
1315
};
1416

1517
// Ссылки на метаданные загруженных библиотек
16-
var loaded = {};
18+
const loaded = {};
1719

1820
// Ссылки на загруженные библиотеки
19-
var api = {};
20-
21-
// Загружаем два системных модуля и после них основное приложение
22-
['fs', 'vm', 'application'].forEach(loadLibrary);
21+
const api = {};
2322

2423
// Функция загрузчик
25-
function loadLibrary(name, parent) {
26-
if (typeof(parent) !== 'object') parent = { name: 'framework' };
27-
console.log('Loading dependency: ' + name + ' into ' + parent.name);
28-
var mod = {};
24+
const loadLibrary = (name, parent) => {
25+
if (typeof parent !== 'object') parent = { name: 'framework' };
26+
console.log(`Loading dependency: ${name} into ${parent.name}`);
27+
const mod = {};
2928
loaded[name] = mod;
3029
mod.name = name;
3130
mod.type = libraries[name];
@@ -40,18 +39,21 @@ function loadLibrary(name, parent) {
4039
mod.context = { module: {} };
4140
mod.context.global = mod.context;
4241
mod.sandbox = api.vm.createContext(mod.context);
43-
mod.config = require('./' + name + '.json');
44-
mod.fileName = './' + name + '.js';
45-
api.fs.readFile(mod.fileName, function(err, src) {
42+
mod.config = require(`./${name}.json`);
43+
mod.fileName = `./${name}.js`;
44+
api.fs.readFile(mod.fileName, 'utf8', (err, src) => {
4645
mod.script = api.vm.createScript(src, mod.fileName);
4746
mod.script.runInNewContext(mod.sandbox);
4847
mod.interface = mod.sandbox.exports;
4948
api[name] = mod.interface;
5049
if (mod.config.api) {
51-
mod.config.api.forEach(function(item) {
50+
mod.config.api.forEach(item => {
5251
loadLibrary(item, mod);
5352
});
5453
}
5554
});
5655
}
57-
}
56+
};
57+
58+
// Загружаем два системных модуля и после них основное приложение
59+
['fs', 'vm', 'application'].forEach(loadLibrary);
File renamed without changes.

‎dependencyInjection/ru/component1.js

-18
This file was deleted.

‎dependencyInjection/ru/component2.js

-18
This file was deleted.

‎interfaceWrapper/en/application.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict';
2+
13
// Print something
24
console.log('From application global context');
35

‎interfaceWrapper/en/framework.js

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
1+
'use strict';
2+
13
// Wrapping function and interface example
24

3-
var fs = require('fs'),
4-
vm = require('vm');
5+
global.api = {};
6+
api.fs = require('fs');
7+
api.vm = require('vm');
58

69
// Create a hash for application sandbox
7-
var context = {
10+
const context = {
811
module: {},
9-
console: console,
12+
console,
1013
// Forward link to fs API into sandbox
11-
fs: fs,
14+
fs: api.fs,
1215
// Wrapper for setTimeout in sandbox
13-
setTimeout: function(callback, timeout) {
16+
setTimeout: (callback, timeout) => {
1417
// Logging all setTimeout calls
1518
console.log(
1619
'Call: setTimeout, ' +
1720
'callback function: ' + callback.name + ', ' +
1821
'timeout: ' + timeout
1922
);
20-
setTimeout(function() {
23+
setTimeout(() => {
2124
// Logging timer events before application event
2225
console.log('Event: setTimeout, before callback');
2326
// Calling user-defined timer event
@@ -29,12 +32,12 @@ var context = {
2932

3033
// Turn hash into context
3134
context.global = context;
32-
var sandbox = vm.createContext(context);
35+
const sandbox = api.vm.createContext(context);
3336

3437
// Read an application source code from the file
35-
var fileName = './application.js';
36-
fs.readFile(fileName, function(err, src) {
38+
const fileName = './application.js';
39+
api.fs.readFile(fileName, 'utf8', (err, src) => {
3740
// Run an application in sandboxed context
38-
var script = vm.createScript(src, fileName);
41+
const script = api.vm.createScript(src, fileName);
3942
script.runInNewContext(sandbox);
4043
});

‎interfaceWrapper/ru/application.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1+
'use strict';
2+
13
// Вывод из глобального контекста модуля
24
console.log('From application global context');
35

46
// Объявляем функцию для события таймера
5-
function timerEvent() {
7+
const timerEvent = () => {
68
console.log('From application timer event');
7-
}
9+
};
10+
11+
fs.readFile('README.md', 'utf8', (err, s) => {
12+
console.log(`file length: ${s.length}`);
13+
});
814

915
// Устанавливаем функцию на таймер
1016
setTimeout(timerEvent, 1000);

‎interfaceWrapper/ru/framework.js

+33-31
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,42 @@
1-
// Пример оборачивания функции в песочнице
1+
'use strict';
22

3-
var fs = require('fs'),
4-
vm = require('vm');
3+
global.api = {};
4+
api.fs = require('fs');
5+
api.vm = require('vm');
56

6-
// Объявляем хеш из которого сделаем контекст-песочницу
7-
var context = {
8-
module: {},
9-
console: console,
10-
// Помещаем ссылку на fs API в песочницу
11-
fs: fs,
12-
// Оборачиваем функцию setTimeout в песочнице
13-
setTimeout: function(callback, timeout) {
14-
// Добавляем поведение при вызове setTimeout
15-
console.log(
16-
'Call: setTimeout, ' +
17-
'callback function: ' + callback.name + ', ' +
18-
'timeout: ' + timeout
19-
);
20-
setTimeout(function() {
21-
// Добавляем поведение при срабатывании таймера
22-
console.log('Event: setTimeout, before callback');
23-
// Вызываем функцию пользователя на событии таймера
24-
callback();
25-
console.log('Event: setTimeout, after callback');
26-
}, timeout);
7+
const wrapFunction = (fnName, fn) => (...args) => {
8+
if (args.length > 0) {
9+
let callback = args[args.length - 1];
10+
if (typeof callback === 'function') {
11+
args[args.length - 1] = (...pars) => {
12+
console.log(`Callback: ${fnName}`);
13+
callback(...pars);
14+
};
15+
} else {
16+
callback = null;
17+
}
2718
}
19+
console.log(`Call: ${fnName}`);
20+
console.dir(args);
21+
fn(...args);
2822
};
2923

30-
// Преобразовываем хеш в контекст
24+
const cloneInterface = anInterface => {
25+
const clone = {};
26+
for (const key in anInterface) {
27+
const fn = anInterface[key];
28+
clone[key] = wrapFunction(key, fn);
29+
}
30+
return clone;
31+
};
32+
33+
const context = { module: {}, console, fs: cloneInterface(api.fs) };
34+
3135
context.global = context;
32-
var sandbox = vm.createContext(context);
36+
const sandbox = api.vm.createContext(context);
3337

34-
// Читаем исходный код приложения из файла
35-
var fileName = './application.js';
36-
fs.readFile(fileName, function(err, src) {
37-
// Запускаем код приложения в песочнице
38-
var script = vm.createScript(src, fileName);
38+
const fileName = './application.js';
39+
api.fs.readFile(fileName, 'utf8', (err, src) => {
40+
const script = api.vm.createScript(src, fileName);
3941
script.runInNewContext(sandbox);
4042
});

‎sandboxedModule/en/application.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1+
'use strict';
2+
13
// File contains a small piece of the source to demonstrate main module
24
// of a sample application to be executed in the sandboxed context by
35
// another pice of code from `framework.js`. Read README.md for tasks.
46

57
// Print from the global context of application module
68
console.log('From application global context');
79

8-
module.exports = function() {
9-
// Print from the exported function context
10+
module.exports = () => {
11+
// Print from the exported function context
1012
console.log('From application exported function');
1113
};

‎sandboxedModule/en/framework.js

+12-9
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,29 @@
1+
'use strict';
2+
13
// Example showing us how the framework creates an environment (sandbox) for
24
// appication runtime, load an application code and passes a sandbox into app
35
// as a global context and receives exported application interface
46

57
// The framework can require core libraries
6-
var fs = require('fs'),
7-
vm = require('vm');
8+
global.api = {};
9+
api.fs = require('fs');
10+
api.vm = require('vm');
811

912
// Create a hash and turn it into the sandboxed context which will be
1013
// the global context of an application
11-
var context = { module: {}, console: console };
14+
const context = { module: {}, console };
1215
context.global = context;
13-
var sandbox = vm.createContext(context);
16+
const sandbox = api.vm.createContext(context);
1417

1518
// Read an application source code from the file
16-
var fileName = './application.js';
17-
fs.readFile(fileName, function(err, src) {
19+
const fileName = './application.js';
20+
api.fs.readFile(fileName, 'utf8', (err, src) => {
1821
// We need to handle errors here
19-
22+
2023
// Run an application in sandboxed context
21-
var script = vm.createScript(src, fileName);
24+
const script = api.vm.createScript(src, fileName);
2225
script.runInNewContext(sandbox);
23-
26+
2427
// We can access a link to exported interface from sandbox.module.exports
2528
// to execute, save to the cache, print to console, etc.
2629
});

‎sandboxedModule/ru/application.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1+
'use strict';
2+
13
// Файл содержит маленький кусочек основного модуля демонстрационного
24
// прикладного приложения, загружаемого в песочницу демонстрационным
35
// кусочком фреймворка. Читайте README.md в нем задания.
46

57
// Вывод из глобального контекста модуля
68
console.log('From application global context');
79

8-
module.exports = function() {
10+
module.exports = () => {
911
// Вывод из контекста экспортируемой функции
1012
console.log('From application exported function');
1113
};

‎sandboxedModule/ru/framework.js

+12-9
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,29 @@
1+
'use strict';
2+
13
// Файл, демонстрирующий то, как фреймворк создает среду (песочницу) для
24
// исполнения приложения, загружает приложение, передает ему песочницу в
35
// качестве глобального контекста и получает ссылу на экспортируемый
46
// приложением интерфейс. Читайте README.md в нем задания.
57

68
// Фреймворк может явно зависеть от библиотек через dependency lookup
7-
var fs = require('fs'),
8-
vm = require('vm');
9+
global.api = {};
10+
api.fs = require('fs');
11+
api.vm = require('vm');
912

1013
// Создаем контекст-песочницу, которая станет глобальным контекстом приложения
11-
var context = { module: {}, console: console };
14+
const context = {}; // module: {}, /*console: console*/ };
1215
context.global = context;
13-
var sandbox = vm.createContext(context);
16+
const sandbox = api.vm.createContext(context);
1417

1518
// Читаем исходный код приложения из файла
16-
var fileName = './application.js';
17-
fs.readFile(fileName, function(err, src) {
19+
const fileName = './application.js';
20+
api.fs.readFile(fileName, 'utf8', (err, src) => {
1821
// Тут нужно обработать ошибки
19-
22+
2023
// Запускаем код приложения в песочнице
21-
var script = vm.createScript(src, fileName);
24+
const script = api.vm.createScript(src, fileName);
2225
script.runInNewContext(sandbox);
23-
26+
2427
// Забираем ссылку из sandbox.module.exports, можем ее исполнить,
2528
// сохранить в кеш, вывести на экран исходный код приложения и т.д.
2629
});

0 commit comments

Comments
 (0)
Please sign in to comment.