generated from mingliqiye/lib-tem
- 重写 Collection 类,使用 Kotlin 语法和特性优化代码结构 - 添加新方法以支持数组和集合之间的转换 - 新增 CopyOnWriteArrayList、Stack 和 TreeSet 相关方法 -优化现有方法,提高代码可读性和性能 - 删除未使用的 ForEach 导入 -调整 build.gradle.kts 中的依赖项
106 lines
2.6 KiB
Kotlin
106 lines
2.6 KiB
Kotlin
/*
|
|
* Copyright 2025 mingliqiye
|
|
*
|
|
* 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.
|
|
*
|
|
* ProjectName mingli-utils
|
|
* ModuleName mingli-utils.main
|
|
* CurrentFile OsPath.kt
|
|
* LastUpdate 2025-09-15 08:59:15
|
|
* UpdateUser MingLiPro
|
|
*/
|
|
|
|
|
|
|
|
package com.mingliqiye.utils.path
|
|
|
|
import java.io.File
|
|
import java.net.URI
|
|
import java.nio.file.*
|
|
import java.util.*
|
|
import java.util.function.Consumer
|
|
|
|
class OsPath private constructor(private val path: Path) : Path by path {
|
|
|
|
companion object {
|
|
@JvmStatic
|
|
fun of(path: String): OsPath {
|
|
return of(Paths.get(path))
|
|
}
|
|
|
|
@JvmStatic
|
|
fun of(path: Path): OsPath {
|
|
return OsPath(path)
|
|
}
|
|
|
|
@JvmStatic
|
|
fun of(uri: URI): OsPath {
|
|
return OsPath(Paths.get(uri))
|
|
}
|
|
|
|
@JvmStatic
|
|
fun of(file: File): OsPath {
|
|
return OsPath(file.toPath())
|
|
}
|
|
|
|
@JvmStatic
|
|
fun getCwd(): OsPath {
|
|
return OsPath(Paths.get(""))
|
|
}
|
|
}
|
|
|
|
override fun getParent(): Path? {
|
|
var parent = path.parent
|
|
if (parent == null) {
|
|
parent = path.toAbsolutePath().parent
|
|
}
|
|
return parent
|
|
}
|
|
|
|
override fun toRealPath(vararg options: LinkOption): Path {
|
|
return OsPath(path.toRealPath(*options))
|
|
}
|
|
|
|
override fun register(watcher: WatchService, vararg events: WatchEvent.Kind<*>): WatchKey {
|
|
return path.register(watcher, *events)
|
|
}
|
|
|
|
override fun register(
|
|
watcher: WatchService,
|
|
events: Array<out WatchEvent.Kind<*>>,
|
|
vararg modifiers: WatchEvent.Modifier
|
|
): WatchKey {
|
|
return path.register(watcher, events, *modifiers)
|
|
}
|
|
|
|
override fun iterator(): MutableIterator<Path> {
|
|
return path.iterator()
|
|
}
|
|
|
|
override fun compareTo(other: Path): Int {
|
|
return path.compareTo(other)
|
|
}
|
|
|
|
override fun toString(): String {
|
|
return path.toString()
|
|
}
|
|
|
|
override fun forEach(action: Consumer<in Path>) {
|
|
path.forEach(action)
|
|
}
|
|
|
|
override fun spliterator(): Spliterator<Path> {
|
|
return path.spliterator()
|
|
}
|
|
}
|