Skip to content

Commit a16fc20

Browse files
committed
Make this into a proper library
1 parent 189bc1d commit a16fc20

19 files changed

+396
-80
lines changed

.metadata

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: "db7ef5bf9f59442b0e200a90587e8fa5e0c6336a"
8+
channel: "stable"
9+
10+
project_type: plugin_ffi
11+
12+
# Tracks metadata for the flutter migrate command
13+
migration:
14+
platforms:
15+
- platform: root
16+
create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
17+
base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
18+
- platform: macos
19+
create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
20+
base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
21+
22+
# User provided section
23+
24+
# List of Local paths (relative to this file) that should be
25+
# ignored by the migrate tool.
26+
#
27+
# Files that are not part of the templates will be ignored by default.
28+
unmanaged_files:
29+
- 'lib/main.dart'
30+
- 'ios/Runner.xcodeproj/project.pbxproj'

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

22
build:
3-
go build -o gitjournal.so -buildmode=c-shared gitjournal.go
3+
cd src && go build -o gitjournal.so -buildmode=c-shared gitjournal.go
44
dart run ffigen

analysis_options.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
include: package:flutter_lints/flutter.yaml
2+
3+
# Additional information about this file can be found at
4+
# https://dart.dev/guides/language/analysis-options

android/.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/workspace.xml
5+
/.idea/libraries
6+
.DS_Store
7+
/build
8+
/captures
9+
.cxx

android/build.gradle

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
group 'com.example.go_git_dart'
2+
version '1.0'
3+
4+
buildscript {
5+
repositories {
6+
google()
7+
mavenCentral()
8+
}
9+
10+
dependencies {
11+
// The Android Gradle Plugin knows how to build native code with the NDK.
12+
// classpath 'com.android.tools.build:gradle:7.3.0'
13+
}
14+
}
15+
16+
rootProject.allprojects {
17+
repositories {
18+
google()
19+
mavenCentral()
20+
}
21+
}
22+
23+
apply plugin: 'com.android.library'
24+
25+
android {
26+
if (project.android.hasProperty("namespace")) {
27+
namespace 'com.example.go_git_dart'
28+
}
29+
30+
// Bumping the plugin compileSdkVersion requires all clients of this plugin
31+
// to bump the version in their app.
32+
compileSdkVersion 33
33+
34+
defaultConfig {
35+
minSdkVersion 19
36+
sourceSets {
37+
main {
38+
jniLibs.srcDirs = ['jniLibs']
39+
}
40+
}
41+
}
42+
}

android/settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'go_git_dart'

android/src/main/AndroidManifest.xml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="com.example.go_git_dart">
3+
</manifest>

bin/git.dart

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
// ignore_for_file: avoid_print
2+
3+
import 'dart:ffi';
4+
import 'dart:io';
5+
6+
import 'package:go_git_dart/go_git_dart.dart';
7+
8+
String _getCorrectLibrary() {
9+
return '/Users/vishesh/src/gitjournal/go-git-dart/src/gitjournal.so';
10+
}
11+
12+
void main(List<String> arguments) {
13+
if (arguments.isEmpty) {
14+
print('Please provide a command: clone, fetch, push, defaultBranch');
15+
return;
16+
}
17+
18+
final command = arguments[0];
19+
final dylib = DynamicLibrary.open(_getCorrectLibrary());
20+
final bindings = GitBindings(dylib);
21+
22+
switch (command) {
23+
case 'clone':
24+
if (arguments.length != 5) {
25+
print('Usage: clone <url> <directory> <pemFile> <pemPassword>');
26+
return;
27+
}
28+
final pemBytes = File(arguments[3]).readAsBytesSync();
29+
bindings.clone(arguments[1], arguments[2], pemBytes, arguments[4]);
30+
break;
31+
case 'fetch':
32+
case 'push':
33+
case 'defaultBranch':
34+
if (arguments.length != 4) {
35+
print('Usage: $command <remote> <pemFile> <pemPassword>');
36+
return;
37+
}
38+
final directory = Directory.current.path;
39+
print(directory);
40+
final pemBytes = File(arguments[2]).readAsBytesSync();
41+
42+
switch (command) {
43+
case 'fetch':
44+
bindings.fetch(arguments[1], directory, pemBytes, arguments[3]);
45+
break;
46+
case 'push':
47+
bindings.push(arguments[1], directory, pemBytes, arguments[3]);
48+
break;
49+
case 'defaultBranch':
50+
var branch = bindings.defaultBranch(
51+
arguments[1], directory, pemBytes, arguments[3]);
52+
print("DefaultBranch: $branch");
53+
break;
54+
}
55+
break;
56+
default:
57+
print('Unknown command: $command');
58+
break;
59+
}
60+
}

