Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Foso/Cabret-Log

:pencil2: Method call logging for Kotlin Multiplatform
https://github.com/Foso/Cabret-Log

debuglog kotlin-compiler-plugin kotlin-ios kotlin-js kotlin-multiplatform kotlin-native

Last synced: about 19 hours ago
JSON representation

:pencil2: Method call logging for Kotlin Multiplatform

Awesome Lists containing this project

README

        

:pencil2: Cabret :pencil2:

[![jCenter](https://img.shields.io/badge/Apache-2.0-green.svg
)](https://github.com/Foso/DebugLog/blob/master/LICENSE)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
[![jCenter](https://img.shields.io/badge/Kotlin-1.4.21-green.svg
)](https://github.com/Foso/Sheasy/blob/master/LICENSE)

## Introduction 🙋‍♂️ 🙋‍

This is an Kotlin Library that enables Annotation-triggered method call logging for Kotlin Multiplatform. Inspired by [Hugo](https://github.com/JakeWharton/hugo), [Hunter-Debug](https://github.com/Leaking/Hunter/blob/master/README_hunter_debug.md) and the [blog posts](https://blog.bnorm.dev/) by [bnorm](https://github.com/bnorm) .

Simply add **@DebugLog** to your methods and it will automatically log all arguments that are passed to the function the return value and the time the function needed to excecute.

When the following function gets called:

```kotlin
@DebugLog
fun exampleFun(
first: String,
last: String,
age: Int = 31,
isLoggedIn: Boolean = false
): String = "$first $last"

fun main(){
exampleFun("Jens","Klingenberg")
}
```

It will automatically log:
```kotlin
Example -> exampleFun( first= Jens, last= Klingenberg, age= 31, isLoggedIn= false)
Example <- exampleFun() [2.63ms] = Jens Klingenberg
```

### Show some :heart: and star the repo to support the project

[![GitHub stars](https://img.shields.io/github/stars/Foso/Cabret-Log.svg?style=social&label=Star)](https://github.com/Foso/Cabret-Log) [![GitHub forks](https://img.shields.io/github/forks/Foso/Cabret-Log.svg?style=social&label=Fork)](https://github.com/Foso/Cabret-Log/fork) [![GitHub watchers](https://img.shields.io/github/watchers/Foso/Cabret-Log.svg?style=social&label=Watch)](https://github.com/Foso/Cabret-Log) [![Twitter Follow](https://img.shields.io/twitter/follow/jklingenberg_.svg?style=social)](https://twitter.com/jklingenberg_)

## Setup
> You can take a look at [DemoProject](https://github.com/Foso/Cabret-Log/tree/master/CabretDemo) as an example

### 1) Gradle Plugin

Add the dependency to your buildscript

```groovy
buildscript {
repositories {
mavenCentral()
}

dependencies {
classpath "de.jensklingenberg.cabret:cabret-gradle:1.0.3"
}
}

```
#### 2) Apply the plugin

Kotlin DSL:

```kotlin
plugins {
id("de.jensklingenberg.cabret")
}

configure {
enabled = true
version = "1.0.4"
}
```

Groovy DSL:

```gradle
plugins {
id 'de.jensklingenberg.cabret'
}

cabret {
enabled = true
version = 1.0.4
}
```

The plugin will only be active when **enabled** is set to **true**

### 3) Log Library
To be able to use the DebugLog annotation, you also need add the dependecies on cabret-log.

#### Multiplatform (Common, JS, Native)

You can add dependency to the right to the common source set:
```gradle
commonMain {
dependencies {
implementation "de.jensklingenberg.cabret:cabret-log:1.0.4"
}
}
```

#### Platform-specific
You can also add platform-specific dependecies

```gradle
sourceSets {
jvmMain {
dependencies {
implementation "de.jensklingenberg.cabret:cabret-log-jvm:1.0.4"
}
}
}
```

Here's a list of all available targets:
```gradle
def cabretVersion = "1.0.4"

implementation "de.jensklingenberg.cabret:cabret-log-jvm:$cabretVersion"
implementation "de.jensklingenberg.cabret:cabret-log-js:$cabretVersion"
implementation "de.jensklingenberg.cabret:cabret-log-android:$cabretVersion"
implementation "de.jensklingenberg.cabret:cabret-log-iosx64:$cabretVersion"
implementation "de.jensklingenberg.cabret:cabret-log-iosarm64:$cabretVersion"
implementation "de.jensklingenberg.cabret:cabret-log-linux:$cabretVersion"
implementation "de.jensklingenberg.cabret:cabret-log-macos:$cabretVersion"
implementation "de.jensklingenberg.cabret:cabret-log-watchosarm32:$cabretVersion"
implementation "de.jensklingenberg.cabret:cabret-log-watchosarm64:$cabretVersion"
implementation "de.jensklingenberg.cabret:cabret-log-tvosarm32:$cabretVersion"
implementation "de.jensklingenberg.cabret:cabret-log-tvosarm64:$cabretVersion"

```

### 4) Enable IR
Cabret is using a Kotlin Compiler Plugin that is using the IR Backend. For Native targets it's already enabled, but you need to activate it in your build.gradle for Kotlin JVM/JS

##### Kotlin/JVM
```kotlin
tasks.withType().configureEach {
kotlinOptions {
useIR = true
}
}
```

##### Kotlin/JS
```kotlin
target {
js(IR) {
}
}
```

## Logging

### Tag

```kotlin
@DebugLog( tag = "MyTag")
```

You can add a tag to the DebugLog annotation under which you can find your logged data. When you don't add a custom tag, Cabret will use the file name for top level function and the class name for class functions as the tag.

### LogLevel
```kotlin
@DebugLog(logLevel = Cabret.LogLevel.ERROR)
```

You can set a LogLevel to the DebugLog Annotation. You can choose between VERBOSE, DEBUG, INFO, WARN or ERROR. By default DEBUG is selected.

### Custom Logger
By default Cabret will log the data with printLn() or on Android with android.util.Log and the selected LogLevel. E.g. LogLevel.ERROR will be logged with Log.e(), LogLevel.INFO will be logged with Log.i(), etc.

You can add your own Logger. All you need to do is to add your object of Cabret.Logger to Cabret.addLogger() somewhere at the beginning of your programm.

```kotlin
Cabret.addLogger(object : Cabret.Logger {
override fun log(data: LogData) {
//Add your logger here
println(data.tag + " " + data.msg)
}
})
```

### 👷 Project Structure

* cabret-compiler-plugin - This module contains the Kotlin Compiler Plugin for JVM/JS targets
* cabret-compiler-native-plugin - This module contains the Kotlin Compiler Plugin for native targets
* cabret-compiler-runtime - This module contains the shared Kotlin Compiler Plugin Logic for JVM/JS/Native compiler
* cabret-gradle - This module contains the gradle plugin which triggers the two compiler plugins
* cabret-log - A Kotlin Multiplatform project with the DebugLog annotation and the default loggers
* DemoProject - A Kotlin Multiplatform project that is using the debuglog compiler plugin

## ✍️ Feedback

Feel free to send feedback on [Twitter](https://twitter.com/jklingenberg_) or [file an issue](https://github.com/foso/Cabret-Log/issues/new). Feature requests are always welcome.

## 📜 License

-------

This project is licensed under Apache License, Version 2.0

Copyright 2020 Jens Klingenberg

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.