-
Notifications
You must be signed in to change notification settings - Fork 18
/
egSpawn.js
108 lines (81 loc) · 2.88 KB
/
egSpawn.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/usr/bin/gjs
/*
GJS example showing how to build Gtk javascript applications
executing a non blocking command line call, it uses
TextBuffer, TextView, GLib.spawn_async_with_pipes,
Gio.UnixInputStream, Gio.DataInputStream and read_line_async
Run it with:
gjs egSpawn.js
*/
const Gio = imports.gi.Gio;
const GLib = imports.gi.GLib;
const Gtk = imports.gi.Gtk;
const Lang = imports.lang;
// Get application folder and add it into the imports path
function getAppFileInfo() {
let stack = (new Error()).stack,
stackLine = stack.split('\n')[1],
coincidence, path, file;
if (!stackLine) throw new Error('Could not find current file (1)');
coincidence = new RegExp('@(.+):\\d+').exec(stackLine);
if (!coincidence) throw new Error('Could not find current file (2)');
path = coincidence[1];
file = Gio.File.new_for_path(path);
return [file.get_path(), file.get_parent().get_path(), file.get_basename()];
}
const path = getAppFileInfo()[1];
imports.searchPath.push(path);
// Import spawn library
const Spawn = imports.assets.spawn;
const App = function () {
this.title = 'Example Spawn';
GLib.set_prgname(this.title);
};
App.prototype.run = function (ARGV) {
this.application = new Gtk.Application();
this.application.connect('activate', () => { this.onActivate(); });
this.application.connect('startup', () => { this.onStartup(); });
this.application.run([]);
};
App.prototype.onActivate = function () {
this.window.show_all();
};
App.prototype.onStartup = function() {
this.buildUI();
this.spawn();
};
App.prototype.buildUI = function() {
let scroll;
this.window = new Gtk.ApplicationWindow({ application: this.application,
title: this.title,
default_height: 200,
default_width: 200,
window_position: Gtk.WindowPosition.CENTER });
try {
this.window.set_icon_from_file(path + '/assets/appIcon.png');
} catch (err) {
this.window.set_icon_name('application-x-executable');
}
scroll = new Gtk.ScrolledWindow({ vexpand: true });
this.buffer = new Gtk.TextBuffer();
this.buffer.insert_at_cursor('Result:\n', -1);
this.view = new Gtk.TextView();
this.view.set_buffer(this.buffer);
scroll.add(this.view);
this.window.add(scroll);
};
App.prototype.spawn = function() {
let reader;
reader = new Spawn.SpawnReader();
reader.spawn('./', ['ls', '-ltr', '.'], (line) => {
this.buffer.insert_at_cursor(String(line) + '\n', -1);
});
/* // Example of 'continuous' read with 'tail':
reader.spawn('./', ['tail', '-f', 'a.txt'], (line) => {
this.buffer.insert_at_cursor(String(line) + '\n', -1);
});
*/
};
//Run the application
let app = new App();
app.run(ARGV);