-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathBowlerStudioMenu.java
More file actions
1714 lines (1515 loc) · 53.4 KB
/
BowlerStudioMenu.java
File metadata and controls
1714 lines (1515 loc) · 53.4 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package com.neuronrobotics.bowlerstudio;
/**
* Sample Skeleton for "BowlerStudioMenuBar.fxml" Controller Class
* You can copy and paste this code into your favorite IDE
**/
import com.google.common.collect.Lists;
import com.neuronrobotics.bowlerstudio.assets.AssetFactory;
import com.neuronrobotics.bowlerstudio.assets.ConfigurationDatabase;
import com.neuronrobotics.bowlerstudio.assets.FontSizeManager;
import com.neuronrobotics.bowlerstudio.scripting.IGithubLoginListener;
import com.neuronrobotics.bowlerstudio.scripting.PasswordManager;
import com.neuronrobotics.bowlerstudio.scripting.ScriptingEngine;
import com.neuronrobotics.bowlerstudio.tabs.LocalFileScriptTab;
import com.neuronrobotics.bowlerstudio.vitamins.Vitamins;
//import com.neuronrobotics.imageprovider.CHDKImageProvider;
import com.neuronrobotics.nrconsole.util.FileSelectionFactory;
import com.neuronrobotics.nrconsole.util.PromptForGit;
import com.neuronrobotics.pidsim.LinearPhysicsEngine;
import com.neuronrobotics.sdk.addons.kinematics.MobileBase;
import com.neuronrobotics.sdk.pid.VirtualGenericPIDDevice;
import com.neuronrobotics.sdk.util.ThreadUtil;
import eu.mihosoft.vrl.v3d.CSG;
import eu.mihosoft.vrl.v3d.parametrics.CSGDatabase;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.event.Event;
import javafx.event.EventHandler;
import javafx.fxml.FXML;
import javafx.scene.Node;
import javafx.scene.control.*;
import javafx.scene.control.Alert.AlertType;
import javafx.stage.FileChooser.ExtensionFilter;
import javafx.stage.Stage;
import javafx.scene.layout.*;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.api.errors.NoHeadException;
import org.eclipse.jgit.api.errors.WrongRepositoryStateException;
import org.eclipse.jgit.errors.RevisionSyntaxException;
import org.eclipse.jgit.lib.ObjectId;
import org.eclipse.jgit.lib.Ref;
import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.revwalk.RevCommit;
import org.kohsuke.github.*;
import java.awt.Desktop;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.text.Normalizer;
import java.text.Normalizer.Form;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.function.Consumer;
import java.util.regex.Pattern;
import java.util.stream.Collectors;
public class BowlerStudioMenu implements MenuRefreshEvent, INewVitaminCallback {
@FXML // ResourceBundle that was given to the FXMLLoader
private ResourceBundle resources;
@FXML // URL location of the FXML file that was given to the FXMLLoader
private URL location;
@FXML // fx:id="CreaturesMenu"
private Menu CreaturesMenu; // Value injected by FXMLLoader
@FXML // fx:id="GitHubRoot"
private Menu GitHubRoot; // Value injected by FXMLLoader
@FXML // fx:id="workspacemenu"
private Menu workspacemenuHandle; // Value injected by FXMLLoader
@FXML // fx:id="MeneBarBowlerStudio"
private MenuBar MeneBarBowlerStudio; // Value injected by FXMLLoader
@FXML // fx:id="addMarlinGCODEDevice"
private MenuItem addMarlinGCODEDevice; // Value injected by FXMLLoader
@FXML // fx:id="addMarlinGCODEDevice"
private MenuItem loadFirmata; // Value injected by FXMLLoader
@FXML // fx:id="clearCache"
private MenuItem clearCache; // Value injected by FXMLLoader
@FXML // fx:id="createNewGist"
private MenuItem createNewGist; // Value injected by FXMLLoader
@FXML // fx:id="logoutGithub"
private MenuItem logoutGithub; // Value injected by FXMLLoader
@FXML // fx:id="myGists"
private Menu myGists; // Value injected by FXMLLoader
@FXML // fx:id="myOrganizations"
private Menu myOrganizations; // Value injected by FXMLLoader
@FXML // fx:id="myRepos"
private Menu myRepos; // Value injected by FXMLLoader
@FXML // fx:id="showDevicesPanel"
private MenuItem showDevicesPanel; // Value injected by FXMLLoader
@FXML // fx:id="showCreatureLab"
private MenuItem showCreatureLab; // Value injected by FXMLLoader
@FXML // fx:id="showTerminal"
private MenuItem showTerminal;
@FXML // fx:id="showTerminal"
private Menu WindowMenu;
@FXML // fx:id="watchingRepos"
private Menu watchingRepos; // Value injected by FXMLLoader
@FXML
private Menu vitaminsMenu;
@FXML
private MenuItem addNewVitamin;
private BowlerStudioModularFrame bowlerStudioModularFrame;
private String username;
private static BowlerStudioMenu selfRef = null;
private File openFile;
private Map<String, GHRepository> myPublic;
// PagedIterable<GHGist> gists ;
private HashMap<String, String> messages = new HashMap<String, String>();
private static SimpleDateFormat format = new SimpleDateFormat("E 'the' dd 'in' MMM-yyyy 'at' HH:mm");
private static SimpleDateFormat formatSimple = new SimpleDateFormat("MM-dd");
private static IssueReportingExceptionHandler exp = new IssueReportingExceptionHandler();
private static final Pattern NONLATIN = Pattern.compile("[^\\w-]");
private static final Pattern WHITESPACE = Pattern.compile("[\\s]");
private HashMap<String, Menu> vitaminTypeMenus = new HashMap<String, Menu>();
private CreatureLab3dController creatureLab3dController;
public BowlerStudioMenu(BowlerStudioModularFrame tl, CreatureLab3dController creatureLab3dController) {
bowlerStudioModularFrame = tl;
this.creatureLab3dController = creatureLab3dController;
}
@FXML
public void onMobileBaseFromGist(ActionEvent event) {
PromptForGit.prompt("Select a Creature From a Gist", "bcb4760a449190206170", (gitsId, file) -> {
loadMobilebaseFromGist(gitsId, file);
});
}
public void loadMobilebaseFromGist(String id, String file) {
loadMobilebaseFromGit("https://gist.github.com/" + id + ".git", file);
}
public MenuBar getMeneBarBowlerStudio() {
return MeneBarBowlerStudio;
}
public void setMeneBarBowlerStudio(MenuBar meneBarBowlerStudio) {
MeneBarBowlerStudio = meneBarBowlerStudio;
}
public void loadMobilebaseFromGit(String id, String file) {
new Thread() {
Exception ex = new Exception("Error Loading " + id + ":" + file);
// String stacktraceFromCatch =
// org.apache.commons.lang.exception.ExceptionUtils.getStackTrace(ex);
public void run() {
File f = null;
try {
f = ScriptingEngine.fileFromGit(id, file);
runScriptFromGit(id, file);
} catch (Throwable e) {
System.err.println("Error Loading " + id + ":" + file);
BowlerStudio.printStackTrace(e, f);
BowlerStudio.printStackTrace(ex, f);
// exp.except(ex,stacktraceFromCatch);
}
}
private void runScriptFromGit(String id, String file) throws Exception {
MobileBase mb;
ScriptingEngine.pull(id);
mb = (MobileBase) ScriptingEngine.gitScriptRun(CSGDatabase.getInstance(), id, file, null);
if (mb != null)
ConnectionManager.addConnection(mb, mb.getScriptingName());
else
System.err.println("\r\n\r\nNO MOBILE BASE found at " + id + "\t" + file);
}
}.start();
}
public void openUrlInNewTab(URL url) {
bowlerStudioModularFrame.openUrlInNewTab(url);
}
public void setToLoggedOut() {
this.username = "";
BowlerStudio.runLater(() -> {
myGists.getItems().clear();
logoutGithub.disableProperty().set(true);
logoutGithub.setText("Anonymous");
// ConfigurationDatabase.loginEvent(null);
this.username = null;
});
while (this.username != null)
ThreadUtil.wait(4);
}
public void setToLoggedIn() {
setToLoggedIn(username);
}
private void setToLoggedIn(final String n) {
// new Exception().printStackTrace();
if (n == null)
return;
this.username = n;
BowlerStudio.runLater(() -> {
logoutGithub.disableProperty().set(false);
logoutGithub.setText("Log out " + username);
new Thread() {
public void run() {
// ConfigurationDatabase.loginEvent(username);
// ConfigurationDatabase.getParamMap("workspace");
com.neuronrobotics.sdk.common.Log.debug("Login Success " + n);
BowlerStudioMenuWorkspace.loginEvent();
if (!PasswordManager.hasNetwork())
return;
GitHub gh = PasswordManager.getGithub();
while (gh == null || !PasswordManager.loggedIn()) {
gh = PasswordManager.getGithub();
ThreadUtil.wait(200);
}
new Thread(() -> {
openFilesInUI();
}).start();
GitHub github = gh;
loadOrganizations(github);
loadMyRepos(github);
loadWatchingRepos(github);
LoadGistMenu(github);
}
}.start();
});
}
private void openFilesInUI() {
String key = "studio-open-file";
// HashMap<String, Object> openGits =
// ConfigurationDatabase.getParamMap("studio-open-file");
Object[] set = ConfigurationDatabase.keySet("studio-open-file").toArray();
for (int i = 0; i < set.length; i++) {
try {
Thread.sleep(300);
} catch (InterruptedException e1) {
e1.printStackTrace();
}
if (String.class.isInstance(set[i])) {
String s = (String) set[i];
try {
@SuppressWarnings("unchecked")
ArrayList<String> repoFile = (ArrayList<String>) ConfigurationDatabase.getObject(key, s,
new ArrayList<>());
File f = ScriptingEngine.fileFromGit(repoFile.get(0), repoFile.get(1));
if (!f.exists() || (BowlerStudio.createFileTab(f) == null)) {
ConfigurationDatabase.removeObject(key, s);
System.err.println("Removing missing " + s);
}
} catch (Throwable e) {
ConfigurationDatabase.removeObject(key, s);
System.err.println("Error loading file " + s);
}
}
}
// HashMap<String, Object> openWeb =
// ConfigurationDatabase.getParamMap("studio-open-web");
String webKey = "studio-open-web";
for (String s : ConfigurationDatabase.keySet(webKey)) {
String repoFile = (String) ConfigurationDatabase.getObject(webKey, s, null);
if (repoFile != null)
try {
bowlerStudioModularFrame.openUrlInNewTab(new URI(repoFile).toURL());
} catch (Exception e) {
exp.uncaughtException(Thread.currentThread(), e);
}
}
}
private void loadWatchingRepos(GitHub github) {
new Thread(() -> {
BowlerStudio.runLater(() -> watchingRepos.getItems().clear());
ThreadUtil.wait(20);
GHMyself self;
try {
self = github.getMyself();
// Watched repos
List<GHRepository> watching = self.listSubscriptions().asList();
HashMap<String, Menu> ownerMenue = new HashMap<>();
for (GHRepository g : watching) {
if (ownerMenue.get(g.getOwnerName()) == null) {
ownerMenue.put(g.getOwnerName(), new Menu(g.getOwnerName()));
BowlerStudio.runLater(() -> {
try {
watchingRepos.getItems().add(ownerMenue.get(g.getOwnerName()));
} catch (Exception e) {
}
});
}
resetRepoMenue(ownerMenue.get(g.getOwnerName()), g);
}
} catch (IOException e1) {
new IssueReportingExceptionHandler().uncaughtException(Thread.currentThread(), e1);
}
}).start();
}
private void loadMyRepos(GitHub github) {
new Thread(() -> {
BowlerStudio.runLater(() -> myRepos.getItems().clear());
ThreadUtil.wait(20);
// Repos I own
try {
GHMyself self = github.getMyself();
myPublic = self.getAllRepositories();
HashMap<String, Menu> myownerMenue = new HashMap<>();
for (Map.Entry<String, GHRepository> entry : myPublic.entrySet()) {
GHRepository g = entry.getValue();
if (myownerMenue.get(g.getOwnerName()) == null) {
myownerMenue.put(g.getOwnerName(), new Menu(g.getOwnerName()));
BowlerStudio.runLater(() -> {
String ownerName = g.getOwnerName();
if (ownerName == null)
throw new RuntimeException("ownerName can not be null");
Menu e = myownerMenue.get(ownerName);
if (e == null)
throw new RuntimeException("Menu can not be null");
ObservableList<MenuItem> items = myRepos.getItems();
if (items == null)
throw new RuntimeException("Menue items can not be null");
items.add(e);
});
}
resetRepoMenue(myownerMenue.get(g.getOwnerName()), g);
}
} catch (Exception ex) {
new IssueReportingExceptionHandler().uncaughtException(Thread.currentThread(), ex);
// i have no public repso
}
}).start();
}
private void loadOrganizations(GitHub github) {
new Thread(() -> {
BowlerStudio.runLater(() -> myOrganizations.getItems().clear());
ThreadUtil.wait(20);
Map<String, GHOrganization> orgs;
try {
orgs = github.getMyOrganizations();
for (Map.Entry<String, GHOrganization> entry : orgs.entrySet()) {
// System.err.println("Org: "+org);
Menu OrgItem = new Menu(entry.getKey());
GHOrganization ghorg = entry.getValue();
Map<String, GHRepository> repos = ghorg.getRepositories();
for (Map.Entry<String, GHRepository> entry1 : repos.entrySet()) {
resetRepoMenue(OrgItem, entry1.getValue());
}
BowlerStudio.runLater(() -> {
myOrganizations.getItems().add(OrgItem);
});
}
} catch (Exception e) {
PasswordManager.checkInternet();
if (PasswordManager.hasNetwork())
new IssueReportingExceptionHandler().uncaughtException(Thread.currentThread(), e);
}
}).start();
}
private void LoadGistMenu(GitHub github) {
new Thread(() -> {
GHMyself myself;
try {
myself = github.getMyself();
System.err.println("Loading all my Gists");
BowlerStudio.runLater(() -> {
myGists.getItems().clear();
});
List<GHGist> gists = myself.listGists().asList();
for (GHGist gist : gists) {
String url = gist.getGitPushUrl();
String desc = gist.getDescription();
if (desc == null || desc.length() == 0 || desc.contentEquals("Adding new file from BowlerStudio")) {
desc = gist.getFiles().keySet().toArray()[0].toString();
}
String descriptionString = desc;
getSelfRef().messages.put(url, "GIST: " + descriptionString);
// Menu tmpGist = new Menu(desc);
// setUpRepoMenue(ownerMenue.get(g.getOwnerName()), g);
setUpRepoMenue(myGists, url, true, true);
}
} catch (IOException e) {
new IssueReportingExceptionHandler().uncaughtException(Thread.currentThread(), e);
}
}).start();
}
public static String gitURLtoMessage(String url) {
for (int i = 0; i < 5; i++) {
try {
if (getSelfRef().messages.get(url) != null)
break;
throw new RuntimeException();
} catch (Exception e) {
try {
Thread.sleep(500);
} catch (InterruptedException e1) {
e1.printStackTrace();
}
}
}
String string = getSelfRef().messages.get(url);
if (string == null)
string = url;
return string;
}
public static void setUpRepoMenue(Menu repoMenue, String url, boolean useAddToWorkspaceItem, boolean threaded) {
if (url.endsWith(".git"))
setUpRepoMenue(repoMenue, url, useAddToWorkspaceItem, threaded, gitURLtoMessage(url));
}
private static void resetRepoMenue(Menu repoMenue, GHRepository repo) {
String url = repo.getGitTransportUrl().replace("git://", "https://");
getSelfRef().messages.put(url, repo.getFullName());
setUpRepoMenue(repoMenue, url, true, true);
}
public static void setUpRepoMenue(Menu repoMenue, String url, boolean useAddToWorkspaceItem, boolean threaded,
String message) {
Thread t = new Thread() {
public void run() {
// String menueMessage = repo.getFullName();
Menu orgRepo = new Menu(message);
Menu orgFiles = new Menu("Files");
Menu orgCommits = new Menu("Commits");
Menu orgBranches = new Menu("Branches");
MenuItem updateRepo = new MenuItem("Update Repo...");
MenuItem addToWs = new MenuItem("Add Repo to Workspace");
addToWs.setOnAction(event -> {
new Thread() {
public void run() {
BowlerStudioMenuWorkspace.add(url);
}
}.start();
});
// String url = repo.getGitTransportUrl().replace("git://", "https://");
MenuResettingEventHandler loadCommitsEvent = createLoadCommitsEvent(url, orgCommits);
MenuResettingEventHandler loadBranchesEvent = createLoadBranchesEvent(url, orgBranches);
MenuResettingEventHandler loadFilesEvent = createLoadFileEvent(url, orgFiles);
Runnable myEvent = new Runnable() {
@Override
public void run() {
try {
// System.err.println("\n\nCommit event Detected " + url + " on branch "
// + ScriptingEngine.getBranch(url));
// new RuntimeException().printStackTrace();
BowlerStudio.runLater(() -> resetMenueForLoadingFiles("Files:", orgFiles, loadFilesEvent));
BowlerStudio.runLater(
() -> resetMenueForLoadingFiles("Commits:", orgCommits, loadCommitsEvent));
BowlerStudio.runLater(
() -> resetMenueForLoadingFiles("Branches:", orgBranches, loadBranchesEvent));
} catch (Throwable e) {
exp.uncaughtException(Thread.currentThread(), e);
}
}
};
loadCommitsEvent.setMenuReset(myEvent);
loadBranchesEvent.setMenuReset(myEvent);
loadFilesEvent.setMenuReset(myEvent);
updateRepo.setOnAction(event -> {
new Thread() {
@SuppressWarnings("restriction")
public void run() {
try {
ScriptingEngine.pull(url, ScriptingEngine.getBranch(url));
} catch (WrongRepositoryStateException ex) {
// ignore unsaved files
BowlerStudio.runLater(() -> {
@SuppressWarnings("restriction")
Alert alert = new Alert(AlertType.CONFIRMATION);
alert.setTitle("You have Un-Saved work, commit first");
alert.setHeaderText("You have Un-Saved work, commit first");
alert.setContentText("You have Un-Saved work, commit first");
});
} catch (Exception e) {
BowlerStudioMenu.checkandDelete(url);
}
myEvent.run();
// selfRef.onRefresh(null);
}
}.start();
});
MenuItem makeRelease = new MenuItem("Make Release...");
makeRelease.setOnAction(event -> {
System.err.println("Releasing " + url);
BowlerStudio.runLater(() -> {
Stage s = new Stage();
MakeReleaseController controller = new MakeReleaseController(url);
try {
controller.start(s);
} catch (Exception e) {
e.printStackTrace();
}
myEvent.run();
// selfRef.onRefresh(null);
});
});
MenuItem addFile = new MenuItem("Add file to Git Repo...");
addFile.setOnAction(event -> {
System.err.println("Adding file to : " + url);
BowlerStudio.runLater(() -> {
Stage s = new Stage();
AddFileToGistController controller = new AddFileToGistController(url, getSelfRef());
try {
controller.start(s);
} catch (Exception e) {
e.printStackTrace();
}
myEvent.run();
// selfRef.onRefresh(null);
});
});
MenuItem delete = new MenuItem("Delete Local Copy...");
delete.setOnAction(event -> {
checkandDelete(url);
});
ScriptingEngine.addOnCommitEventListeners(url, myEvent);
orgRepo.setOnShowing(event -> {
// On showing the menu, set up the rest of the handlers
new Thread(myEvent).start();
});
BowlerStudio.runLater(() -> {
if (useAddToWorkspaceItem)
orgRepo.getItems().add(addToWs);
orgRepo.getItems().addAll(updateRepo, addFile, makeRelease, orgFiles, orgCommits, orgBranches,
delete);
// BowlerStudio.runLater(() -> {
repoMenue.getItems().add(orgRepo);
// });
});
}
};
if (threaded)
t.start();
else
t.run();
}
public static void checkandDelete(String url) {
BowlerStudio.runLater(() -> {
Alert alert = new Alert(AlertType.CONFIRMATION);
alert.setTitle("Are you sure you have published all your work?");
alert.setHeaderText("This will wipe out the local cache for " + url);
alert.setContentText("All files that are not published will be deleted");
Node root = alert.getDialogPane();
Stage stage = (Stage) alert.getDialogPane().getScene().getWindow();
stage.setOnCloseRequest(ev -> alert.hide());
FontSizeManager.addListener(fontNum -> {
int tmp = fontNum - 10;
if (tmp < 12)
tmp = 12;
root.setStyle("-fx-font-size: " + tmp + "pt");
alert.getDialogPane().applyCss();
alert.getDialogPane().layout();
stage.sizeToScene();
});
Optional<ButtonType> result = alert.showAndWait();
if (result.get() == ButtonType.OK) {
new Thread(() -> {
ScriptingEngine.deleteRepo(url);
BowlerStudioMenuWorkspace.remove(url);
}).start();
} else {
System.err.println("Nothing was deleted");
}
});
}
private static MenuResettingEventHandler createLoadCommitsEvent(String url, Menu orgCommits) {
return new MenuResettingEventHandler() {
public boolean gistFlag = false;
@Override
public void handle(Event event) {
if (gistFlag) {
System.err.println("Another thread is managing this event " + url);
return;// another thread is
// servicing this gist
}
gistFlag = true;
String branchName;
try {
branchName = ScriptingEngine.getFullBranch(url);
} catch (Exception e1) {
exp.uncaughtException(Thread.currentThread(), e1);
return;
}
System.err.println("Load Commits event " + url + " on branch " + branchName);
new Thread(() -> {
BowlerStudio.runLater(() -> {
// removing this listener
// after menue is activated
// for the first time
orgCommits.setOnShowing(null);
gistFlag = false;
});
try {
ScriptingEngine.checkout(url, branchName);
ScriptingEngine.openGit(url, git -> {
Repository repo = git.getRepository();
// System.err.println("Commits of branch: " + branchName);
// System.err.println("-------------------------------------");
ObjectId resolve = repo.resolve(branchName);
if (resolve != null) {
Iterable<RevCommit> commits = git.log().add(resolve).call();
List<RevCommit> commitsList = Lists.newArrayList(commits.iterator());
BowlerStudio.runLater(() -> {
try {
orgCommits.getItems()
.add(new MenuItem("On Branch " + ScriptingEngine.getBranch(url)));
} catch (Exception e) {
exp.uncaughtException(Thread.currentThread(), e);
}
orgCommits.getItems().add(new SeparatorMenuItem());
});
// RevCommit previous = null;
for (RevCommit commit : commitsList) {
String date = format.format(new Date(commit.getCommitTime() * 1000L));
String fullData = commit.getName() + "\r\n" + commit.getAuthorIdent().getName()
+ "\r\n" + date + "\r\n" + commit.getFullMessage() + "\r\n"
+ "---------------------------------------------------\r\n";// +
// previous==null?"":getDiffOfCommit(previous,commit, repo, git);
// previous = commit;
String string = date + " " + commit.getAuthorIdent().getName() + " "
+ commit.getShortMessage();
if (string.length() > 80)
string = string.substring(0, 80);
// MenuItem tmp = new MenuItem(string);
CustomMenuItem tmp = new CustomMenuItem(new Label(string));
Tooltip tooltip = new Tooltip(fullData);
Tooltip.install(tmp.getContent(), tooltip);
tmp.setOnAction(ev -> {
new Thread() {
public void run() {
com.neuronrobotics.sdk.common.Log
.error("Selecting \r\n\r\n" + fullData);
String branch;
try {
branch = ScriptingEngine.getBranch(url);
} catch (Exception e1) {
branch = "newBranch";
}
String dateString = formatSimple
.format(new Date(commit.getCommitTime() * 1000L));
promptForNewBranch(branch + "-" + dateString,
"Creating Branch From Commit:\n\n" + fullData, newBranch -> {
new Thread() {
public void run() {
try {
String slugify = slugify(newBranch);
com.neuronrobotics.sdk.common.Log
.error("Creating " + slugify);
ScriptingEngine.setCommitContentsAsCurrent(url,
slugify, commit);
} catch (IOException e) {
exp.uncaughtException(Thread.currentThread(),
e);
} catch (GitAPIException e) {
exp.uncaughtException(Thread.currentThread(),
e);
}
}
}.start();
});
}
}.start();
});
BowlerStudio.runLater(() -> {
orgCommits.getItems().add(tmp);
});
}
}
});
BowlerStudio.runLater(() -> {
orgCommits.hide();
BowlerStudio.runLater(() -> {
orgCommits.show();
});
});
} catch (IOException e) {
exp.uncaughtException(Thread.currentThread(), e);
} catch (RevisionSyntaxException e) {
exp.uncaughtException(Thread.currentThread(), e);
} catch (NoHeadException e) {
exp.uncaughtException(Thread.currentThread(), e);
} catch (GitAPIException e) {
exp.uncaughtException(Thread.currentThread(), e);
} catch (Throwable e) {
exp.uncaughtException(Thread.currentThread(), e);
}
}).start();
}
};
}
public static String slugify(String input) {
String nowhitespace = WHITESPACE.matcher(input).replaceAll("-");
String normalized = Normalizer.normalize(nowhitespace, Form.NFD);
String slug = NONLATIN.matcher(normalized).replaceAll("").replace('-', '_');
return slug;
}
private static void promptForNewBranch(String exampleName, String reasonForCreating, Consumer<String> resultEvent) {
BowlerStudio.runLater(() -> {
TextInputDialog alert = new TextInputDialog(exampleName);
alert.setTitle("Create New Branch");
alert.setHeaderText(reasonForCreating);
alert.setContentText("Enter a new branch name: ");
Node root = alert.getDialogPane();
Stage stage = (Stage) alert.getDialogPane().getScene().getWindow();
stage.setOnCloseRequest(ev -> alert.hide());
FontSizeManager.addListener(fontNum -> {
int tmp = fontNum - 10;
if (tmp < 12)
tmp = 12;
root.setStyle("-fx-font-size: " + tmp + "pt");
alert.getDialogPane().applyCss();
alert.getDialogPane().layout();
stage.sizeToScene();
});
// Traditional way to get the response value.
Optional<String> result = alert.showAndWait();
// The Java 8 way to get the response value (with lambda expression).
result.ifPresent(resultEvent);
});
}
private static MenuResettingEventHandler createLoadBranchesEvent(String url, Menu orgBranches) {
return new MenuResettingEventHandler() {
public boolean gistFlag = false;
// EventHandler<Event> thisEvent = this;
@Override
public void handle(Event event) {
if (gistFlag) {
System.err.println("Another thread is managing this event " + url);
return;// another thread is
// servicing this gist
}
gistFlag = true;
System.err.println("Load Branches event " + url);
final MenuItem onBranch;
try {
onBranch = new MenuItem("On Branch " + ScriptingEngine.getBranch(url));
} catch (Exception e1) {
exp.uncaughtException(Thread.currentThread(), e1);
return;
} ;
new Thread(() -> {
BowlerStudio.runLater(() -> {
// removing this listener
// after menue is activated
// for the first time
orgBranches.setOnShowing(null);
gistFlag = false;
});
MenuItem newBranchItem = new MenuItem("New Branch...");
String newBranchName = "";
try {
newBranchName = ScriptingEngine.getBranch(url);
} catch (Exception e1) {
exp.uncaughtException(Thread.currentThread(), e1);
return;
}
String newBranchName1 = newBranchName;
String dateString = formatSimple.format(new Date());
newBranchItem.setOnAction(event1 -> {
promptForNewBranch(newBranchName1 + "-" + dateString,
"Create a new Branch from " + newBranchName1, newBranch -> {
new Thread() {
public void run() {
try {
String slugify = slugify(newBranch);
System.err.println("Creating Branch " + slugify);
ScriptingEngine.newBranch(url, slugify);
getMenuReset().run();
} catch (IOException e) {
exp.uncaughtException(Thread.currentThread(), e);
} catch (GitAPIException e) {
exp.uncaughtException(Thread.currentThread(), e);
}
}
}.start();
});
});
BowlerStudio.runLater(() -> {
try {
onBranch.setText("On Branch " + ScriptingEngine.getBranch(url));
orgBranches.getItems().add(onBranch);
} catch (Exception e) {
exp.uncaughtException(Thread.currentThread(), e);
}
orgBranches.getItems().add(new SeparatorMenuItem());
orgBranches.getItems().add(newBranchItem);
orgBranches.getItems().add(new SeparatorMenuItem());
});
if (PasswordManager.hasNetwork())
try {
Collection<Ref> branches = ScriptingEngine.getAllBranches(url);
for (Ref r : branches) {
createRepoMenuItem(url, orgBranches, onBranch, r, getMenuReset());
}
} catch (Throwable e) {
exp.uncaughtException(Thread.currentThread(), e);
}
System.err.println("Refreshing menu Branches");
BowlerStudio.runLater(() -> {
orgBranches.hide();
BowlerStudio.runLater(() -> {
orgBranches.show();
});
});
}).start();
}
};
}
private static void createRepoMenuItem(String url, Menu orgBranches, final MenuItem onBranch, Ref r,
Runnable menureset) {
String[] name2 = r.getName().split("/");
MenuItem tmp = new MenuItem(name2[name2.length - 1]);
Ref select = r;
String[] name = select.getName().split("/");
String myName = name[name.length - 1];
// System.err.println("Selecting Branch\r\n"+url+"
// \t\t"+myName);
tmp.setOnAction(ev -> {
new Thread() {
public void run() {
try {
switchToThisNewBranch(url, onBranch, select, myName);
menureset.run();
} catch (Exception e) {
exp.uncaughtException(Thread.currentThread(), e);
}
}
private void switchToThisNewBranch(String url, final MenuItem onBranch, Ref select, String myName)
throws Exception {
String was = ScriptingEngine.getBranch(url);
try {
ScriptingEngine.checkout(url, select);
} catch (org.eclipse.jgit.api.errors.CheckoutConflictException ex) {
BowlerStudio.runLater(() -> {
Alert alert = new Alert(AlertType.ERROR);// line 1
alert.setTitle("CheckoutConflictException");// line 2
alert.setHeaderText("This repo is in an a dirty state");// line 3
alert.setContentText(
"Please commit your changes before switching.\nAlternatly you can revert your changes.\nRepository must not have uncommitted changes before changing branches.");// line
// 4
Node root = alert.getDialogPane();
Stage stage = (Stage) alert.getDialogPane().getScene().getWindow();
stage.setOnCloseRequest(ev -> alert.hide());
FontSizeManager.addListener(fontNum -> {
int tmp = fontNum - 10;
if (tmp < 12)
tmp = 12;
root.setStyle("-fx-font-size: " + tmp + "pt");
alert.getDialogPane().applyCss();
alert.getDialogPane().layout();
stage.sizeToScene();
});
alert.showAndWait(); // line 5
});
return;
}
String s = ScriptingEngine.getBranch(url);
if (myName.contentEquals(s))
com.neuronrobotics.sdk.common.Log
.error("Changing from " + was + " to " + myName + " is now " + s + "... Success!");
onBranch.setText("On Branch " + s);
}
}.start();
});
BowlerStudio.runLater(() -> {
orgBranches.getItems().add(tmp);
});
}
@FXML
public void onLoadFile(ActionEvent e) {
new Thread() {
public void run() {
setName("Load File Thread");
if (openFile == null)
openFile = ScriptingEngine.getLastFile();
openFile = FileSelectionFactory.GetFile(openFile, new ExtensionFilter("All", "*.*"),
new ExtensionFilter("Groovy Scripts", "*.groovy", "*.java", "*.txt"),
new ExtensionFilter("Clojure", "*.cloj", "*.clj", "*.txt", "*.clojure"),
new ExtensionFilter("Python", "*.py", "*.python", "*.txt"),
new ExtensionFilter("DXF", "*.dxf", "*.DXF"),
new ExtensionFilter("GCODE", "*.gcode", "*.nc", "*.ncg", "*.txt"),
new ExtensionFilter("Image", "*.jpg", "*.jpeg", "*.JPG", "*.png", "*.PNG"),
new ExtensionFilter("STL", "*.stl", "*.STL", "*.Stl"));
if (openFile == null) {
return;
}
bowlerStudioModularFrame.createFileTab(openFile);
}
}.start();
}
private static void resetMenueForLoadingFiles(String string, Menu orgFiles, EventHandler<Event> loadFiles) {
BowlerStudio.runLater(() -> {
try {
BowlerStudio.runLater(() -> {
orgFiles.getItems().clear();
// orgFiles.hide();
BowlerStudio.runLater(() -> {
orgFiles.getItems().add(new MenuItem(string));
orgFiles.getItems().add(new SeparatorMenuItem());
orgFiles.setOnShowing(loadFiles);
// BowlerStudio.runLater(() ->orgFiles.show());
});
});
} catch (Throwable t) {
t.printStackTrace();