Compare commits

...

9 Commits

Author SHA1 Message Date
꧁[C̲̅j̲̅s̲̅a̲̅h̲̅]꧂
c3f4b9e7ab
Merge 94aaee8d9b into 85b1e7b548 2024-06-21 05:22:14 +08:00
Antecer
85b1e7b548 优化轮廓索引为0的Unicode排除方式 2024-06-20 17:11:53 +08:00
Antecer
d7ae1d4f0a 解析字体时排除轮廓索引为0的Unicode编码 2024-06-20 16:57:23 +08:00
Antecer
c907ed51b7 增加queryTTF函数可使用的数据类型 2024-06-20 12:09:12 +08:00
Antecer
576a370da1 优化复合字体轮廓数据结构 2024-06-20 10:57:02 +08:00
Antecer
d6c2b5eceb 替换轮廓数据时忽略索引0 2024-06-20 10:54:29 +08:00
Cjsah
94aaee8d9b
resolve refresh 2024-06-16 10:51:12 +08:00
Cjsah
96a3b6b802
remove .dev 2024-06-16 10:39:37 +08:00
Cjsah
f3d055c9bb
update set ip 2024-06-16 10:27:43 +08:00
12 changed files with 175 additions and 63 deletions

View File

@ -57,6 +57,7 @@ import java.io.File
import java.io.FileOutputStream import java.io.FileOutputStream
import java.net.URLEncoder import java.net.URLEncoder
import java.nio.charset.Charset import java.nio.charset.Charset
import java.security.MessageDigest
import java.text.SimpleDateFormat import java.text.SimpleDateFormat
import java.util.Date import java.util.Date
import java.util.Locale import java.util.Locale
@ -748,45 +749,68 @@ interface JsExtensions : JsEncodeUtils {
//******************文件操作************************// //******************文件操作************************//
/** /**
* 解析字体,返回字体解析类 * 解析字体Base64数据,返回字体解析类
*/ */
fun queryBase64TTF(base64: String?): QueryTTF? { fun queryBase64TTF(data: String?): QueryTTF? {
base64DecodeToByteArray(base64)?.let { log("queryBase64TTF(String)方法已过时,并将在未来删除请无脑使用queryTTF(Any)替代,新方法支持传入 url、本地文件、base64、ByteArray 自动判断&自动缓存特殊情况需禁用缓存请传入第二可选参数false:Boolean")
return QueryTTF(it) return queryTTF(data)
}
return null
} }
/** /**
* 返回字体解析类 * 返回字体解析类
* @param str 支持url,本地文件,base64,自动判断,自动缓存 * @param data 支持url,本地文件,base64,ByteArray,自动判断,自动缓存
* @param useCache 可选开关缓存,不传入该值默认开启缓存
*/ */
fun queryTTF(str: String?): QueryTTF? { @OptIn(ExperimentalStdlibApi::class)
str ?: return null fun queryTTF(data: Any?, useCache: Boolean): QueryTTF? {
try { try {
val key = md5Encode16(str) var key: String? = null
var qTTF = CacheManager.getQueryTTF(key) var qTTF: QueryTTF?
if (qTTF != null) return qTTF when (data) {
val font: ByteArray? = when { is String -> {
str.isAbsUrl() -> AnalyzeUrl(str, source = getSource()).getByteArray() if (useCache) {
str.isContentScheme() -> Uri.parse(str).readBytes(appCtx) key = MessageDigest.getInstance("SHA-256").digest(data.toByteArray()).toHexString()
str.startsWith("/storage") -> File(str).readBytes() qTTF = CacheManager.getQueryTTF(key)
else -> base64DecodeToByteArray(str) if (qTTF != null) return qTTF
}
val font: ByteArray? = when {
data.isContentScheme() -> Uri.parse(data).readBytes(appCtx)
data.startsWith("/storage") -> File(data).readBytes()
data.isAbsUrl() -> AnalyzeUrl(data, source = getSource()).getByteArray()
else -> base64DecodeToByteArray(data)
}
font ?: return null
qTTF = QueryTTF(font)
}
is ByteArray -> {
if (useCache) {
key = MessageDigest.getInstance("SHA-256").digest(data).toHexString()
qTTF = CacheManager.getQueryTTF(key)
if (qTTF != null) return qTTF
}
qTTF = QueryTTF(data)
}
else -> return null
} }
font ?: return null if (key != null) CacheManager.put(key, qTTF)
qTTF = QueryTTF(font)
CacheManager.put(key, qTTF) // debug注释掉
return qTTF return qTTF
} catch (e: Exception) { } catch (e: Exception) {
AppLog.put("获取字体处理类出错", e) AppLog.put("[queryTTF] 获取字体处理类出错", e)
throw e throw e
} }
} }
fun queryTTF(data: Any?): QueryTTF? {
return queryTTF(data, true)
}
/** /**
* @param text 包含错误字体的内容 * @param text 包含错误字体的内容
* @param errorQueryTTF 错误的字体 * @param errorQueryTTF 错误的字体
* @param correctQueryTTF 正确的字体 * @param correctQueryTTF 正确的字体
* @param filter 删除 errorQueryTTF 中不存在的字符
*/ */
fun replaceFont( fun replaceFont(
text: String, text: String,
@ -802,8 +826,9 @@ interface JsExtensions : JsEncodeUtils {
if (errorQueryTTF.isBlankUnicode(oldCode)) { if (errorQueryTTF.isBlankUnicode(oldCode)) {
return@forEachIndexed return@forEachIndexed
} }
val glyf = errorQueryTTF.getGlyfByUnicode(oldCode)
// 删除轮廓数据不存在的字符 // 删除轮廓数据不存在的字符
var glyf = errorQueryTTF.getGlyfByUnicode(oldCode) // 轮廓数据不存在
if (errorQueryTTF.getGlyfIdByUnicode(oldCode) == 0) glyf = null // 轮廓数据指向保留索引0
if (filter && (glyf == null)) { if (filter && (glyf == null)) {
contentArray[index] = "" contentArray[index] = ""
return@forEachIndexed return@forEachIndexed
@ -817,6 +842,11 @@ interface JsExtensions : JsEncodeUtils {
return contentArray.joinToString("") return contentArray.joinToString("")
} }
/**
* @param text 包含错误字体的内容
* @param errorQueryTTF 错误的字体
* @param correctQueryTTF 正确的字体
*/
fun replaceFont( fun replaceFont(
text: String, text: String,
errorQueryTTF: QueryTTF?, errorQueryTTF: QueryTTF?,

View File

@ -685,6 +685,7 @@ public class QueryTTF {
int unicodeInclusive = 0; int unicodeInclusive = 0;
int unicodeExclusive = f.glyphIdArray.length; int unicodeExclusive = f.glyphIdArray.length;
for (; unicodeInclusive < unicodeExclusive; unicodeInclusive++) { for (; unicodeInclusive < unicodeExclusive; unicodeInclusive++) {
if (f.glyphIdArray[unicodeInclusive] == 0) continue; // 排除轮廓索引为0的Unicode
unicodeToGlyphId.put(unicodeInclusive, f.glyphIdArray[unicodeInclusive]); unicodeToGlyphId.put(unicodeInclusive, f.glyphIdArray[unicodeInclusive]);
} }
break; break;
@ -711,12 +712,15 @@ public class QueryTTF {
int idDelta = f.idDelta[segmentIndex]; int idDelta = f.idDelta[segmentIndex];
int idRangeOffset = f.idRangeOffsets[segmentIndex]; int idRangeOffset = f.idRangeOffsets[segmentIndex];
for (int unicode = unicodeInclusive; unicode <= unicodeExclusive; unicode++) { for (int unicode = unicodeInclusive; unicode <= unicodeExclusive; unicode++) {
int glyphId = 0;
if (idRangeOffset == 0) { if (idRangeOffset == 0) {
unicodeToGlyphId.put(unicode, (unicode + idDelta) & 0xFFFF); glyphId = (unicode + idDelta) & 0xFFFF;
} else { } else {
int gIndex = (idRangeOffset / 2) + unicode - unicodeInclusive + segmentIndex - segCount; int gIndex = (idRangeOffset / 2) + unicode - unicodeInclusive + segmentIndex - segCount;
unicodeToGlyphId.put(unicode, gIndex < glyphIdArrayLength ? f.glyphIdArray[gIndex] + idDelta : 0); if (gIndex < glyphIdArrayLength) glyphId = f.glyphIdArray[gIndex] + idDelta;
} }
if (glyphId == 0) continue; // 排除轮廓索引为0的Unicode
unicodeToGlyphId.put(unicode, glyphId);
} }
} }
break; break;
@ -773,12 +777,12 @@ public class QueryTTF {
var dataTable = directorys.get("glyf"); var dataTable = directorys.get("glyf");
assert dataTable != null; assert dataTable != null;
int glyfCount = maxp.numGlyphs; int glyfCount = maxp.numGlyphs;
glyfArray = new GlyfLayout[glyfCount + 1]; // 创建容器多创建一个作为保留区 glyfArray = new GlyfLayout[glyfCount]; // 创建字形容器
var reader = new BufferReader(buffer, 0); var reader = new BufferReader(buffer, 0);
for (int index = 1; index <= glyfCount; index++) { for (int index = 0; index < glyfCount; index++) {
if (loca[index - 1] == loca[index]) continue; // 当前loca与下一个loca相同表示这个字形不存在 if (loca[index] == loca[index + 1]) continue; // 当前loca与下一个loca相同表示这个字形不存在
int offset = dataTable.offset + loca[index - 1]; int offset = dataTable.offset + loca[index];
// 读GlyphHeaders // 读GlyphHeaders
var glyph = new GlyfLayout(); var glyph = new GlyfLayout();
reader.position(offset); reader.position(offset);
@ -893,7 +897,7 @@ public class QueryTTF {
if ((glyphTableComponent.flags & 0x20) == 0) break; if ((glyphTableComponent.flags & 0x20) == 0) break;
} }
} }
glyfArray[index] = glyph; // 根据文档 glyfId=0 作为保留区使用这里赋值从索引1开始 glyfArray[index] = glyph;
} }
} }
@ -919,7 +923,15 @@ public class QueryTTF {
// 复合字形 // 复合字形
LinkedList<String> glyphIdList = new LinkedList<>(); LinkedList<String> glyphIdList = new LinkedList<>();
for (var g : glyph.glyphComponent) { for (var g : glyph.glyphComponent) {
glyphIdList.add(String.valueOf(g.glyphIndex)); glyphIdList.add("{" +
"flags:" + g.flags + "," +
"glyphIndex:" + g.glyphIndex + "," +
"arg1:" + g.argument1 + "," +
"arg2:" + g.argument2 + "," +
"xScale:" + g.xScale + "," +
"scale01:" + g.scale01 + "," +
"scale10:" + g.scale10 + "," +
"yScale:" + g.yScale + "}");
} }
glyphString = "[" + String.join(",", glyphIdList) + "]"; glyphString = "[" + String.join(",", glyphIdList) + "]";
} }
@ -965,10 +977,11 @@ public class QueryTTF {
int glyfArrayLength = glyfArray.length; int glyfArrayLength = glyfArray.length;
for (var item : unicodeToGlyphId.entrySet()) { for (var item : unicodeToGlyphId.entrySet()) {
int key = item.getKey(); int key = item.getKey();
int val = item.getValue() + 1; // glyphArray已根据TTF文档将索引0作为保留位这里从1开始索引 int val = item.getValue();
if (val >= glyfArrayLength) continue; if (val >= glyfArrayLength) continue;
String glyfString = getGlyfById(val); String glyfString = getGlyfById(val);
unicodeToGlyph.put(key, glyfString); unicodeToGlyph.put(key, glyfString);
if (glyfString == null) continue; // null 不能用作hashmap的key
glyphToUnicode.put(glyfString, key); glyphToUnicode.put(glyfString, key);
} }
// Log.i("QueryTTF", "字体处理完成"); // Log.i("QueryTTF", "字体处理完成");
@ -986,8 +999,8 @@ public class QueryTTF {
*/ */
public int getGlyfIdByUnicode(int unicode) { public int getGlyfIdByUnicode(int unicode) {
var result = unicodeToGlyphId.get(unicode); var result = unicodeToGlyphId.get(unicode);
if (result == null) return 0; if (result == null) return 0; // 如果找不到Unicode对应的轮廓索引就返回默认值0
return result + 1; // 根据TTF文档轮廓索引的定义从1开始 return result;
} }
/** /**
@ -1008,7 +1021,7 @@ public class QueryTTF {
*/ */
public int getUnicodeByGlyf(String glyph) { public int getUnicodeByGlyf(String glyph) {
var result = glyphToUnicode.get(glyph); var result = glyphToUnicode.get(glyph);
if (result == null) return 0; if (result == null) return 0; // 如果轮廓数据找不到对应的Unicode就返回默认值0
return result; return result;
} }

View File

@ -1 +0,0 @@
VITE_API=http://192.168.10.11:1122

View File

@ -1 +0,0 @@
VITE_API=

View File

@ -12,9 +12,8 @@
| Edge ≥ 79 | Firefox ≥ 78 | Chrome ≥ 64 | Safari ≥ 12 | | Edge ≥ 79 | Firefox ≥ 78 | Chrome ≥ 64 | Safari ≥ 12 |
## 开发 ## 开发
> 需要阅读app提供后端服务,开发前修改环境变量`VITE_API`为阅读web服务地址 > 需要阅读app提供后端服务
```bash ```bash
echo "VITE_API=http://<ip>:<port>" > .env.development
pnpm dev pnpm dev
``` ```

View File

@ -1,10 +1,25 @@
import axios from "axios"; import axios from "axios";
const SECOND = 1000; const SECOND = 1000;
const remoteIp = ref(localStorage.getItem("remoteIp"));
const ajax = axios.create({ const ajax = axios.create({
baseURL: import.meta.env.VITE_API || location.origin, // baseURL: import.meta.env.VITE_API || location.origin,
timeout: 120 * SECOND, timeout: 120 * SECOND,
}); });
ajax.interceptors.request.use((config) => {
config.baseURL = remoteIp.value;
return config;
});
export default ajax; export default ajax;
export const setRemoteIp = (ip) => {
remoteIp.value = ip;
localStorage.setItem("remoteIp", ip);
};
export const baseUrl = () => {
return remoteIp.value;
};

View File

@ -1,10 +1,13 @@
import ajax from "./axios"; import ajax, { baseUrl } from "./axios";
import { ElMessage } from "element-plus/es"; import { ElMessage } from "element-plus/es";
/** https://github.com/gedoor/legado/tree/master/app/src/main/java/io/legado/app/api */ /** https://github.com/gedoor/legado/tree/master/app/src/main/java/io/legado/app/api */
/** https://github.com/gedoor/legado/tree/master/app/src/main/java/io/legado/app/web */ /** https://github.com/gedoor/legado/tree/master/app/src/main/java/io/legado/app/web */
const { hostname, port } = new URL(import.meta.env.VITE_API || location.origin); const getUrl = () => {
const { hostname, port } = new URL(baseUrl());
return `${hostname}:${Number(port) + 1}`;
};
const isSourecEditor = /source/i.test(location.href); const isSourecEditor = /source/i.test(location.href);
const APIExceptionHandler = (error) => { const APIExceptionHandler = (error) => {
@ -29,7 +32,7 @@ const saveBookProgressWithBeacon = (bookProgress) => {
if (!bookProgress) return; if (!bookProgress) return;
// 常规请求可能会被取消 使用Fetch keep-alive 或者 navigator.sendBeacon // 常规请求可能会被取消 使用Fetch keep-alive 或者 navigator.sendBeacon
navigator.sendBeacon( navigator.sendBeacon(
`${import.meta.env.VITE_API || location.origin}/saveBookProgress`, `${baseUrl()}/saveBookProgress`,
JSON.stringify(bookProgress), JSON.stringify(bookProgress),
); );
}; };
@ -56,7 +59,7 @@ const search = (
/** @type {() => void} */ onFinish, /** @type {() => void} */ onFinish,
) => { ) => {
// webSocket // webSocket
const url = `ws://${hostname}:${Number(port) + 1}/searchBook`; const url = `ws://${getUrl()}/searchBook`;
const socket = new WebSocket(url); const socket = new WebSocket(url);
socket.onopen = () => { socket.onopen = () => {
@ -100,7 +103,7 @@ const debug = (
/** @type {() => void} */ onFinish, /** @type {() => void} */ onFinish,
) => { ) => {
// webSocket // webSocket
const url = `ws://${hostname}:${Number(port) + 1}/${ const url = `ws://${getUrl()}/${
isBookSource ? "bookSource" : "rssSource" isBookSource ? "bookSource" : "rssSource"
}Debug`; }Debug`;

View File

@ -82,5 +82,6 @@ declare global {
// for type re-export // for type re-export
declare global { declare global {
// @ts-ignore // @ts-ignore
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue' export type { Component, ComponentPublicInstance, ComputedRef, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue'
import('vue')
} }

View File

@ -50,15 +50,14 @@
</template> </template>
<script setup> <script setup>
import { dateFormat } from "../utils/utils"; import { dateFormat } from "../utils/utils";
import { baseUrl } from "@/api/axios.js";
const props = defineProps(["books", "isSearch"]); const props = defineProps(["books", "isSearch"]);
const emit = defineEmits(["bookClick"]); const emit = defineEmits(["bookClick"]);
const handleClick = (book) => emit("bookClick", book); const handleClick = (book) => emit("bookClick", book);
const getCover = (coverUrl) => { const getCover = (coverUrl) => {
return /^data:/.test(coverUrl) return /^data:/.test(coverUrl)
? coverUrl ? coverUrl
: (import.meta.env.VITE_API || location.origin) + : baseUrl() + "/cover?path=" + encodeURIComponent(coverUrl);
"/cover?path=" +
encodeURIComponent(coverUrl);
}; };
const subJustify = computed(() => const subJustify = computed(() =>
@ -105,7 +104,7 @@ const subJustify = computed(() =>
margin-left: 20px; margin-left: 20px;
flex: 1; flex: 1;
overflow: hidden; overflow: hidden;
.name { .name {
width: fit-content; width: fit-content;
font-size: 16px; font-size: 16px;

View File

@ -57,12 +57,20 @@ export const useBookStore = defineStore("book", {
setConnectType(connectType) { setConnectType(connectType) {
this.connectType = connectType; this.connectType = connectType;
}, },
resetConnect() {
this.connectStatus = "正在连接后端服务器……";
this.connectType = "";
this.clearBooks();
},
setNewConnect(newConnect) { setNewConnect(newConnect) {
this.newConnect = newConnect; this.newConnect = newConnect;
}, },
addBooks(books) { addBooks(books) {
this.shelf = books; this.shelf = books;
}, },
clearBooks() {
this.shelf = [];
},
setCatalog(catalog) { setCatalog(catalog) {
this.catalog = catalog; this.catalog = catalog;
}, },

View File

@ -1,4 +1,5 @@
import { formatDate } from "@vueuse/shared"; import { formatDate } from "@vueuse/shared";
import { baseUrl } from "@/api/axios.js";
export const isLegadoUrl = (/** @type {string} */ url) => export const isLegadoUrl = (/** @type {string} */ url) =>
/,\s*\{/.test(url) || /,\s*\{/.test(url) ||
@ -12,7 +13,7 @@ export const isLegadoUrl = (/** @type {string} */ url) =>
*/ */
export function getImageFromLegado(src) { export function getImageFromLegado(src) {
return ( return (
(import.meta.env.VITE_API || location.origin) + baseUrl() +
"/image?path=" + "/image?path=" +
encodeURIComponent(src) + encodeURIComponent(src) +
"&url=" + "&url=" +

View File

@ -40,14 +40,24 @@
</div> </div>
<div class="setting-wrapper"> <div class="setting-wrapper">
<div class="setting-title">基本设定</div> <div class="setting-title">基本设定</div>
<div class="setting-item"> <div class="setting-ip">
<el-input
class="setting-input"
size="small"
:disabled="ipInput.disable"
v-model="ipInput.ip"
@keydown.enter="setIP"
/>
<el-tag <el-tag
:type="connectType" type="primary"
size="large" class="setting-toggle"
class="setting-connect" @click="toggleIpConfig"
:class="{ 'no-point': newConnect }"
@click="setIP"
> >
{{ ipInput.disable ? "修改" : "取消" }}
</el-tag>
</div>
<div class="setting-item">
<el-tag :type="connectType" size="large" class="setting-connect">
{{ connectStatus }} {{ connectStatus }}
</el-tag> </el-tag>
</div> </div>
@ -81,6 +91,7 @@ import githubUrl from "@/assets/imgs/github.png";
import { useLoading } from "@/hooks/loading"; import { useLoading } from "@/hooks/loading";
import { Search } from "@element-plus/icons-vue"; import { Search } from "@element-plus/icons-vue";
import API from "@api"; import API from "@api";
import { baseUrl, setRemoteIp } from "@/api/axios.js";
const store = useBookStore(); const store = useBookStore();
const { connectStatus, connectType, newConnect, shelf } = storeToRefs(store); const { connectStatus, connectType, newConnect, shelf } = storeToRefs(store);
@ -136,7 +147,7 @@ const searchBook = () => {
} }
try { try {
store.setSearchBooks(JSON.parse(data)); store.setSearchBooks(JSON.parse(data));
books.value = store.searchBooks books.value = store.searchBooks;
//store.searchBooks.forEach((item) => books.value.push(item)); //store.searchBooks.forEach((item) => books.value.push(item));
} catch (e) { } catch (e) {
ElMessage.error("后端数据错误"); ElMessage.error("后端数据错误");
@ -152,7 +163,19 @@ const searchBook = () => {
); );
}; };
const setIP = () => {}; const ipInput = reactive({
ip: baseUrl(),
disable: true,
});
const toggleIpConfig = () => {
ipInput.ip = baseUrl();
ipInput.disable = !ipInput.disable;
};
const setIP = () => {
setRemoteIp(ipInput.ip);
ipInput.disable = true;
loadShelf();
};
const router = useRouter(); const router = useRouter();
const handleBookClick = async (book) => { const handleBookClick = async (book) => {
@ -195,13 +218,19 @@ onMounted(() => {
readingRecent.value.chapterIndex = 0; readingRecent.value.chapterIndex = 0;
} }
} }
loadShelf();
});
const loadShelf = () => {
store.resetConnect();
loadingWrapper( loadingWrapper(
store store
.saveBookProgress() .saveBookProgress()
// //
.finally(fetchBookShelfData), .finally(fetchBookShelfData),
); );
}); };
const fetchBookShelfData = () => { const fetchBookShelfData = () => {
return API.getBookShelf() return API.getBookShelf()
.then((response) => { .then((response) => {
@ -308,15 +337,31 @@ const fetchBookShelfData = () => {
font-family: FZZCYSK; font-family: FZZCYSK;
} }
.setting-ip {
margin-top: 16px;
white-space: nowrap;
}
.setting-input {
width: 216px;
margin-right: 4px;
}
.no-point { .no-point {
pointer-events: none; pointer-events: none;
} }
.setting-connect { .setting-toggle {
font-size: 8px; font-size: 10px;
margin-top: 16px;
// color: #6B7C87;
cursor: pointer; cursor: pointer;
//margin-top: 4px;
}
.setting-connect {
font-size: 10px;
margin-top: 4px;
// color: #6B7C87;
//cursor: pointer;
} }
} }