summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorriton <riton@riton.home>2025-03-18 15:39:15 +0300
committerriton <riton@riton.home>2025-03-18 15:39:15 +0300
commit12100ce3e036cd0fdf701b5c56a0810dc4823e84 (patch)
treec202bc7ff28f250fc8cf4a1794d8b5aa430ad873
parentb005e986c06681d98eb4f151147e96d8b5beddbb (diff)
markdown parser başlangıcı
-rw-r--r--html-jen.asd5
-rw-r--r--okur.lisp54
2 files changed, 58 insertions, 1 deletions
diff --git a/html-jen.asd b/html-jen.asd
index dec6e73..60ee243 100644
--- a/html-jen.asd
+++ b/html-jen.asd
@@ -3,4 +3,7 @@
:license "GPLv3"
:depends-on (uiop)
:description "Markdown dosyalarından HTML jenerasyonu yapan yazılım."
- :components ((:file "paket")))
+ :components ((:file "paket")
+ (:file "tanım")
+ (:file "okur")
+ (:file "html-jen")))
diff --git a/okur.lisp b/okur.lisp
new file mode 100644
index 0000000..6c865a4
--- /dev/null
+++ b/okur.lisp
@@ -0,0 +1,54 @@
+(in-package :html-jen)
+
+(defun dosya-metni-oku (dosya)
+ (let* ((uzunluk 0)
+ (metin
+ (with-output-to-string (out)
+ (with-open-file (in dosya :external-format :utf-8)
+ (loop :with arabellek := (make-array 8192 :element-type 'character)
+ :for n := (read-sequence arabellek in)
+ :while (< 0 n)
+ :do (incf uzunluk n)
+ (write-sequence arabellek out :start 0 :end n))))))
+ (values metin uzunluk)))
+
+(defclass okur ()
+ ((metin :initarg :metin :accessor metin
+ :documentation "Markdown string")
+ (i :initform 0 :accessor i
+ :documentation "Metin indeksi")
+ (uzunluk :initarg :uzunluk :accessor uzunluk
+ :documentation "Metin uzunluğu")
+ (dosya-ismi :initarg :dosya-ismi
+ :documentation "Okunan markdown dosyasının ismi")))
+
+(defun okur! (dosya-ismi)
+ (multiple-value-bind (metin uzunluk)
+ (dosya-metni-oku dosya-ismi)
+ (make-instance 'okur :metin metin :uzunluk uzunluk :dosya-ismi dosya-ismi)))
+
+(defmethod son? ((okur okur))
+ (>= (i okur)
+ (uzunluk okur)))
+
+(defmethod index-reset ((okur okur))
+ (setf (i oo) 0))
+
+(defparameter *blok-sonu* (format nil "~%~%"))
+
+(defmethod blok-oku ((okur okur))
+ (unless (son? okur)
+ (with-slots (i uzunluk metin) okur
+ (let ((son (or (search *blok-sonu* metin :start2 i)
+ uzunluk)))
+ (prog1 (make-array (- son i)
+ :element-type 'character
+ :displaced-to metin
+ :displaced-index-offset i)
+ (setf i (+ son 2)))))))
+
+(defmethod okur-blok-listesi ((okur okur))
+ (let ((blok (blok-oku okur)))
+ (if (null blok)
+ nil
+ (cons blok (okur-blok-listesi okur)))))