mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-06-23 17:29:26 -04:00
89 lines
2.4 KiB
Dart
89 lines
2.4 KiB
Dart
import 'dart:collection';
|
|
import 'dart:ffi';
|
|
import 'package:libgit2dart/libgit2dart.dart';
|
|
import 'package:libgit2dart/src/bindings/libgit2_bindings.dart';
|
|
import 'package:libgit2dart/src/bindings/reflog.dart' as bindings;
|
|
|
|
class RefLog with IterableMixin<RefLogEntry> {
|
|
/// Initializes a new instance of [RefLog] class from provided [Reference].
|
|
///
|
|
/// **IMPORTANT**: Should be freed to release allocated memory.
|
|
RefLog(Reference ref) {
|
|
_reflogPointer = bindings.read(
|
|
repoPointer: ref.owner.pointer,
|
|
name: ref.name,
|
|
);
|
|
}
|
|
|
|
/// Pointer to memory address for allocated reflog object.
|
|
late final Pointer<git_reflog> _reflogPointer;
|
|
|
|
/// Lookups an entry by its index.
|
|
///
|
|
/// Requesting the reflog entry with an index of 0 will return the most
|
|
/// recently created entry.
|
|
RefLogEntry operator [](int index) {
|
|
return RefLogEntry(
|
|
bindings.getByIndex(
|
|
reflogPointer: _reflogPointer,
|
|
index: index,
|
|
),
|
|
);
|
|
}
|
|
|
|
/// Releases memory allocated for reflog object.
|
|
void free() => bindings.free(_reflogPointer);
|
|
|
|
@override
|
|
Iterator<RefLogEntry> get iterator => _RefLogIterator(_reflogPointer);
|
|
}
|
|
|
|
class RefLogEntry {
|
|
/// Initializes a new instance of [RefLogEntry] class from provided
|
|
/// pointer to RefLogEntry object in memory.
|
|
const RefLogEntry(this._entryPointer);
|
|
|
|
/// Pointer to memory address for allocated reflog entry object.
|
|
final Pointer<git_reflog_entry> _entryPointer;
|
|
|
|
/// Log message.
|
|
String get message => bindings.entryMessage(_entryPointer);
|
|
|
|
/// Committer of this entry.
|
|
Signature get committer => Signature(bindings.entryCommiter(_entryPointer));
|
|
|
|
@override
|
|
String toString() => 'RefLogEntry{message: $message, committer: $committer}';
|
|
}
|
|
|
|
class _RefLogIterator implements Iterator<RefLogEntry> {
|
|
_RefLogIterator(this._reflogPointer) {
|
|
_count = bindings.entryCount(_reflogPointer);
|
|
}
|
|
|
|
/// Pointer to memory address for allocated reflog object.
|
|
final Pointer<git_reflog> _reflogPointer;
|
|
|
|
RefLogEntry? _currentEntry;
|
|
int _index = 0;
|
|
late final int _count;
|
|
|
|
@override
|
|
RefLogEntry get current => _currentEntry!;
|
|
|
|
@override
|
|
bool moveNext() {
|
|
if (_index == _count) {
|
|
return false;
|
|
} else {
|
|
_currentEntry = RefLogEntry(
|
|
bindings.getByIndex(
|
|
reflogPointer: _reflogPointer,
|
|
index: _index,
|
|
),
|
|
);
|
|
_index++;
|
|
return true;
|
|
}
|
|
}
|
|
}
|