ios/Classes/go_git_dart.c

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Relative import to be able to reuse the C sources.
2+
// See the comment in ../{projectName}}.podspec for more information.
3+
#include "../../src/go_git_dart.c"

ios/go_git_dart.podspec

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#
2+
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
3+
# Run `pod lib lint go_git_dart.podspec` to validate before publishing.
4+
#
5+
Pod::Spec.new do |s|
6+
s.name = 'go_git_dart'
7+
s.version = '0.0.1'
8+
s.summary = 'A new Flutter FFI plugin project.'
9+
s.description = <<-DESC
10+
A new Flutter FFI plugin project.
11+
DESC
12+
s.homepage = 'http://example.com'
13+
s.license = { :file => '../LICENSE' }
14+
s.author = { 'Your Company' => '[email protected]' }
15+
16+
# This will ensure the source files in Classes/ are included in the native
17+
# builds of apps using this FFI plugin. Podspec does not support relative
18+
# paths, so Classes contains a forwarder C file that relatively imports
19+
# `../src/*` so that the C sources can be shared among all target platforms.
20+
s.source = { :path => '.' }
21+
s.source_files = 'Classes/**/*'
22+
s.dependency 'Flutter'
23+
s.platform = :ios, '11.0'
24+
25+
# Flutter.framework does not contain a i386 slice.
26+
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
27+
s.swift_version = '5.0'
28+
end

main.dart lib/go_git_dart.dart

+23-59
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,33 @@
1-
import 'dart:ffi' as ffi;
21
import 'dart:ffi';
2+
import 'dart:ffi' as ffi;
3+
4+
import 'dart:io';
5+
36
import 'dart:typed_data';
47
import 'package:ffi/ffi.dart';
5-
import 'dart:io';
68

7-
import 'generated_bindings.dart';
9+
import 'go_git_dart_bindings_generated.dart';
10+
11+
const String _libName = 'go_git_dart';
812

913
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+
}();
1129

12-
GitBindings(String libraryPath) {
13-
lib = NativeLibrary(ffi.DynamicLibrary.open(libraryPath));
30+
lib = GoGitDartBindings(dylib);
1431
}
1532

1633
void clone(
@@ -154,56 +171,3 @@ class GitBindings {
154171
return branch;
155172
}
156173
}
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-
}

linux/CMakeLists.txt

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# The Flutter tooling requires that developers have CMake 3.10 or later
2+
# installed. You should not increase this version, as doing so will cause
3+
# the plugin to fail to compile for some customers of the plugin.
4+
cmake_minimum_required(VERSION 3.10)
5+
6+
# Project-level configuration.
7+
set(PROJECT_NAME "go_git_dart")
8+
project(${PROJECT_NAME} LANGUAGES CXX)
9+
10+
# Invoke the build for native code shared with the other target platforms.
11+
# This can be changed to accommodate different builds.
12+
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/../src" "${CMAKE_CURRENT_BINARY_DIR}/shared")
13+
14+
# List of absolute paths to libraries that should be bundled with the plugin.
15+
# This list could contain prebuilt libraries, or libraries created by an
16+
# external build triggered from this build file.
17+
set(go_git_dart_bundled_libraries
18+
# Defined in ../src/CMakeLists.txt.
19+
# This can be changed to accommodate different builds.
20+
$<TARGET_FILE:go_git_dart>
21+
PARENT_SCOPE
22+
)

macos/Classes/go_git_dart.c

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Relative import to be able to reuse the C sources.
2+
// See the comment in ../{projectName}}.podspec for more information.
3+
#include "../../src/go_git_dart.c"

macos/go_git_dart.podspec

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#
2+
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
3+
# Run `pod lib lint go_git_dart.podspec` to validate before publishing.
4+
#
5+
Pod::Spec.new do |s|
6+
s.name = 'go_git_dart'
7+
s.version = '0.0.1'
8+
s.summary = 'A new Flutter FFI plugin project.'
9+
s.description = <<-DESC
10+
A new Flutter FFI plugin project.
11+
DESC
12+
s.homepage = 'http://example.com'
13+
s.license = { :file => '../LICENSE' }
14+
s.author = { 'Your Company' => '[email protected]' }
15+
16+
# This will ensure the source files in Classes/ are included in the native
17+
# builds of apps using this FFI plugin. Podspec does not support relative
18+
# paths, so Classes contains a forwarder C file that relatively imports
19+
# `../src/*` so that the C sources can be shared among all target platforms.
20+
s.source = { :path => '.' }
21+
s.source_files = 'Classes/**/*'
22+
s.dependency 'FlutterMacOS'
23+
24+
s.platform = :osx, '10.11'
25+
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
26+
s.swift_version = '5.0'
27+
end

0 commit comments

Comments
 (0)