mirror of
https://github.com/bitechdev/ResolveSpec.git
synced 2025-12-06 22:36:23 +00:00
50 lines
1.2 KiB
Go
50 lines
1.2 KiB
Go
package reflection
|
|
|
|
import "reflect"
|
|
|
|
func Len(v any) int {
|
|
val := reflect.ValueOf(v)
|
|
valKind := val.Kind()
|
|
|
|
if valKind == reflect.Ptr {
|
|
val = val.Elem()
|
|
}
|
|
|
|
switch val.Kind() {
|
|
case reflect.Slice, reflect.Array, reflect.Map, reflect.String, reflect.Chan:
|
|
return val.Len()
|
|
default:
|
|
return 0
|
|
}
|
|
}
|
|
|
|
// ExtractTableNameOnly extracts the table name from a fully qualified table reference.
|
|
// It removes any schema prefix (e.g., "schema.table" -> "table") and truncates at
|
|
// the first delimiter (comma, space, tab, or newline). If the input contains multiple
|
|
// dots, it returns everything after the last dot up to the first delimiter.
|
|
func ExtractTableNameOnly(fullName string) string {
|
|
// First, split by dot to remove schema prefix if present
|
|
lastDotIndex := -1
|
|
for i, char := range fullName {
|
|
if char == '.' {
|
|
lastDotIndex = i
|
|
}
|
|
}
|
|
|
|
// Start from after the last dot (or from beginning if no dot)
|
|
startIndex := 0
|
|
if lastDotIndex != -1 {
|
|
startIndex = lastDotIndex + 1
|
|
}
|
|
|
|
// Now find the end (first delimiter after the table name)
|
|
for i := startIndex; i < len(fullName); i++ {
|
|
char := rune(fullName[i])
|
|
if char == ',' || char == ' ' || char == '\t' || char == '\n' {
|
|
return fullName[startIndex:i]
|
|
}
|
|
}
|
|
|
|
return fullName[startIndex:]
|
|
}
|