Skip to content

Commit

Permalink
* rudel-protocol.el (new file): interface for Rudel protocol backends
Browse files Browse the repository at this point in the history
* Project.ede (target rudel): added rudel-protocol.el
* Makefile (rudel_LISP): added rudel-protocol.el
  • Loading branch information
jan committed Aug 2, 2009
1 parent 73d08f4 commit f6a2db0
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -13,7 +13,7 @@ EMACS=emacs
LOADPATH= ../../opt/emacs/share/emacs/site-lisp/cedet/common/
LOADDEFS=rudel-loaddefs.el
LOADDIRS=. jupiter obby
rudel_LISP=rudel.el rudel-util.el rudel-mode.el rudel-interactive.el rudel-overlay.el rudel-speedbar.el rudel-operators.el rudel-operations.el rudel-compat.el rudel-tls.el rudel-errors.el rudel-state-machine.el rudel-backend.el
rudel_LISP=rudel.el rudel-util.el rudel-mode.el rudel-interactive.el rudel-overlay.el rudel-speedbar.el rudel-operators.el rudel-operations.el rudel-compat.el rudel-tls.el rudel-errors.el rudel-state-machine.el rudel-backend.el rudel-protocol.el
EMACS=emacs
EMACSFLAGS=-batch --no-site-file
VERSION=0.1
Expand Down
2 changes: 1 addition & 1 deletion Project.ede
Expand Up @@ -14,7 +14,7 @@
(ede-proj-target-elisp "compile"
:name "rudel"
:path ""
:source '("rudel.el" "rudel-util.el" "rudel-mode.el" "rudel-interactive.el" "rudel-overlay.el" "rudel-speedbar.el" "rudel-operators.el" "rudel-operations.el" "rudel-compat.el" "rudel-tls.el" "rudel-errors.el" "rudel-state-machine.el" "rudel-backend.el")
:source '("rudel.el" "rudel-util.el" "rudel-mode.el" "rudel-interactive.el" "rudel-overlay.el" "rudel-speedbar.el" "rudel-operators.el" "rudel-operations.el" "rudel-compat.el" "rudel-tls.el" "rudel-errors.el" "rudel-state-machine.el" "rudel-backend.el" "rudel-protocol.el")
)
)
:web-site-url "http://rudel.sourceforge.net/"
Expand Down
83 changes: 83 additions & 0 deletions rudel-protocol.el
@@ -0,0 +1,83 @@
;;; rudel-protocol.el --- Interface implemented by Rudel protocol backends
;;
;; Copyright (C) 2009 Jan Moringen
;;
;; Author: Jan Moringen <scymtym@users.sourceforge.net>
;; Keywords: Rudel, backend, protocol
;; X-RCS: $Id:$
;;
;; This file is part of Rudel.
;;
;; Rudel is free software: you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; Rudel is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with Rudel. If not, see <http://www.gnu.org/licenses>.


;;; Commentary:
;;
;; This file contains the interface for Rudel protocol backends. This
;; interface consists of the following functions:
;;
;; + joining sessions
;; + `rudel-ask-join-info'
;; + `rudel-join'
;; + hosting sessions
;; + `rudel-ask-host-info'
;; + `rudel-host'
;; + factory functions
;; + `rudel-make-document'


;;; History:
;;
;; 0.1 - Initial revision


;;; Code:
;;

(require 'eieio)

(require 'rudel-backend)


;;; Class rudel-protocol-backend
;;

(defclass rudel-protocol-backend (rudel-backend)
()
"Interface implemented by protocol backends."
:abstract t)

(defgeneric rudel-ask-join-info ((this rudel-protocol-backend))
"Retrieve information for joining a session from user.
Return a property list that contains the collected information.")

(defgeneric rudel-join ((this rudel-protocol-backend) info)
"Create a new connection according to the data in the property list INFO.
Implementations can rely on the fact that the property :session
contains the `rudel-session' object to which the new connection
will be associated.")

(defgeneric rudel-ask-host-info ((this rudel-protocol-backend))
"Retrieve information for hosting a session from user.
Return a property list that contains the collected information.")

(defgeneric rudel-host ((this rudel-protocol-backend) info)
"Create a new session according to the property list INFO.")

(defgeneric rudel-make-document ((this rudel-protocol-backend)
name session)
"Create a new document object named NAME for SESSION.")

(provide 'rudel-protocol)
;;; rudel-protocol.el ends here

0 comments on commit f6a2db0

Please sign in to comment.