|
1 |
| -import 'dart:ffi' as ffi; |
2 | 1 | import 'dart:ffi';
|
| 2 | +import 'dart:ffi' as ffi; |
| 3 | + |
| 4 | +import 'dart:io'; |
| 5 | + |
3 | 6 | import 'dart:typed_data';
|
4 | 7 | import 'package:ffi/ffi.dart';
|
5 |
| -import 'dart:io'; |
6 | 8 |
|
7 |
| -import 'generated_bindings.dart'; |
| 9 | +import 'go_git_dart_bindings_generated.dart'; |
| 10 | + |
| 11 | +const String _libName = 'go_git_dart'; |
8 | 12 |
|
9 | 13 | class GitBindings {
|
10 |
| - late final NativeLibrary lib; |
| 14 | + late final GoGitDartBindings lib; |
| 15 | + |
| 16 | + GitBindings(DynamicLibrary? dylib) { |
| 17 | + dylib ??= () { |
| 18 | + if (Platform.isMacOS || Platform.isIOS) { |
| 19 | + return DynamicLibrary.open('$_libName.framework/$_libName'); |
| 20 | + } |
| 21 | + if (Platform.isAndroid || Platform.isLinux) { |
| 22 | + return DynamicLibrary.open('lib$_libName.so'); |
| 23 | + } |
| 24 | + if (Platform.isWindows) { |
| 25 | + return DynamicLibrary.open('$_libName.dll'); |
| 26 | + } |
| 27 | + throw UnsupportedError('Unknown platform: ${Platform.operatingSystem}'); |
| 28 | + }(); |
11 | 29 |
|
12 |
| - GitBindings(String libraryPath) { |
13 |
| - lib = NativeLibrary(ffi.DynamicLibrary.open(libraryPath)); |
| 30 | + lib = GoGitDartBindings(dylib); |
14 | 31 | }
|
15 | 32 |
|
16 | 33 | void clone(
|
@@ -154,56 +171,3 @@ class GitBindings {
|
154 | 171 | return branch;
|
155 | 172 | }
|
156 | 173 | }
|
157 |
| - |
158 |
| -String _getCorrectLibrary() { |
159 |
| - return '/Users/vishesh/src/gitjournal/go-git-dart/gitjournal.so'; |
160 |
| -} |
161 |
| - |
162 |
| -void main(List<String> arguments) { |
163 |
| - if (arguments.isEmpty) { |
164 |
| - print('Please provide a command: clone, fetch, push, defaultBranch'); |
165 |
| - return; |
166 |
| - } |
167 |
| - |
168 |
| - final command = arguments[0]; |
169 |
| - final bindings = GitBindings(_getCorrectLibrary()); |
170 |
| - |
171 |
| - switch (command) { |
172 |
| - case 'clone': |
173 |
| - if (arguments.length != 5) { |
174 |
| - print('Usage: clone <url> <directory> <pemFile> <pemPassword>'); |
175 |
| - return; |
176 |
| - } |
177 |
| - final pemBytes = File(arguments[3]).readAsBytesSync(); |
178 |
| - bindings.clone(arguments[1], arguments[2], pemBytes, arguments[4]); |
179 |
| - break; |
180 |
| - case 'fetch': |
181 |
| - case 'push': |
182 |
| - case 'defaultBranch': |
183 |
| - if (arguments.length != 4) { |
184 |
| - print('Usage: $command <remote> <pemFile> <pemPassword>'); |
185 |
| - return; |
186 |
| - } |
187 |
| - final directory = Directory.current.path; |
188 |
| - print(directory); |
189 |
| - final pemBytes = File(arguments[2]).readAsBytesSync(); |
190 |
| - |
191 |
| - switch (command) { |
192 |
| - case 'fetch': |
193 |
| - bindings.fetch(arguments[1], directory, pemBytes, arguments[3]); |
194 |
| - break; |
195 |
| - case 'push': |
196 |
| - bindings.push(arguments[1], directory, pemBytes, arguments[3]); |
197 |
| - break; |
198 |
| - case 'defaultBranch': |
199 |
| - var branch = bindings.defaultBranch( |
200 |
| - arguments[1], directory, pemBytes, arguments[3]); |
201 |
| - print("DefaultBranch: $branch"); |
202 |
| - break; |
203 |
| - } |
204 |
| - break; |
205 |
| - default: |
206 |
| - print('Unknown command: $command'); |
207 |
| - break; |
208 |
| - } |
209 |
| -} |
0 commit comments